Merge pull request #381 from RooVetGit/fix_vscode_lm

Fix VSCode LM
This commit is contained in:
Matt Rubens
2025-01-16 01:03:46 -05:00
committed by GitHub
2 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
---
"roo-cline": patch
---
Fix VSCode LM

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)
}