(modelId: string)
| 3703 | * Returns the valid levels for that model, or null if the model doesn't support thinking |
| 3704 | */ |
| 3705 | export function getThinkingLevelsForModel(modelId: string): string[] | null { |
| 3706 | const capability = getThinkingCapability(modelId) |
| 3707 | return capability?.levels ?? null |
| 3708 | } |
| 3709 | |
| 3710 | /** |
| 3711 | * Get all models that support deep research capability |
no test coverage detected