-
Notifications
You must be signed in to change notification settings - Fork 351
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
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" |
|
/oc can you update siliconflow cn too? believe we use symlinks |
Co-authored-by: rekram1-node <rekram1-node@users.noreply.github.com>
|
Perfect! I've successfully updated the SiliconFlow CN provider with the 3 new models by creating symlinks to the corresponding models in the main SiliconFlow provider. Summary✅ Completed: Added 3 new SiliconFlow CN models via symlinks:
The SiliconFlow CN provider uses symlinks to reference models from the main SiliconFlow provider, which is exactly how I've implemented the updates. All changes have been validated successfully with The symlinks are now in place at:
|
|
User opencode-agent[bot] does not have write permissions |
siliconflow cn has some unique models, and I will further update them after this PR is accepted; some may not be directly symlinked. |
|
User qychen2001 does not have write permissions |
|
ah okay good cal we can revert that then |
|
The newly added models can all be symlinked, so I feel like there's no need to delete them, but SiliconFlow has some unique models, like gpt oss, which are not available in CN. CN also has some models that are not in SiliconFlow. I'm not sure how to best handle these differences. |

Summary
Added 3 new SiliconFlow models to the provider database:
Changes