Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -83,7 +83,7 @@ if prompt := st.chat_input("😉 Ask any question or feel free to use the exampl
|
|
83 |
st.session_state.messages.append({"role": "user", "content": prompt})
|
84 |
|
85 |
# API Call
|
86 |
-
response = bot.generate_response(
|
87 |
|
88 |
# Display assistant response in chat message container
|
89 |
with st.chat_message("assistant"):
|
|
|
83 |
st.session_state.messages.append({"role": "user", "content": prompt})
|
84 |
|
85 |
# API Call
|
86 |
+
response = bot.generate_response(prompt)
|
87 |
|
88 |
# Display assistant response in chat message container
|
89 |
with st.chat_message("assistant"):
|