DrishtiSharma commited on
Commit
45c2962
Β·
verified Β·
1 Parent(s): 8787c49

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -5
app.py CHANGED
@@ -272,8 +272,11 @@ if query := st.chat_input("Ask a question"):
272
 
273
 
274
  # Add acknowledgment at the bottom
275
- st.markdown("---")
276
- st.markdown("""
277
- ####
278
- This app is based on [Emmanuel M. Ndaliro's work](https://github.com/kram254/Mixture-of-Agents-running-on-Groq/tree/main).
279
- """)
 
 
 
 
272
 
273
 
274
  # Add acknowledgment at the bottom
275
+ st.markdown(
276
+ """
277
+ <div style="text-align: center;">
278
+ <h4>This app is based on <a href="https://github.com/kram254/Mixture-of-Agents-running-on-Groq/tree/main">Emmanuel M. Ndaliro's work</a>.</h4>
279
+ </div>
280
+ """,
281
+ unsafe_allow_html=True
282
+ )