diff --git a/frontend/src/hooks/useGetProvidersModels.js b/frontend/src/hooks/useGetProvidersModels.js index 064ad17c88..c56f42fdca 100644 --- a/frontend/src/hooks/useGetProvidersModels.js +++ b/frontend/src/hooks/useGetProvidersModels.js @@ -4,7 +4,6 @@ import { useEffect, useState } from "react"; // Providers which cannot use this feature for workspace<>model selection export const DISABLED_PROVIDERS = [ "azure", - "lmstudio", "native", "textgenwebui", "generic-openai", diff --git a/frontend/src/pages/WorkspaceSettings/ChatSettings/WorkspaceLLMSelection/index.jsx b/frontend/src/pages/WorkspaceSettings/ChatSettings/WorkspaceLLMSelection/index.jsx index c1841929c2..e065aff4a4 100644 --- a/frontend/src/pages/WorkspaceSettings/ChatSettings/WorkspaceLLMSelection/index.jsx +++ b/frontend/src/pages/WorkspaceSettings/ChatSettings/WorkspaceLLMSelection/index.jsx @@ -16,7 +16,7 @@ const NO_MODEL_SELECTION = [ "generic-openai", "bedrock", ]; -const DISABLED_PROVIDERS = ["azure", "lmstudio", "native"]; +const DISABLED_PROVIDERS = ["azure", "native"]; const LLM_DEFAULT = { name: "System default", value: "default",