Spaces:
Runtime error
Runtime error
Update utils/chatbox1.py
Browse files- utils/chatbox1.py +1 -1
utils/chatbox1.py
CHANGED
@@ -8,7 +8,7 @@ def display_chat_history(model_name: str):
|
|
8 |
st.markdown(message["content"])
|
9 |
|
10 |
def chat_input(model_name: str):
|
11 |
-
if prompt := st.chat_input("
|
12 |
# Display user message in chat message container
|
13 |
st.chat_message("user").markdown(prompt)
|
14 |
|
|
|
8 |
st.markdown(message["content"])
|
9 |
|
10 |
def chat_input(model_name: str):
|
11 |
+
if prompt := st.chat_input("Ask a question about California drinking water regulations"):
|
12 |
# Display user message in chat message container
|
13 |
st.chat_message("user").markdown(prompt)
|
14 |
|