Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -1
src/streamlit_app.py
CHANGED
|
@@ -85,7 +85,8 @@ def loadchats():
|
|
| 85 |
with st.chat_message("assistant"):
|
| 86 |
st.write(message.content)
|
| 87 |
elif isinstance(message, ToolMessage):
|
| 88 |
-
|
|
|
|
| 89 |
return messages
|
| 90 |
|
| 91 |
|
|
|
|
| 85 |
with st.chat_message("assistant"):
|
| 86 |
st.write(message.content)
|
| 87 |
elif isinstance(message, ToolMessage):
|
| 88 |
+
with st.chat_message("assistant"):
|
| 89 |
+
st.info("Using Appropriate tool")
|
| 90 |
return messages
|
| 91 |
|
| 92 |
|