Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -74,7 +74,7 @@ user_input = st.chat_input("Ask Your Questions 👉..")
|
|
| 74 |
if user_input:
|
| 75 |
st.session_state.messages.append({'role': 'user', 'content': user_input})
|
| 76 |
with st.chat_message("user", avatar="man-kddi.png"):
|
| 77 |
-
st.
|
| 78 |
|
| 79 |
with st.spinner("Thinking..."):
|
| 80 |
response = get_response(user_input)
|
|
|
|
| 74 |
if user_input:
|
| 75 |
st.session_state.messages.append({'role': 'user', 'content': user_input})
|
| 76 |
with st.chat_message("user", avatar="man-kddi.png"):
|
| 77 |
+
st.write(user_input)
|
| 78 |
|
| 79 |
with st.spinner("Thinking..."):
|
| 80 |
response = get_response(user_input)
|