Upload app.py with huggingface_hub
Browse files
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(
|
| 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"})
|