feat(ollama-cloud): add deepseek-v4-flash model - #1586
Conversation
| @@ -0,0 +1,16 @@ | |||
| name = "deepseek-v4-flash" | |||
There was a problem hiding this comment.
let's use "extends" keyword to prevent duplication
| release_date = "2026-04-24" | ||
| last_updated = "2026-04-24" | ||
| open_weights = true | ||
|
|
There was a problem hiding this comment.
missing interleaved settings
There was a problem hiding this comment.
My original comment:
No extends — standalone file keeps it clean and avoids inheriting fields (temperature, structured_output, interleaved, etc.) that don't belong in ollama-cloud models
I’m just being consistent with the rest of the ollama-cloud models.
There was a problem hiding this comment.
I'm not aware exactly of the ollama settings but i know for a fact that this is an interleaved reasoning model that will error if reasoning isnt passed back.
There was a problem hiding this comment.
I know what you're referring to, but that was a bug that was fixed in Opencode in v1.14.24, and it has nothing to do with whether that field exists in models.dev or not.
Actually, I'm already using DeepSeek V4 Flash through Ollama Cloud in my Opencode setup by adding it to the opencode.json file:
"ollama-cloud": {
"name": "Ollama Cloud",
"models": {
"deepseek-v4-flash": {
"name": "DeepSeek V4 Flash",
"limit": {
"context": 1048576,
"output": 1048576
},
"modalities": {
"input": ["text"],
"output": ["text"]
}
}
}
}
So I think this PR should be merged as is.
|
ollama-cloud has v4 pro now |
This model is already available on Ollama Cloud's API (/api/tags) but was missing from the repository. Values are sourced directly from the API (/api/show) and aligned with the ollama-cloud model conventions: