-
Notifications
You must be signed in to change notification settings - Fork 350
Add 3 new SiliconFlow models (GLM-4.7, GLM-4.6V, DeepSeek-V3.2) #606
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Add 3 new SiliconFlow models (GLM-4.7, GLM-4.6V, DeepSeek-V3.2) #606
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR adds three new SiliconFlow models to the provider database: GLM-4.7, GLM-4.6V, and DeepSeek-V3.2. The models are added with full configuration including capabilities, pricing, context limits, and modality support.
- Added GLM-4.7 (355B parameters, 205K context) with reasoning and tool calling support
- Added GLM-4.6V (335B parameters, 131K context) as a vision-language model with image input support
- Added DeepSeek-V3.2 (671B parameters, 164K context) with structured output capability
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| providers/siliconflow/models/zai-org/GLM-4.7.toml | Adds configuration for Zhipu's GLM-4.7 flagship model with text input/output modalities |
| providers/siliconflow/models/zai-org/GLM-4.6V.toml | Adds configuration for GLM-4.6V vision-language model supporting text and image inputs |
| providers/siliconflow/models/deepseek-ai/DeepSeek-V3.2.toml | Adds configuration for DeepSeek-V3.2 with enhanced sparse attention and structured output support |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -0,0 +1,22 @@ | |||
| name = "zai-org/GLM-4.7" | |||
| family = "glm-4-7" | |||
Copilot
AI
Jan 6, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The family name should use dots instead of dashes to match the existing naming convention. GLM-4.5 uses "glm-4.5" and GLM-4.6 uses "glm-4.6", so this should be "glm-4.7" instead of "glm-4-7".
| family = "glm-4-7" | |
| family = "glm-4.7" |
| @@ -0,0 +1,22 @@ | |||
| name = "zai-org/GLM-4.6V" | |||
| family = "glm-4-6v" | |||
Copilot
AI
Jan 6, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The family name should use dots instead of dashes to match the existing naming convention. GLM-4.5V uses "glm-4.5v", so this should be "glm-4.6v" instead of "glm-4-6v".
| family = "glm-4-6v" | |
| family = "glm-4.6v" |
| output = 131_000 | ||
|
|
||
| [modalities] | ||
| input = ["text","image"] |
Copilot
AI
Jan 6, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The array formatting is inconsistent with the project standard. Arrays should have spaces after commas. This should be ["text", "image"] instead of ["text","image"].
| input = ["text","image"] | |
| input = ["text", "image"] |
| @@ -0,0 +1,22 @@ | |||
| name = "deepseek-ai/DeepSeek-V3.2" | |||
| family = "deepseek-v3-2" | |||
Copilot
AI
Jan 6, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The family name should be "deepseek-v3" to match the existing pattern. Other DeepSeek V3 variants (DeepSeek-V3, DeepSeek-V3.1, DeepSeek-V3.1-Terminus, DeepSeek-V3.2-Exp) all use "deepseek-v3" as the family name, regardless of their minor version differences.
| family = "deepseek-v3-2" | |
| family = "deepseek-v3" |
Summary
Added 3 new SiliconFlow models to the provider database:
Changes