Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
277 |
-
|
278 |
-
This app is based on
|
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 |
+
)
|