(model: string)
| 42 | } |
| 43 | |
| 44 | export function isClaudeModel(model: string): boolean { |
| 45 | return model.startsWith('anthropic/') || model.startsWith('claude-') |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Convert an OpenRouter model ID to an Anthropic model ID. |
no outgoing calls
no test coverage detected