FreakAI / app.py
Kvikontent's picture
Update app.py
b6e8857 verified
raw
history blame
847 Bytes
import streamlit as st
from freeGPT import Client
st.title("Dude AI - Your stupid assistant")
st.header("Type any message and get stupid response", divider="rainbow")
messages = st.container(height=600)
prompt = st.chat_input(placeholder="Eg. How are you today?")
if prompt:
resp = Client.create_completion("gpt3", prompt + " . Give answer as very stupid dude guy, as stupid and funny as it can be. I should laugh when i'll read answer")
user_msg = messages.message("user")
user_msg.write(prompt)
resp_msg = messages.message("assistant", avatar="https://cdn.discordapp.com/attachments/1159192117751578705/1207019218466373642/kvikontent_professioanl_shot_of_stupid_man_c81e05bf-4530-497e-a9f3-63acdeea5345.png?ex=65de1f3f&is=65cbaa3f&hm=79516030ac8aa4d53f19c82a05cacd32ec0dceeb9b75d329a253bf4f3b8727a9&")
resp_msg.write(resp)