diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-09-15 12:39:29 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-09-15 12:39:29 -0700 |
commit | 00129229cd881d6b910a4b01db68e702cdd63a40 (patch) | |
tree | 982446663e0cec5c01cc2b80726d63b4a9eb6c42 | |
parent | a715cb1ebd507c305d12d83a3227e748a2daae03 (diff) | |
download | sncontinue-00129229cd881d6b910a4b01db68e702cdd63a40.tar.gz sncontinue-00129229cd881d6b910a4b01db68e702cdd63a40.tar.bz2 sncontinue-00129229cd881d6b910a4b01db68e702cdd63a40.zip |
fix: :bug: fix for lmstudio defaults
-rw-r--r-- | extension/react-app/src/components/ModelSelect.tsx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/extension/react-app/src/components/ModelSelect.tsx b/extension/react-app/src/components/ModelSelect.tsx index 92ee3abd..0b1829f1 100644 --- a/extension/react-app/src/components/ModelSelect.tsx +++ b/extension/react-app/src/components/ModelSelect.tsx @@ -69,11 +69,9 @@ const MODEL_INFO: { title: string; class: string; args: any }[] = [ }, { title: "LM Studio", - class: "OpenAI", + class: "GGML", args: { - api_base: "http://localhost:1234", - model: "codellama", - api_key: "EMPTY", + server_url: "http://localhost:1234", }, }, { |