Views
No views yet
code-ministry-ltd/the-librarian). Its curator runs three jobs — harvesting,
intake, and grooming — each with its own job section of one unified prompt.
This adapter was trained for the harvesting job only.1from transformers import AutoTokenizer, AutoModelForCausalLM
2from peft import PeftModel
3
4base = "unsloth/Qwen3.5-9B"
5tok = AutoTokenizer.from_pretrained(base)
6model = AutoModelForCausalLM.from_pretrained(base, torch_dtype="auto", device_map="cuda")
7model = PeftModel.from_pretrained(model, "code-ministry-ltd/librarian-curator-qwen35-9b-harvesting")curator-qwen35-9b-harvesting-100-r8-lora-f16.gguf, f16). Load it on any
Qwen3.5-9B GGUF (Q8_0 recommended) — the scale is 1.0 by design:1llama-server -m Qwen3.5-9B-Q8_0.gguf \
2 --lora-scaled curator-qwen35-9b-harvesting-100-r8-lora-f16.gguf:1.0 \
3 --jinja --chat-template-file <qwen3.5 chat template> \
4 --chat-template-kwargs '{"enable_thinking": false}'