()
| 3615 | } |
| 3616 | |
| 3617 | export function getModelsWithVerbosity(): string[] { |
| 3618 | const models: string[] = [] |
| 3619 | for (const provider of Object.values(PROVIDER_DEFINITIONS)) { |
| 3620 | for (const model of provider.models) { |
| 3621 | if (model.capabilities.verbosity) { |
| 3622 | models.push(model.id) |
| 3623 | } |
| 3624 | } |
| 3625 | } |
| 3626 | return models |
| 3627 | } |
| 3628 | |
| 3629 | /** |
| 3630 | * Get the verbosity values for a specific model |