Update app.py
Browse files
app.py
CHANGED
@@ -41,7 +41,6 @@ with st.chat_message("assistant"):
|
|
41 |
message_placeholder = st.empty()
|
42 |
full_response = ""
|
43 |
assistant_response = "Hello there! How can I assist you today?"
|
44 |
-
)
|
45 |
# Simulate stream of response with milliseconds delay
|
46 |
for chunk in assistant_response.split():
|
47 |
full_response += chunk + " "
|
|
|
41 |
message_placeholder = st.empty()
|
42 |
full_response = ""
|
43 |
assistant_response = "Hello there! How can I assist you today?"
|
|
|
44 |
# Simulate stream of response with milliseconds delay
|
45 |
for chunk in assistant_response.split():
|
46 |
full_response += chunk + " "
|