ofermend commited on
Commit
b4c75f9
·
verified ·
1 Parent(s): 2a5b875

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -70,7 +70,10 @@ def launch_bot():
70
  st.session_state.messages.append({"role": "user", "content": prompt})
71
  with st.chat_message("user"):
72
  st.write(prompt)
73
-
 
 
 
74
  # Generate a new response if last message is not from assistant
75
  if st.session_state.messages[-1]["role"] != "assistant":
76
  with st.chat_message("assistant"):
 
70
  st.session_state.messages.append({"role": "user", "content": prompt})
71
  with st.chat_message("user"):
72
  st.write(prompt)
73
+
74
+ print(cfg)
75
+ print(prompt)
76
+
77
  # Generate a new response if last message is not from assistant
78
  if st.session_state.messages[-1]["role"] != "assistant":
79
  with st.chat_message("assistant"):