Просмотр исходного кода

Merge pull request #381 from RooVetGit/fix_vscode_lm

Fix VSCode LM
Matt Rubens 11 месяцев назад
Родитель
Сommit
26c77ae575
2 измененных файлов с 7 добавлено и 0 удалено
  1. 5 0
      .changeset/silent-llamas-leave.md
  2. 2 0
      src/api/index.ts

+ 5 - 0
.changeset/silent-llamas-leave.md

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

+ 2 - 0
src/api/index.ts

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