Spaces:
Sleeping
Sleeping
Muhammad Adnan
commited on
Commit
·
8072f91
1
Parent(s):
b39da57
buy coffee
Browse files
app.py
CHANGED
|
@@ -144,5 +144,15 @@ def main():
|
|
| 144 |
**Dataset Used**: The application dynamically pulls relevant documents from a dataset google_natural_questions_answerability, helping answer user questions more effectively.
|
| 145 |
""")
|
| 146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 147 |
if __name__ == "__main__":
|
| 148 |
-
main()
|
|
|
|
| 144 |
**Dataset Used**: The application dynamically pulls relevant documents from a dataset google_natural_questions_answerability, helping answer user questions more effectively.
|
| 145 |
""")
|
| 146 |
|
| 147 |
+
# Display Buy Me a Coffee button
|
| 148 |
+
st.markdown("""
|
| 149 |
+
<div style="text-align: center;">
|
| 150 |
+
<p>If you find this project useful, consider buying me a coffee to support further development! ☕️</p>
|
| 151 |
+
<a href="https://buymeacoffee.com/adnanailabs">
|
| 152 |
+
<img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me a Coffee" style="height: 50px;">
|
| 153 |
+
</a>
|
| 154 |
+
</div>
|
| 155 |
+
""", unsafe_allow_html=True)
|
| 156 |
+
|
| 157 |
if __name__ == "__main__":
|
| 158 |
+
main()
|