Commit
·
4a32d2f
1
Parent(s):
ed306c3
Add description to the app.py file
Browse files
app.py
CHANGED
@@ -87,6 +87,7 @@ with gr.Blocks() as demo:
|
|
87 |
<p> <strong>HF Created by:</strong> @artificialguybr (<a href="https://twitter.com/artificialguybr">Twitter</a>)</p>
|
88 |
<p> <strong>Discover more:</strong> <a href="https://artificialguy.com">artificialguy.com</a></p>
|
89 |
"""
|
|
|
90 |
chatbot = gr.Chatbot()
|
91 |
message = gr.Textbox(label="What do you want to chat about?", placeholder="Ask me anything.", lines=3)
|
92 |
submit = gr.Button(value="Send message")
|
|
|
87 |
<p> <strong>HF Created by:</strong> @artificialguybr (<a href="https://twitter.com/artificialguybr">Twitter</a>)</p>
|
88 |
<p> <strong>Discover more:</strong> <a href="https://artificialguy.com">artificialguy.com</a></p>
|
89 |
"""
|
90 |
+
gr.Markdown(description)
|
91 |
chatbot = gr.Chatbot()
|
92 |
message = gr.Textbox(label="What do you want to chat about?", placeholder="Ask me anything.", lines=3)
|
93 |
submit = gr.Button(value="Send message")
|