T3lli commited on
Commit
344f30e
·
verified ·
1 Parent(s): 1a642c2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
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
- header="Welcome to My Chat Interface",
51
- description="This app uses the Llama-3.2-1B-Instruct model to provide conversational AI responses. Adjust the parameters below to customize the chat behavior.",
 
 
 
 
 
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"),