Jyothikamalesh commited on
Commit
7b46c6f
·
verified ·
1 Parent(s): 0c5007d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -78,4 +78,5 @@ top_p = st.slider("Top-P", 0.1, 1.0, 0.95)
78
 
79
  if st.button("Send"):
80
  response = respond(message, history, system_message, max_tokens, temperature, top_p)
81
- st.write(response)
 
 
78
 
79
  if st.button("Send"):
80
  response = respond(message, history, system_message, max_tokens, temperature, top_p)
81
+ for resp in response:
82
+ st.write(resp)