Spaces:
Runtime error
Runtime error
Update utils/chatbox1.py
Browse files- utils/chatbox1.py +1 -1
utils/chatbox1.py
CHANGED
@@ -47,7 +47,7 @@ def chatbox(model_name: str, model: None):
|
|
47 |
with st.chat_message(message["role"]):
|
48 |
st.markdown(message["content"])
|
49 |
|
50 |
-
if prompt := st.chat_input("
|
51 |
# Display user message in chat message container
|
52 |
st.chat_message("user").markdown(prompt)
|
53 |
|
|
|
47 |
with st.chat_message(message["role"]):
|
48 |
st.markdown(message["content"])
|
49 |
|
50 |
+
if prompt := st.chat_input("Ask a question about California drinking water regulations"):
|
51 |
# Display user message in chat message container
|
52 |
st.chat_message("user").markdown(prompt)
|
53 |
|