Update app.py
Browse files
app.py
CHANGED
@@ -47,8 +47,13 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
|
|
47 |
demo = gr.ChatInterface(
|
48 |
respond,
|
49 |
theme = "soft",
|
50 |
-
|
51 |
-
|
|
|
|
|
|
|
|
|
|
|
52 |
additional_inputs=[
|
53 |
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
54 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
|
|
47 |
demo = gr.ChatInterface(
|
48 |
respond,
|
49 |
theme = "soft",
|
50 |
+
gr.Markdown(
|
51 |
+
"""
|
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"),
|