From 0362aaecdb0d74581fbf7fc450d74317b329c4ad Mon Sep 17 00:00:00 2001 From: Prasang-A-Prajapati Date: Tue, 26 Aug 2025 11:40:22 -0400 Subject: [PATCH] add watsonx missing provider in the typs --- packages/types/src/provider-settings.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/types/src/provider-settings.ts b/packages/types/src/provider-settings.ts index c783c2cc99..85e22f22f6 100644 --- a/packages/types/src/provider-settings.ts +++ b/packages/types/src/provider-settings.ts @@ -25,6 +25,7 @@ import { vscodeLlmModels, xaiModels, internationalZAiModels, + watsonxAiModels, } from "./providers/index.js" /** @@ -541,6 +542,11 @@ export const MODELS_BY_PROVIDER: Record< label: "VS Code LM API", models: Object.keys(vscodeLlmModels), }, + watsonx: { + id: "watsonx", + label: "IBM watsonx", + models: Object.keys(watsonxAiModels), + }, xai: { id: "xai", label: "xAI (Grok)", models: Object.keys(xaiModels) }, zai: { id: "zai", label: "Zai", models: Object.keys(internationalZAiModels) },