KucLab commited on
Commit
9ed1020
·
verified ·
1 Parent(s): eefe035

Fix Ollama quickstart: ollama pull alone drops the system prompt

Browse files
Files changed (1) hide show
  1. README.md +7 -2
README.md CHANGED
@@ -34,11 +34,16 @@ Hertz 0.6 is a **LoRA fine-tune** (r=16, merged into the base weights). Unlike 0
34
 
35
  ## Quickstart (Ollama)
36
 
 
 
37
  ```bash
38
- ollama pull hf.co/KucLab/kuclab-hertz-0.6:Q4_K_M
39
- ollama run hf.co/KucLab/kuclab-hertz-0.6:Q4_K_M
 
40
  ```
41
 
 
 
42
  ## The honest development story
43
 
44
  We're publishing this because it's the kind of thing that usually gets edited out of a release note, and we think it's more useful left in.
 
34
 
35
  ## Quickstart (Ollama)
36
 
37
+ **Important:** `ollama pull hf.co/...` alone does NOT apply this model's system prompt (identity + personality) — Ollama only fetches the raw GGUF from Hugging Face, it does not read a repo's `Modelfile`. Without the system prompt, the model falls back to identifying as a generic Gemma model. Use `ollama create` with the Modelfile below instead — it pulls the weights AND applies the system prompt in one step:
38
+
39
  ```bash
40
+ curl -O https://huggingface.co/KucLab/kuclab-hertz-0.6/resolve/main/Modelfile
41
+ ollama create kuclab-hertz-0.6 -f Modelfile
42
+ ollama run kuclab-hertz-0.6
43
  ```
44
 
45
+ (The Modelfile's `FROM` line points at `hf.co/KucLab/kuclab-hertz-0.6:Q4_K_M`, so this pulls the same GGUF automatically — no separate download needed.)
46
+
47
  ## The honest development story
48
 
49
  We're publishing this because it's the kind of thing that usually gets edited out of a release note, and we think it's more useful left in.