(modelId: string)
| 66 | export type SupportedChatModelId = SupportedChatModel["id"]; |
| 67 | |
| 68 | export function findSupportedChatModel(modelId: string) { |
| 69 | return SUPPORTED_CHAT_MODELS.find((model) => model.id === modelId); |
| 70 | } |
| 71 | |
| 72 | export const DEFAULT_CHAT_MODEL_ID: SupportedChatModelId = "claude-opus-4-6"; |
no outgoing calls
no test coverage detected