Commit
·
2c2b0d6
1
Parent(s):
286c406
Update app.py with new description
Browse files
app.py
CHANGED
@@ -69,7 +69,6 @@ with gr.Blocks() as demo:
|
|
69 |
with gr.Row():
|
70 |
with gr.Column():
|
71 |
gr.Markdown("CodeLLAMA 34B Free Demo")
|
72 |
-
gr.Markdown(description)
|
73 |
description="""
|
74 |
<div style="text-align: center; font-size: 1.5em; margin-bottom: 20px;">
|
75 |
<strong>Explore the Capabilities of CodeLLAMA 34B</strong>
|
@@ -89,6 +88,7 @@ with gr.Blocks() as demo:
|
|
89 |
<p> <strong>HF Created by:</strong> @artificialguybr (<a href="https://twitter.com/artificialguybr">Twitter</a>)</p>
|
90 |
<p> <strong>Discover more:</strong> <a href="https://artificialguy.com">artificialguy.com</a></p>
|
91 |
"""
|
|
|
92 |
chatbot = gr.Chatbot()
|
93 |
message = gr.Textbox(label="What do you want to chat about?", placeholder="Ask me anything.", lines=3)
|
94 |
submit = gr.Button(value="Send message")
|
|
|
69 |
with gr.Row():
|
70 |
with gr.Column():
|
71 |
gr.Markdown("CodeLLAMA 34B Free Demo")
|
|
|
72 |
description="""
|
73 |
<div style="text-align: center; font-size: 1.5em; margin-bottom: 20px;">
|
74 |
<strong>Explore the Capabilities of CodeLLAMA 34B</strong>
|
|
|
88 |
<p> <strong>HF Created by:</strong> @artificialguybr (<a href="https://twitter.com/artificialguybr">Twitter</a>)</p>
|
89 |
<p> <strong>Discover more:</strong> <a href="https://artificialguy.com">artificialguy.com</a></p>
|
90 |
"""
|
91 |
+
gr.Markdown(description)
|
92 |
chatbot = gr.Chatbot()
|
93 |
message = gr.Textbox(label="What do you want to chat about?", placeholder="Ask me anything.", lines=3)
|
94 |
submit = gr.Button(value="Send message")
|