Update app.py
Browse files
app.py
CHANGED
|
@@ -52,7 +52,8 @@ demo = gr.ChatInterface(
|
|
| 52 |
# Welcome to My Chat Interface
|
| 53 |
This app uses the Llama-3.2-1B-Instruct model to provide conversational AI responses.
|
| 54 |
Adjust the parameters below to customize the chat behavior.
|
| 55 |
-
"""
|
|
|
|
| 56 |
additional_inputs=[
|
| 57 |
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
| 58 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
|
|
|
| 52 |
# Welcome to My Chat Interface
|
| 53 |
This app uses the Llama-3.2-1B-Instruct model to provide conversational AI responses.
|
| 54 |
Adjust the parameters below to customize the chat behavior.
|
| 55 |
+
""",
|
| 56 |
+
),
|
| 57 |
additional_inputs=[
|
| 58 |
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
| 59 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|