(provider: string, modelId: string)
| 237 | * Used by: buildPiModel to set `PiModel.reasoning`. |
| 238 | */ |
| 239 | export function isReasoningModel(provider: string, modelId: string): boolean { |
| 240 | return classifyThinkingType(provider, modelId) !== 'none' |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * PiModel compat fragment that makes the chosen thinkingLevel actually reach |
no test coverage detected