15 lines
508 B
TypeScript
15 lines
508 B
TypeScript
|
|
/**
|
||
|
|
* Canonical model IDs for the AI Ticket Analyzer pipeline.
|
||
|
|
*
|
||
|
|
* Use these constants — never hardcode the strings elsewhere.
|
||
|
|
*
|
||
|
|
* Verify quarterly against https://docs.claude.com/en/docs/about-claude/models
|
||
|
|
* Model IDs change rarely but pricing and capability tiers can shift.
|
||
|
|
*/
|
||
|
|
|
||
|
|
export const HAIKU = 'claude-haiku-4-5' as const;
|
||
|
|
export const SONNET = 'claude-sonnet-4-6' as const;
|
||
|
|
export const OPUS = 'claude-opus-4-7' as const;
|
||
|
|
|
||
|
|
export type ModelId = typeof HAIKU | typeof SONNET | typeof OPUS;
|