mdotti commited on
Commit
1cd9d05
·
verified ·
1 Parent(s): 0e3b823

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -726,7 +726,7 @@ def nutrition_disorder_streamlit():
726
  st.write(message["content"])
727
 
728
  # Chat input with custom placeholder text
729
- user_query = st.chat_input(__________) # Blank #1: Fill in the chat input prompt (e.g., "Type your question here (or 'exit' to end)...")
730
  if user_query:
731
  if user_query.lower() == "exit":
732
  st.session_state.chat_history.append({"role": "user", "content": "exit"})
 
726
  st.write(message["content"])
727
 
728
  # Chat input with custom placeholder text
729
+ user_query = st.chat_input("Type your question here (or 'exit' to end)...") # Blank #1: Fill in the chat input prompt (e.g., "Type your question here (or 'exit' to end)...")
730
  if user_query:
731
  if user_query.lower() == "exit":
732
  st.session_state.chat_history.append({"role": "user", "content": "exit"})