(modelId: string)
| 85 | }; |
| 86 | |
| 87 | export function isSupportedChatModel(modelId: string): modelId is SupportedChatModelId { |
| 88 | return findSupportedChatModel(modelId) != null; |
| 89 | }; |
| 90 | |
| 91 | export function resolveChatModel(modelId: string): ResolvedModel { |
| 92 | const model = findSupportedChatModel(modelId); |
nothing calls this directly
no test coverage detected