samuelchristlie/Ornith-1.0-9B-gguf overview
Ornith 1.0 9B GGUF Direct GGUF Quantizations of Ornith 1.0 9B This repository provides GGUF quantized models for deepreinforce ai/Ornith 1.0 9B . Ornith 1.0 9B…
Runs locally from ~3.56 GB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| deepreinforce-ai_Ornith-1.0-9B-IQ3_S.gguf | GGUF | IQ3_S | 4.07 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-IQ4_NL.gguf | GGUF | IQ4_NL | 5.07 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-IQ4_XS.gguf | GGUF | IQ4_XS | 4.87 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-Q2_K.gguf | GGUF | Q2_K | 3.56 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-Q3_K_L.gguf | GGUF | Q3_K_L | 4.59 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-Q3_K_M.gguf | GGUF | Q3_K_M | 4.31 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-Q3_K_S.gguf | GGUF | Q3_K_S | 3.97 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-Q4_0.gguf | GGUF | Q4_0 | 4.95 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-Q4_K_M.gguf | GGUF | Q4_K_M | 5.24 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-Q4_K_S.gguf | GGUF | Q4_K_S | 4.98 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-Q5_0.gguf | GGUF | Q5_0 | 5.87 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-Q5_K_M.gguf | GGUF | Q5_K_M | 6.02 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-Q5_K_S.gguf | GGUF | Q5_K_S | 5.87 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-Q6_K.gguf | GGUF | Q6_K | 6.85 GB | Download |
| deepreinforce-ai_Ornith-1.0-9B-Q8_0.gguf | GGUF | Q8_0 | 8.87 GB | Download |
Model Details
| Model ID | samuelchristlie/Ornith-1.0-9B-gguf |
|---|---|
| Author | samuelchristlie |
| Pipeline | — |
| License | mit |
| Base model | deepreinforce-ai/Ornith-1.0-9B,Qwen/Qwen3.5-9B |
| Last modified | 2026-06-26T09:24:02.000Z |
Model README
---
license: mit
base_model:
- deepreinforce-ai/Ornith-1.0-9B
- Qwen/Qwen3.5-9B
tags:
- coding
- agentic
- reasoning
- tool-use
---
Ornith-1.0-9B-GGUF
Direct GGUF Quantizations of Ornith-1.0-9B
This repository provides GGUF quantized models for deepreinforce-ai/Ornith-1.0-9B.
Ornith-1.0-9B is the most lightweight member of the Ornith-1.0 family, a self-improving open-source model family for agentic coding developed by DeepReinforce. Built on top of Qwen 3.5, it is a dense ~9B reasoning model (≈19 GB in bf16) that achieves state-of-the-art performance among open-source models of comparable size on coding benchmarks including Terminal-Bench 2.1, SWE-Bench Verified (69.4%), SWE-Bench Pro, NL2Repo, and ClawEval. It supports tool-calling, emits structured <think> … </think> reasoning traces, and is optimized for terminal-based coding agents and agentic workflows. These GGUF versions enable efficient local inference via llama.cpp and compatible tools.
This release includes various quantization levels (e.g., Q2_K, Q3_K_M, Q4_K_M, Q5_K_M, Q6_K, Q8_0) to suit different hardware and performance requirements. Q4_K_M is the recommended sweet spot for most setups; use Q6_K or Q8_0 for maximum fidelity.
> ⚠️ Important: Always pass --jinja when loading with llama.cpp so the Ornith-1.0-9B chat template is applied correctly. Without it, the model may emit malformed turns.
Table of Contents 📝
<a name="usage"/>
▶ Usage
1. Download Models
Download models using huggingface-cli:
pip install "huggingface_hub[cli]"
huggingface-cli download samuelchristlie/Ornith-1.0-9B-gguf --local-dir ./Ornith-1.0-9B-gguf
You can also download directly from this page.
2. Inference
To use these GGUF files, you'll need a compatible inference engine like llama.cpp or clients built on top of it (e.g., Ollama, LM Studio, KoboldCpp, text-generation-webui with a llama.cpp backend).
Recommended sampling parameters: temperature=0.6, top_p=0.95, top_k=20. Use temperature=1.0 to reproduce the original published benchmark results.
llama.cpp (server)
llama-server -hf samuelchristlie/Ornith-1.0-9B-gguf --port 8000 -c 262144 --jinja
Ollama
ollama run hf.co/samuelchristlie/Ornith-1.0-9B-gguf
Parsing Reasoning Traces
Ornith-1.0-9B is a reasoning model — responses begin with a <think> … </think> block containing the chain-of-thought, followed by the final answer. To split them:
if "</think>" in text:
reasoning, answer = text.split("</think>", 1)
reasoning = reasoning.replace("<think>", "").strip()
answer = answer.strip()
else:
reasoning, answer = "", text.strip()
<a name="license"/>
📃 License
This model is a GGUF conversion of the original deepreinforce-ai/Ornith-1.0-9B model. The original model is licensed under the MIT License, and this derivative work adheres to the terms of
Run samuelchristlie/Ornith-1.0-9B-gguf with guIDE
Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.
Source: Hugging Face · Compare models