thuanan commited on
Commit
eb80411
·
1 Parent(s): ff3e6d7

Update metadata

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -29,9 +29,9 @@ def get_header_html():
29
  <div style="display: flex; align-items: center; padding: 20px;">
30
  <div>{logo_html}</div>
31
  <div style="margin-left: 20px;">
32
- <h1>🧠 Zephyr Chatbot</h1>
33
- <p>Conversational Assistant powered by HuggingFace Zephyr-7B</p>
34
- <p style="color: #555;">🚀 Customize system prompt, temperature, top-p, etc.</p>
35
  </div>
36
  </div>
37
  """
@@ -85,8 +85,6 @@ chat = gr.ChatInterface(
85
  gr.Slider(0.1, 4.0, value=0.7, step=0.1, label="Temperature"),
86
  gr.Slider(0.1, 1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)")
87
  ],
88
- title="Zephyr Chatbot",
89
- description="A customizable chat assistant powered by HuggingFace H4 Zephyr-7B.",
90
  type="messages",
91
  )
92
 
 
29
  <div style="display: flex; align-items: center; padding: 20px;">
30
  <div>{logo_html}</div>
31
  <div style="margin-left: 20px;">
32
+ <h1>🧠 LLM Chatbot</h1>
33
+ <p>Conversational Assistant powered by Llama-3.2-1B-Instruct-SFT-RLHF</p>
34
+ <p style="color: #555;">🚀 AIO2024 Module 10 LLM Chatbot with RLHF</p>
35
  </div>
36
  </div>
37
  """
 
85
  gr.Slider(0.1, 4.0, value=0.7, step=0.1, label="Temperature"),
86
  gr.Slider(0.1, 1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)")
87
  ],
 
 
88
  type="messages",
89
  )
90