Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -17,9 +17,6 @@ cancel_event = threading.Event()
|
|
17 |
# Qwen3 Model Definitions
|
18 |
# ------------------------------
|
19 |
MODELS = {
|
20 |
-
"Qwen3-8B": {"repo_id": "Qwen/Qwen3-8B", "description": "Qwen3-8B - Largest model with highest capabilities"},
|
21 |
-
"Qwen3-4B": {"repo_id": "Qwen/Qwen3-4B", "description": "Qwen3-4B - Good balance of performance and efficiency"},
|
22 |
-
"Qwen3-1.7B": {"repo_id": "Qwen/Qwen3-1.7B", "description": "Qwen3-1.7B - Smaller model for faster responses"},
|
23 |
"Qwen3-0.6B": {"repo_id": "Qwen/Qwen3-0.6B", "description": "Qwen3-0.6B - Ultra-lightweight model"}
|
24 |
}
|
25 |
|
@@ -178,7 +175,7 @@ css = """
|
|
178 |
# ------------------------------
|
179 |
# Gradio UI
|
180 |
# ------------------------------
|
181 |
-
with gr.Blocks(title="Qwen3 Chat", css=css) as demo:
|
182 |
gr.HTML("""
|
183 |
<div class="qwen-header">
|
184 |
<h1>🤖 Qwen3 Chat</h1>
|
|
|
17 |
# Qwen3 Model Definitions
|
18 |
# ------------------------------
|
19 |
MODELS = {
|
|
|
|
|
|
|
20 |
"Qwen3-0.6B": {"repo_id": "Qwen/Qwen3-0.6B", "description": "Qwen3-0.6B - Ultra-lightweight model"}
|
21 |
}
|
22 |
|
|
|
175 |
# ------------------------------
|
176 |
# Gradio UI
|
177 |
# ------------------------------
|
178 |
+
with gr.Blocks(title="Qwen3 0.6B Chat", css=css) as demo:
|
179 |
gr.HTML("""
|
180 |
<div class="qwen-header">
|
181 |
<h1>🤖 Qwen3 Chat</h1>
|