(modelId: string)
| 3436 | } |
| 3437 | |
| 3438 | export function supportsTemperature(modelId: string): boolean { |
| 3439 | const capabilities = getModelCapabilities(modelId) |
| 3440 | return !!capabilities?.temperature |
| 3441 | } |
| 3442 | |
| 3443 | export function getMaxTemperature(modelId: string): number | undefined { |
| 3444 | const capabilities = getModelCapabilities(modelId) |
no test coverage detected