Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -258,3 +258,11 @@ if query := st.chat_input("Ask a question"):
|
|
258 |
st.session_state.messages.append({"role": "assistant", "content": response})
|
259 |
|
260 |
asyncio.run(handle_query())
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
st.session_state.messages.append({"role": "assistant", "content": response})
|
259 |
|
260 |
asyncio.run(handle_query())
|
261 |
+
|
262 |
+
|
263 |
+
# Add acknowledgment at the bottom
|
264 |
+
st.markdown("---")
|
265 |
+
st.markdown("""
|
266 |
+
### Acknowledgment
|
267 |
+
This app is based on [Emmanuel M. Ndaliro's work](https://github.com/kram254/Mixture-of-Agents-running-on-Groq/tree/main).
|
268 |
+
""")
|