| 42 | | 'custom'; |
| 43 | |
| 44 | export interface Model { |
| 45 | id: number; |
| 46 | platform: Platform; |
| 47 | modelId: string; |
| 48 | displayName: string; |
| 49 | intelligenceRank: number; |
| 50 | speedRank: number; |
| 51 | sizeLabel: string; |
| 52 | rpmLimit: number | null; |
| 53 | rpdLimit: number | null; |
| 54 | tpmLimit: number | null; |
| 55 | tpdLimit: number | null; |
| 56 | monthlyTokenBudget: string; |
| 57 | contextWindow: number | null; |
| 58 | enabled: boolean; |
| 59 | supportsVision: boolean; |
| 60 | supportsTools: boolean; |
| 61 | } |
| 62 | |
| 63 | // ---- Quirks ---- |
| 64 | // Structured, reusable notes about catalog models. One quirk is applied to many |
nothing calls this directly
no outgoing calls
no test coverage detected