diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-27 03:12:37 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-27 03:12:37 -0700 |
commit | fc9e8e4e325782409258dd483e36abf441051ee6 (patch) | |
tree | 19958145e708d99c56be7ae98c741c64558e6d6c /extension/react-app/src/components | |
parent | b3853ba58ccbe5ad54fb8c22a78e39cba0a1cca0 (diff) | |
download | sncontinue-fc9e8e4e325782409258dd483e36abf441051ee6.tar.gz sncontinue-fc9e8e4e325782409258dd483e36abf441051ee6.tar.bz2 sncontinue-fc9e8e4e325782409258dd483e36abf441051ee6.zip |
feat: :sparkles: LlamaCpp LLM subclass
Diffstat (limited to 'extension/react-app/src/components')
-rw-r--r-- | extension/react-app/src/components/ModelSelect.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/extension/react-app/src/components/ModelSelect.tsx b/extension/react-app/src/components/ModelSelect.tsx index 49788143..9699847c 100644 --- a/extension/react-app/src/components/ModelSelect.tsx +++ b/extension/react-app/src/components/ModelSelect.tsx @@ -64,6 +64,11 @@ const MODEL_INFO: { title: string; class: string; args: any }[] = [ api_key: "<TOGETHER_API_KEY>", }, }, + { + title: "llama.cpp", + class: "LlamaCpp", + args: {}, + }, ]; const Select = styled.select` |