Update app.py
Browse files
app.py
CHANGED
|
@@ -481,6 +481,7 @@ with st.sidebar:
|
|
| 481 |
st.divider()
|
| 482 |
st.caption("Made with ❤️ for H2 Physics students | Powered by Groq AI")
|
| 483 |
|
|
|
|
| 484 |
# Main Chat Interface
|
| 485 |
if "messages" not in st.session_state:
|
| 486 |
st.session_state.messages = [
|
|
@@ -600,12 +601,13 @@ if user_input or visual_content:
|
|
| 600 |
f"4. Visit [status.groq.com](https://status.groq.com) for service status"
|
| 601 |
)
|
| 602 |
|
| 603 |
-
# Footer
|
| 604 |
st.divider()
|
| 605 |
-
|
| 606 |
<div style="text-align: center; color: #888; font-size: 0.9em;">
|
| 607 |
<p><strong>H2 Physics Feynman Tutor</strong> | Singapore H2 Physics (9478) Syllabus</p>
|
| 608 |
<p>Powered by <a href="https://groq.com" target="_blank">Groq AI</a></p>
|
| 609 |
<p style="font-size: 0.8em;">Disclaimer: This is an AI tutoring assistant. Always verify with official syllabus documents.</p>
|
| 610 |
</div>
|
| 611 |
-
"""
|
|
|
|
|
|
| 481 |
st.divider()
|
| 482 |
st.caption("Made with ❤️ for H2 Physics students | Powered by Groq AI")
|
| 483 |
|
| 484 |
+
|
| 485 |
# Main Chat Interface
|
| 486 |
if "messages" not in st.session_state:
|
| 487 |
st.session_state.messages = [
|
|
|
|
| 601 |
f"4. Visit [status.groq.com](https://status.groq.com) for service status"
|
| 602 |
)
|
| 603 |
|
| 604 |
+
# Footer - FIXED VERSION
|
| 605 |
st.divider()
|
| 606 |
+
footer_html = """
|
| 607 |
<div style="text-align: center; color: #888; font-size: 0.9em;">
|
| 608 |
<p><strong>H2 Physics Feynman Tutor</strong> | Singapore H2 Physics (9478) Syllabus</p>
|
| 609 |
<p>Powered by <a href="https://groq.com" target="_blank">Groq AI</a></p>
|
| 610 |
<p style="font-size: 0.8em;">Disclaimer: This is an AI tutoring assistant. Always verify with official syllabus documents.</p>
|
| 611 |
</div>
|
| 612 |
+
"""
|
| 613 |
+
st.markdown(footer_html, unsafe_allow_html=True)
|