Spaces:
Sleeping
Sleeping
| import streamlit as st | |
| from freeGPT import Client | |
| st.title("KviGPT") | |
| user_input = st.chat_input("Type something") | |
| if user_input: | |
| try: | |
| resp = Client.create_completion("gpt3", user_input) | |
| st.chat_message(f"🤖: {resp}") | |
| except Exception as e: | |
| st.chat_message(f"🤖: {e}") | |