DrishtiSharma commited on
Commit
7d29819
Β·
verified Β·
1 Parent(s): 32b0232

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
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
+ """)