(model: string)
| 29 | export const MODEL_FAMILY_ALIASES = ['sonnet', 'opus', 'haiku'] as const |
| 30 | |
| 31 | export function isModelFamilyAlias(model: string): boolean { |
| 32 | return (MODEL_FAMILY_ALIASES as readonly string[]).includes(model) |
| 33 | } |
no outgoing calls
no test coverage detected