bhulston commited on
Commit
3887eee
1 Parent(s): 3884ef0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -67,6 +67,7 @@ prompt = st.chat_input("What kind of class are you looking for?")
67
  # Display assistant response in chat message container
68
  with st.chat_message("assistant"):
69
  message_placeholder = st.empty()
 
70
  assistant_response = "Hello there! How can I assist you today?"
71
  # Simulate stream of response with milliseconds delay
72
  for chunk in assistant_response.split():
 
67
  # Display assistant response in chat message container
68
  with st.chat_message("assistant"):
69
  message_placeholder = st.empty()
70
+ full_response = ""
71
  assistant_response = "Hello there! How can I assist you today?"
72
  # Simulate stream of response with milliseconds delay
73
  for chunk in assistant_response.split():