Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions providers/vivgrid/models/deepseek-v3.2.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name = "DeepSeek-V3.2"
family = "deepseek"
release_date = "2025-12-01"
last_updated = "2025-12-01"
attachment = false
reasoning = true
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


[cost]
input = 0.28
output = 0.42

[limit]
context = 128_000
output = 128_000

[modalities]
input = ["text"]
output = ["text"]

[provider]
npm = "@ai-sdk/openai-compatible"
29 changes: 29 additions & 0 deletions providers/vivgrid/models/glm-5.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name = "GLM-5"
family = "glm"
release_date = "2026-02-12"
last_updated = "2026-02-12"
attachment = false
reasoning = true
temperature = true
tool_call = true
structured_output = true
open_weights = true

[interleaved]
field = "reasoning_content"

[cost]
input = 1.00
output = 3.20
cache_read = 0.2

[limit]
context = 202_752
output = 131_000

[modalities]
input = ["text"]
output = ["text"]

[provider]
npm = "@ai-sdk/openai-compatible"
26 changes: 26 additions & 0 deletions providers/vivgrid/models/gpt-5-mini.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name = "GPT-5 Mini"
family = "gpt-mini"
release_date = "2025-08-07"
last_updated = "2025-08-07"
attachment = true
reasoning = true
temperature = false
knowledge = "2024-05-30"
tool_call = true
open_weights = false

[cost]
input = 0.25
output = 2.00
cache_read = 0.03

[limit]
context = 272_000
output = 128_000

[modalities]
input = ["text", "image"]
output = ["text"]

[provider]
npm = "@ai-sdk/openai-compatible"