Update app.py
Browse files
app.py
CHANGED
@@ -81,20 +81,20 @@ with gr.Blocks() as demo:
|
|
81 |
with gr.Column():
|
82 |
gr.Markdown("LLAMA 2 70B Free Demo")
|
83 |
description = """
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
gr.Markdown(description)
|
99 |
|
100 |
chat_history_state = gr.State([])
|
|
|
81 |
with gr.Column():
|
82 |
gr.Markdown("LLAMA 2 70B Free Demo")
|
83 |
description = """
|
84 |
+
<div style="text-align: center; font-size: 1.5em; margin-bottom: 20px;">
|
85 |
+
<strong>Explore the Capabilities of LLAMA 2 70B</strong>
|
86 |
+
</div>
|
87 |
+
<p>Llama 2 is a large language AI model capable of generating text and code in response to prompts.</p>
|
88 |
+
<p><strong>How to Use:</strong></p>
|
89 |
+
<ol>
|
90 |
+
<li>Enter your <strong>message</strong> in the textbox to start a conversation or ask a question.</li>
|
91 |
+
<li>Adjust the parameters in the "Additional Inputs" accordion to control the model's behavior.</li>
|
92 |
+
<li>Use the buttons below the chatbot to submit your query, clear the chat history, or perform other actions.</li>
|
93 |
+
</ol>
|
94 |
+
<p><strong>Powered by NVIDIA's cutting-edge AI API, LLAMA 2 70B offers an unparalleled opportunity to interact with an AI model of exceptional conversational ability, accessible to everyone at no cost.</strong></p>
|
95 |
+
<p><strong>HF Created by:</strong> @artificialguybr (<a href="https://twitter.com/artificialguybr">Twitter</a>)</p>
|
96 |
+
<p><strong>Discover more:</strong> <a href="https://artificialguy.com">artificialguy.com</a></p>
|
97 |
+
"""
|
98 |
gr.Markdown(description)
|
99 |
|
100 |
chat_history_state = gr.State([])
|