(model: string)
| 21 | export const MODEL_FAMILY_ALIASES = ['sonnet', 'opus', 'haiku'] as const |
| 22 | |
| 23 | export function isModelFamilyAlias(model: string): boolean { |
| 24 | return (MODEL_FAMILY_ALIASES as readonly string[]).includes(model) |
| 25 | } |
| 26 |
no outgoing calls
no test coverage detected