(model: string)
| 50 | * @returns True if the model is a Codex model, false otherwise |
| 51 | */ |
| 52 | export function isCodexModel(model: string): boolean { |
| 53 | return CODEX_MODELS.some(m => m.id === model) |
| 54 | } |
| 55 | |
| 56 | // ── JWT helpers ───────────────────────────────────────────────────── |
| 57 |
no outgoing calls
no test coverage detected