Spaces:
Running
Running
add new model
Browse files
README.md
CHANGED
|
@@ -73,6 +73,9 @@ python app.py
|
|
| 73 |
- Moonshot Kimi-K2
|
| 74 |
- Kimi K2 Turbo (Preview)
|
| 75 |
- DeepSeek V3
|
|
|
|
|
|
|
|
|
|
| 76 |
- DeepSeek R1
|
| 77 |
- ERNIE-4.5-VL (multimodal)
|
| 78 |
- MiniMax M1
|
|
|
|
| 73 |
- Moonshot Kimi-K2
|
| 74 |
- Kimi K2 Turbo (Preview)
|
| 75 |
- DeepSeek V3
|
| 76 |
+
- DeepSeek V3.1
|
| 77 |
+
- DeepSeek V3.1 Terminus
|
| 78 |
+
- DeepSeek V3.2-Exp
|
| 79 |
- DeepSeek R1
|
| 80 |
- ERNIE-4.5-VL (multimodal)
|
| 81 |
- MiniMax M1
|
app.py
CHANGED
|
@@ -1905,6 +1905,11 @@ AVAILABLE_MODELS = [
|
|
| 1905 |
"id": "deepseek-ai/DeepSeek-V3.1-Terminus",
|
| 1906 |
"description": "DeepSeek V3.1 Terminus model for advanced code generation and reasoning tasks"
|
| 1907 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1908 |
{
|
| 1909 |
"name": "DeepSeek R1",
|
| 1910 |
"id": "deepseek-ai/DeepSeek-R1-0528",
|
|
@@ -2106,7 +2111,7 @@ AVAILABLE_MODELS = [
|
|
| 2106 |
]
|
| 2107 |
|
| 2108 |
# Default model selection
|
| 2109 |
-
DEFAULT_MODEL_NAME = "
|
| 2110 |
DEFAULT_MODEL = None
|
| 2111 |
for _m in AVAILABLE_MODELS:
|
| 2112 |
if _m.get("name") == DEFAULT_MODEL_NAME:
|
|
@@ -2339,6 +2344,8 @@ def get_inference_client(model_id, provider="auto"):
|
|
| 2339 |
provider = "novita"
|
| 2340 |
elif model_id == "deepseek-ai/DeepSeek-V3.1-Terminus":
|
| 2341 |
provider = "novita"
|
|
|
|
|
|
|
| 2342 |
elif model_id == "zai-org/GLM-4.5":
|
| 2343 |
provider = "fireworks-ai"
|
| 2344 |
return InferenceClient(
|
|
|
|
| 1905 |
"id": "deepseek-ai/DeepSeek-V3.1-Terminus",
|
| 1906 |
"description": "DeepSeek V3.1 Terminus model for advanced code generation and reasoning tasks"
|
| 1907 |
},
|
| 1908 |
+
{
|
| 1909 |
+
"name": "DeepSeek V3.2-Exp",
|
| 1910 |
+
"id": "deepseek-ai/DeepSeek-V3.2-Exp",
|
| 1911 |
+
"description": "DeepSeek V3.2 Experimental model for cutting-edge code generation and reasoning"
|
| 1912 |
+
},
|
| 1913 |
{
|
| 1914 |
"name": "DeepSeek R1",
|
| 1915 |
"id": "deepseek-ai/DeepSeek-R1-0528",
|
|
|
|
| 2111 |
]
|
| 2112 |
|
| 2113 |
# Default model selection
|
| 2114 |
+
DEFAULT_MODEL_NAME = "DeepSeek V3.2-Exp"
|
| 2115 |
DEFAULT_MODEL = None
|
| 2116 |
for _m in AVAILABLE_MODELS:
|
| 2117 |
if _m.get("name") == DEFAULT_MODEL_NAME:
|
|
|
|
| 2344 |
provider = "novita"
|
| 2345 |
elif model_id == "deepseek-ai/DeepSeek-V3.1-Terminus":
|
| 2346 |
provider = "novita"
|
| 2347 |
+
elif model_id == "deepseek-ai/DeepSeek-V3.2-Exp":
|
| 2348 |
+
provider = "novita"
|
| 2349 |
elif model_id == "zai-org/GLM-4.5":
|
| 2350 |
provider = "fireworks-ai"
|
| 2351 |
return InferenceClient(
|