Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -58,7 +58,7 @@ if 'messages' not in st.session_state:
|
|
58 |
# Display chat history
|
59 |
for message in st.session_state.messages:
|
60 |
with st.chat_message(message["role"]):
|
61 |
-
|
62 |
|
63 |
def respond(message, history, max_tokens, temperature, top_p):
|
64 |
# Prepare the list of messages for the chat completion
|
|
|
58 |
# Display chat history
|
59 |
for message in st.session_state.messages:
|
60 |
with st.chat_message(message["role"]):
|
61 |
+
st.markdown(message["content"])
|
62 |
|
63 |
def respond(message, history, max_tokens, temperature, top_p):
|
64 |
# Prepare the list of messages for the chat completion
|