(model: AxonModel)
| 39 | |
| 40 | /** True when the model should be served via the Vercel AI SDK transport. */ |
| 41 | export function usesAiSdk(model: AxonModel): boolean { |
| 42 | return Boolean(model.provider) && !MATTERAI_PROVIDERS.has(model.provider!); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Well-known Claude models, served natively via the Anthropic provider (AI SDK, |
no outgoing calls
no test coverage detected