Views
No views yet
ornith-9b-classic-q8_0.gguf (~8.9 GB, Q8_0) — fits a 12 GB GPU.1FROM ./ornith-9b-classic-q8_0.gguf
2TEMPLATE """{{ if .System }}<|im_start|>system
3{{ .System }}<|im_end|>
4{{ end }}{{ if .Prompt }}<|im_start|>user
5{{ .Prompt }}<|im_end|>
6{{ end }}<|im_start|>assistant
7{{ .Response }}<|im_end|>
8"""
9PARAMETER num_ctx 40960
10PARAMETER num_predict 4096
11PARAMETER temperature 0.6
12PARAMETER top_p 0.95
13PARAMETER top_k 20
14PARAMETER stop <|im_start|>
15PARAMETER stop <|im_end|>ollama create ornith-9b-classic -f Ornith.Modelfile.npk container and run it inside VS Code on the GPU:1node npk-tool.mjs pack ornith-9b-classic-q8_0.gguf ornith9b.npk \
2 --arch qwen2 --name "Ornith 9B — Classic" --ctx 40960 --quant Q8_0ornith-9b-classic.npk (~8.9 GB) is the same Q8 model pre-packed in the
self-contained NeuroPack .npk container. Download it, then in
Sentinel Coder One: Add NeuroPack (.npk) Model from Folder and select the
folder. It runs GPU-only inside the editor with full agentic / tools / RAG
support — no Ollama, no server, no extra installs.