Fix VSCode LM

This commit is contained in:
Matt Rubens
2025-01-16 01:00:07 -05:00
parent 8ddd720d28
commit 1b60d1e293
2 changed files with 7 additions and 0 deletions

View File

@@ -48,6 +48,8 @@ export function buildApiHandler(configuration: ApiConfiguration): ApiHandler {
return new OpenAiNativeHandler(options)
case "deepseek":
return new DeepSeekHandler(options)
case "vscode-lm":
return new VsCodeLmHandler(options)
default:
return new AnthropicHandler(options)
}