Update app.py
Browse files
app.py
CHANGED
@@ -64,11 +64,11 @@ demo = gr.ChatInterface(
|
|
64 |
if __name__ == "__main__":
|
65 |
with gr.Blocks() as demo:
|
66 |
# Adding a label at the top of the page
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
demo.launch()
|
|
|
64 |
if __name__ == "__main__":
|
65 |
with gr.Blocks() as demo:
|
66 |
# Adding a label at the top of the page
|
67 |
+
gr.Markdown(
|
68 |
+
"""
|
69 |
+
# Welcome to My Chat Interface
|
70 |
+
This app uses the Llama-3.2-1B-Instruct model to provide conversational AI responses.
|
71 |
+
Adjust the parameters below to customize the chat behavior.
|
72 |
+
"""
|
73 |
+
)
|
74 |
demo.launch()
|