(modelInput: string)
| 10 | export type ModelAlias = (typeof MODEL_ALIASES)[number] |
| 11 | |
| 12 | export function isModelAlias(modelInput: string): modelInput is ModelAlias { |
| 13 | return MODEL_ALIASES.includes(modelInput as ModelAlias) |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Bare model family aliases that act as wildcards in the availableModels allowlist. |
no outgoing calls
no test coverage detected