andreska commited on
Commit
42fd51d
·
verified ·
1 Parent(s): e7169f6

Write text to screen, to see if the formatting is better

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -62,7 +62,7 @@ def handle_submit():
62
 
63
  answer = completion.choices[0].message['content']
64
  st.session_state.conversation += f"User: {user_input}\nAdrega AI: {answer}\n\n"
65
- #st.write(f"Adrega AI: {answer}")
66
  else:
67
  st.write("Please enter a question.")
68
 
 
62
 
63
  answer = completion.choices[0].message['content']
64
  st.session_state.conversation += f"User: {user_input}\nAdrega AI: {answer}\n\n"
65
+ st.write(f"Adrega AI: {answer}")
66
  else:
67
  st.write("Please enter a question.")
68