diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-09-11 13:00:13 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-09-11 13:00:13 -0700 |
commit | b0445cd5fc4538c8a9c4f3e76be0f3d724c99818 (patch) | |
tree | da5f6f2364b630be15477fb950145696a9a179a9 /extension/react-app/src/components/ModelSelect.tsx | |
parent | a6d21f979fce6135fd76923478f76000b1b343cf (diff) | |
download | sncontinue-b0445cd5fc4538c8a9c4f3e76be0f3d724c99818.tar.gz sncontinue-b0445cd5fc4538c8a9c4f3e76be0f3d724c99818.tar.bz2 sncontinue-b0445cd5fc4538c8a9c4f3e76be0f3d724c99818.zip |
fix: :bug: gpt-4-32k in CHAT_MODELS
Diffstat (limited to 'extension/react-app/src/components/ModelSelect.tsx')
-rw-r--r-- | extension/react-app/src/components/ModelSelect.tsx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/extension/react-app/src/components/ModelSelect.tsx b/extension/react-app/src/components/ModelSelect.tsx index 6a7692ff..7d528a53 100644 --- a/extension/react-app/src/components/ModelSelect.tsx +++ b/extension/react-app/src/components/ModelSelect.tsx @@ -63,11 +63,19 @@ const MODEL_INFO: { title: string; class: string; args: any }[] = [ title: "HuggingFace Inference API", class: "HuggingFaceInferenceAPI", args: { - endpoint_url: "<INFERENCE_API_ENDPOINT_URL>", + endpoint_url: "<INFERENCE_API_ENDPOINT_URL>", hf_token: "<HUGGING_FACE_TOKEN>", }, }, { + title: "LM Studio", + class: "OpenAI", + args: { + api_base: "http://localhost:1234", + model: "codellama", + }, + }, + { title: "Other OpenAI-compatible API", class: "GGML", args: { |