Skip to content

Commit 013c0b9

Browse files
remove LMStudio restriction for model selector
1 parent 0cba89a commit 013c0b9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

frontend/src/hooks/useGetProvidersModels.js

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { useEffect, useState } from "react";
44
// Providers which cannot use this feature for workspace<>model selection
55
export const DISABLED_PROVIDERS = [
66
"azure",
7-
"lmstudio",
87
"native",
98
"textgenwebui",
109
"generic-openai",

frontend/src/pages/WorkspaceSettings/ChatSettings/WorkspaceLLMSelection/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const NO_MODEL_SELECTION = [
1616
"generic-openai",
1717
"bedrock",
1818
];
19-
const DISABLED_PROVIDERS = ["azure", "lmstudio", "native"];
19+
const DISABLED_PROVIDERS = ["azure", "native"];
2020
const LLM_DEFAULT = {
2121
name: "System default",
2222
value: "default",

0 commit comments

Comments
 (0)