Update app.py
Browse files
app.py
CHANGED
@@ -79,4 +79,16 @@ with gr.Blocks(css="""
|
|
79 |
send_btn.click(chat_with_bots, inputs=msg_input, outputs=chatbot)
|
80 |
msg_input.submit(chat_with_bots, inputs=msg_input, outputs=chatbot)
|
81 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
demo.launch()
|
|
|
79 |
send_btn.click(chat_with_bots, inputs=msg_input, outputs=chatbot)
|
80 |
msg_input.submit(chat_with_bots, inputs=msg_input, outputs=chatbot)
|
81 |
|
82 |
+
gr.Markdown(
|
83 |
+
"""
|
84 |
+
<div style='text-align: right; font-size: 0.9em; padding-top: 20px;'>
|
85 |
+
🌐 Connect with me:
|
86 |
+
<a href="https://www.linkedin.com/in/aymnsk" target="_blank">LinkedIn</a> |
|
87 |
+
<a href="https://github.com/aymnsk" target="_blank">GitHub</a> |
|
88 |
+
<a href="https://www.instagram.com/damnn_aymn/" target="_blank">Instagram</a> |
|
89 |
+
<a href="https://huggingface.co/aymnsk" target="_blank">HF</a>
|
90 |
+
</div>
|
91 |
+
""",
|
92 |
+
elem_id="footer"
|
93 |
+
)
|
94 |
demo.launch()
|