diff options
Diffstat (limited to 'extension/react-app/src/components')
-rw-r--r-- | extension/react-app/src/components/ModelSelect.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/extension/react-app/src/components/ModelSelect.tsx b/extension/react-app/src/components/ModelSelect.tsx index e6c0e9c9..6a7692ff 100644 --- a/extension/react-app/src/components/ModelSelect.tsx +++ b/extension/react-app/src/components/ModelSelect.tsx @@ -60,6 +60,14 @@ const MODEL_INFO: { title: string; class: string; args: any }[] = [ args: {}, }, { + title: "HuggingFace Inference API", + class: "HuggingFaceInferenceAPI", + args: { + endpoint_url: "<INFERENCE_API_ENDPOINT_URL>", + hf_token: "<HUGGING_FACE_TOKEN>", + }, + }, + { title: "Other OpenAI-compatible API", class: "GGML", args: { |