diff options
author | elioat <{ID}+{username}@users.noreply.github.com> | 2025-01-03 09:26:58 -0500 |
---|---|---|
committer | elioat <{ID}+{username}@users.noreply.github.com> | 2025-01-03 09:26:58 -0500 |
commit | 6416bd78e0c4cab6889a5f0590c77249a11f7ecb (patch) | |
tree | cb1ab919b97594eae3099daf76f0b7c8fe7fab11 /html/matt-chat | |
parent | a3e2f311f5984aea62e93eb704152af75d7fb104 (diff) | |
download | tour-6416bd78e0c4cab6889a5f0590c77249a11f7ecb.tar.gz |
*
Diffstat (limited to 'html/matt-chat')
-rw-r--r-- | html/matt-chat/index.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/html/matt-chat/index.html b/html/matt-chat/index.html index 520a05e..dcbb4a5 100644 --- a/html/matt-chat/index.html +++ b/html/matt-chat/index.html @@ -159,9 +159,10 @@ const config = { apiUrl: "http://localhost:11434/v1/chat/completions", models: [ - { value: "llama3.1:8b", label: "llama3.1:8b" }, - { value: "qwen2.5-coder:1.5b", label: "qwen2.5-coder:1.5b" }, - { value: "qwen2.5-coder:7b", label: "qwen2.5-coder:7b" } + { value: "llama3.1:8b", label: "llama3.1:8b, general tasks" }, + { value: "qwen2.5-coder:1.5b", label: "qwen2.5-coder:1.5b, fast coding" }, + { value: "qwen2.5-coder:7b", label: "qwen2.5-coder:7b, fastish coding" }, + { value: "qwen2.5-coder:32b", label: "qwen2.5-coder:32b, super slow coding" }, ], contextWindowSize: 3 // Number of previous exchanges to keep }; |