Spaces:
Sleeping
Sleeping
Update metadata
Browse files
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>🧠
|
33 |
-
<p>Conversational Assistant powered by
|
34 |
-
<p style="color: #555;">🚀
|
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 |
|