Spaces:
Running
Running
add new qwen models
Browse files
app.py
CHANGED
|
@@ -1546,6 +1546,16 @@ AVAILABLE_MODELS = [
|
|
| 1546 |
"id": "Qwen/Qwen3-235B-A22B-Thinking-2507",
|
| 1547 |
"description": "Qwen3-235B-A22B-Thinking model with advanced reasoning capabilities"
|
| 1548 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1549 |
{
|
| 1550 |
"name": "Qwen3-30B-A3B-Instruct-2507",
|
| 1551 |
"id": "qwen3-30b-a3b-instruct-2507",
|
|
@@ -1834,6 +1844,10 @@ def get_inference_client(model_id, provider="auto"):
|
|
| 1834 |
provider = "cerebras"
|
| 1835 |
elif model_id == "Qwen/Qwen3-Coder-480B-A35B-Instruct":
|
| 1836 |
provider = "cerebras"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1837 |
elif model_id == "deepseek-ai/DeepSeek-V3.1":
|
| 1838 |
provider = "novita"
|
| 1839 |
elif model_id == "zai-org/GLM-4.5":
|
|
|
|
| 1546 |
"id": "Qwen/Qwen3-235B-A22B-Thinking-2507",
|
| 1547 |
"description": "Qwen3-235B-A22B-Thinking model with advanced reasoning capabilities"
|
| 1548 |
},
|
| 1549 |
+
{
|
| 1550 |
+
"name": "Qwen3-Next-80B-A3B-Thinking",
|
| 1551 |
+
"id": "Qwen/Qwen3-Next-80B-A3B-Thinking",
|
| 1552 |
+
"description": "Qwen3-Next-80B-A3B-Thinking model with advanced reasoning capabilities via Hyperbolic"
|
| 1553 |
+
},
|
| 1554 |
+
{
|
| 1555 |
+
"name": "Qwen3-Next-80B-A3B-Instruct",
|
| 1556 |
+
"id": "Qwen/Qwen3-Next-80B-A3B-Instruct",
|
| 1557 |
+
"description": "Qwen3-Next-80B-A3B-Instruct model for code generation and general tasks via Hyperbolic"
|
| 1558 |
+
},
|
| 1559 |
{
|
| 1560 |
"name": "Qwen3-30B-A3B-Instruct-2507",
|
| 1561 |
"id": "qwen3-30b-a3b-instruct-2507",
|
|
|
|
| 1844 |
provider = "cerebras"
|
| 1845 |
elif model_id == "Qwen/Qwen3-Coder-480B-A35B-Instruct":
|
| 1846 |
provider = "cerebras"
|
| 1847 |
+
elif model_id == "Qwen/Qwen3-Next-80B-A3B-Thinking":
|
| 1848 |
+
provider = "hyperbolic"
|
| 1849 |
+
elif model_id == "Qwen/Qwen3-Next-80B-A3B-Instruct":
|
| 1850 |
+
provider = "hyperbolic"
|
| 1851 |
elif model_id == "deepseek-ai/DeepSeek-V3.1":
|
| 1852 |
provider = "novita"
|
| 1853 |
elif model_id == "zai-org/GLM-4.5":
|