Michaeldavidstein commited on
Commit
486f4c0
·
verified ·
1 Parent(s): 530a104

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -793,8 +793,11 @@ def nutrition_disorder_streamlit():
793
  user_query = user_query.strip()
794
  else:
795
  user_query = ""
796
-
797
- print(f"User query: {user_query}") # debug code
 
 
 
798
 
799
  if user_query:
800
  if user_query.lower() == "exit":
 
793
  user_query = user_query.strip()
794
  else:
795
  user_query = ""
796
+
797
+ # for debug purposes, echo the user query
798
+ debug_msg = user_query
799
+ with st.chat_message("assistant"):
800
+ st.write(debug_msg)
801
 
802
  if user_query:
803
  if user_query.lower() == "exit":