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