Skip to content

add glm-5, gpt-5-mini, deepseek-v3.2 models for vivgrid provider#915

Merged
rekram1-node merged 1 commit intoanomalyco:devfrom
fanweixiao:dev
Feb 15, 2026
Merged

add glm-5, gpt-5-mini, deepseek-v3.2 models for vivgrid provider#915
rekram1-node merged 1 commit intoanomalyco:devfrom
fanweixiao:dev

Conversation

@fanweixiao
Copy link
Contributor

@fanweixiao fanweixiao commented Feb 14, 2026

add 3 models:

  • glm-5
  • gpt-5-mini
  • deepseek-v3.2

@fanweixiao fanweixiao changed the title add glm-5, gpt-5-mini, deepseek-v3.2 models add glm-5, gpt-5-mini, deepseek-v3.2 models for vivgrid provider Feb 14, 2026
temperature = true
knowledge = "2024-07"
tool_call = true
open_weights = true
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

isnt deepseek an interleaved reasoning model?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good question — DeepSeek-V3.2 is actually a hybrid / interleaved reasoning model rather than a dedicated reasoning-only model.

In most deployments (for example with vLLM), reasoning is not enabled by default and must be explicitly requested at runtime — e.g. by passing chat_template_kwargs.thinking=true in the request body. Without this, it behaves like a standard chat LLM.

In models.dev, the reasoning flag indicates that a model supports reasoning capabilities, not that it always operates in a dedicated reasoning mode. This is consistent with how other providers configure DeepSeek-V3.2.

In Vivgrid, we abstract these provider-specific details away — developers can enable reasoning using the same client interface they would use for GPT-5.2 , without needing to handle provider-specific request parameters.

e.g.

{
  "model": "DeepSeek-V3.2",
  "input": [
    {
      "role": "user",
      "content": "Explain why the sky is blue"
    }
  ],
  "reasoning": {
    "effort": "medium"
  },
}

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok

@rekram1-node rekram1-node merged commit 97a040b into anomalyco:dev Feb 15, 2026
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants