Skip to content

Commit 2dd13ae

Browse files
authored
Merge pull request #154 from nextcloud/feat/olmo3
feat(models): Ship Olmo 3
2 parents d47259c + 7ee55f8 commit 2dd13ae

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

default_config/config.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,15 @@
7676
"temperature": 0.7
7777
}
7878
},
79+
"Olmo-3-7B-Instruct-Q4_K_M": {
80+
"prompt": "<|endoftext|><|system|>\n{system_prompt}\n<|user|>\n{system_prompt}\n{user_prompt}\n<|assistant|>\n",
81+
"loader_config": {
82+
"n_ctx": 4096,
83+
"max_tokens": 2048,
84+
"stop": ["<|endoftext|>"],
85+
"temperature": 0.4
86+
}
87+
},
7988
"Mistral-Small-24B-Instruct-2501-Q3_K_M": {
8089
"prompt": "<|endoftext|><|system|>\n{system_prompt}\n<|user|>\n{system_prompt}\n{user_prompt}\n<|assistant|>\n",
8190
"loader_config": {

lib/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ def log(nc, level, content):
3434

3535
models_to_fetch = {
3636
"https://huggingface.co/bartowski/Meta-Llama-3.1-8B-Instruct-GGUF/resolve/4f0c246f125fc7594238ebe7beb1435a8335f519/Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf": { "save_path": os.path.join(persistent_storage(), "Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf") },
37+
"https://huggingface.co/unsloth/Olmo-3-7B-Instruct-GGUF/resolve/86844f8ff856ba9cc8a22c7b9edd7cf95129a580/Olmo-3-7B-Instruct-Q4_K_M.gguf": { "save_path": os.path.join(persistent_storage(), "Olmo-3-7B-Instruct-Q4_K_M.gguf") },
3738
}
3839
app_enabled = Event()
3940
trigger = Event()

0 commit comments

Comments
 (0)