Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
update qwen
Browse files- app.py +2 -2
- app_qwen.py +2 -1
app.py
CHANGED
@@ -20,6 +20,8 @@ from app_experimental import demo as demo_experimental
|
|
20 |
from app_allenai import demo as demo_allenai
|
21 |
|
22 |
with gr.Blocks(fill_height=True) as demo:
|
|
|
|
|
23 |
with gr.Tab("Experimental"):
|
24 |
demo_experimental.render()
|
25 |
with gr.Tab("AllenAI/Llama-3.1-Tulu-3-8B"):
|
@@ -52,8 +54,6 @@ with gr.Blocks(fill_height=True) as demo:
|
|
52 |
|
53 |
**Note:** This model is supported by Hyperbolic. Build your AI apps at [Hyperbolic](https://app.hyperbolic.xyz/).
|
54 |
""")
|
55 |
-
with gr.Tab("Qwen"):
|
56 |
-
demo_qwen.render()
|
57 |
with gr.Tab("Perplexity"):
|
58 |
demo_perplexity.render()
|
59 |
with gr.Tab("Mistral"):
|
|
|
20 |
from app_allenai import demo as demo_allenai
|
21 |
|
22 |
with gr.Blocks(fill_height=True) as demo:
|
23 |
+
with gr.Tab("Qwen"):
|
24 |
+
demo_qwen.render()
|
25 |
with gr.Tab("Experimental"):
|
26 |
demo_experimental.render()
|
27 |
with gr.Tab("AllenAI/Llama-3.1-Tulu-3-8B"):
|
|
|
54 |
|
55 |
**Note:** This model is supported by Hyperbolic. Build your AI apps at [Hyperbolic](https://app.hyperbolic.xyz/).
|
56 |
""")
|
|
|
|
|
57 |
with gr.Tab("Perplexity"):
|
58 |
demo_perplexity.render()
|
59 |
with gr.Tab("Mistral"):
|
app_qwen.py
CHANGED
@@ -15,8 +15,9 @@ demo = get_app(
|
|
15 |
"qwen1.5-32b-chat",
|
16 |
"qwen1.5-14b-chat",
|
17 |
"qwen1.5-7b-chat",
|
|
|
18 |
],
|
19 |
-
default_model="
|
20 |
src=dashscope_gradio.registry,
|
21 |
accept_token=not os.getenv("DASHSCOPE_API_KEY"),
|
22 |
)
|
|
|
15 |
"qwen1.5-32b-chat",
|
16 |
"qwen1.5-14b-chat",
|
17 |
"qwen1.5-7b-chat",
|
18 |
+
"QwQ-32B-preview"
|
19 |
],
|
20 |
+
default_model="QwQ-32B-preview",
|
21 |
src=dashscope_gradio.registry,
|
22 |
accept_token=not os.getenv("DASHSCOPE_API_KEY"),
|
23 |
)
|