(modelId: string)
| 27 | |
| 28 | const deepSeekV4ThinkingModels = new Set(["deepseek-v4-flash", "deepseek-v4-pro"]) |
| 29 | const supportsDeepSeekThinkingToggle = (modelId: string) => deepSeekV4ThinkingModels.has(modelId) |
| 30 | |
| 31 | // Only known V4 models and the legacy reasoner alias support DeepSeek's |
| 32 | // thinking fields. Custom model IDs still fall back to default metadata, but |
no test coverage detected