Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import requests
|
|
3 |
import json
|
4 |
|
5 |
st.title("OpenAI Chatbot")
|
6 |
-
st.write("Interact with OpenAI's models in real-time using your OpenAI API. Choose from a selection of their best models, set the temperature and max tokens, and start a conversation. Delete the conversation at any time and start fresh.")
|
7 |
|
8 |
if "history" not in st.session_state:
|
9 |
st.session_state.history = []
|
|
|
3 |
import json
|
4 |
|
5 |
st.title("OpenAI Chatbot")
|
6 |
+
st.write("Interact with OpenAI's GPT-3 models in real-time using your OpenAI API. Choose from a selection of their best models, set the temperature and max tokens, and start a conversation. Delete the conversation at any time and start fresh.")
|
7 |
|
8 |
if "history" not in st.session_state:
|
9 |
st.session_state.history = []
|