Instructions to use Babsie/Crow_Qwen9B_OpusUCH with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Babsie/Crow_Qwen9B_OpusUCH with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M # Run inference directly in the terminal: llama cli -hf Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M # Run inference directly in the terminal: llama cli -hf Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M
Use Docker
docker model run hf.co/Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use Babsie/Crow_Qwen9B_OpusUCH with Ollama:
ollama run hf.co/Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M
- Unsloth Desktop
- Pi
How to use Babsie/Crow_Qwen9B_OpusUCH with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Babsie/Crow_Qwen9B_OpusUCH with Docker Model Runner:
docker model run hf.co/Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M
- Lemonade
How to use Babsie/Crow_Qwen9B_OpusUCH with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M
Run and chat with the model
lemonade run user.Crow_Qwen9B_OpusUCH-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Babsie/Crow_Qwen9B_OpusUCH with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Babsie/Crow_Qwen9B_OpusUCH with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "Babsie/Crow_Qwen9B_OpusUCH:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
File size: 7,343 Bytes
131433a a26d19f 131433a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | ---
datasets:
- crownelius/Creative_Writing_ShareGPT_Enhanced
- microsoft/rStar-Coder
- peteromallet/dataclaw-peteromallet
- crownelius/Opus-4.6-Reasoning-3300x
- openbmb/UltraData-Math
- Unreleased/Dataset
base_model:
- trohrbaugh/Qwen3.5-9B-heretic-v2
tags:
- agent
license: apache-2.0
language:
- en
- zh
- ru
- es
- fr
- it
- ja
- ko
- af
- de
- ar
- tr
- is
- pl
- sw
- sv
- nl
- he
- id
- uk
- fa
- pa
- pt
- ms
- fi
- el
---
## This is a Lab Copy for developmental purposes.
If you want to download, please go to [crownelius/Crow-9B-Opus-4.6-Distill-Heretic_Qwen3.5](https://huggingface.co/crownelius/Crow-9B-Opus-4.6-Distill-Heretic_Qwen3.5)
-----------
[<img src="https://huggingface.co/crownelius/Crow-9B-Opus-4.6-Distill-Heretic_Qwen3.5/resolve/main/banner.png" width="350"/>](https://ko-fi.com/abcuo)
CROW HAS REACHED THE FIRST PAGE OF HUGGINGFACE TRENDING MODELS! THANK YOU SO MUCH!!! NUMBER 15 IN THE WORLD!!!
# 🪶 CROW-9B
> **Flagship Intelligence. Featherweight Footprint.**
> *Meticulously distilled from Claude Opus 4.6 into a highly efficient Qwen 3.5 architecture.*
---
**`Architecture:`** `Qwen 3.5` | **`Parameters:`** `9 Billion` | **`Teacher Model:`** `Claude Opus 4.6` | **`Type:`** `Distilled LLM`
---
### 🌟 Model Highlights
* **Distilled Excellence:** Captures the deep reasoning, nuanced formatting, and instruction-following capabilities of Claude Opus 4.6.
* **Highly Agile:** At just 9B parameters, Crow runs efficiently on consumer-grade GPUs and edge devices without sacrificing contextual depth.
* **Qwen 3.5 Backbone:** Inherits robust multilingual support, a massive context window, and structural stability.
--- Generating this model was expensive. You can support this one and future models by tipping. https://ko-fi.com/abcuo
## Available Model files:
- `Qwen3.5-9B-heretic-v2.F16.gguf`
- `Qwen3.5-9B-heretic-v2.Q8_0.gguf`
- `Qwen3.5-9B-heretic-v2.Q5_K_M.gguf`
- `Qwen3.5-9B-heretic-v2.Q4_K_M.gguf`
- `Qwen3.5-9B-heretic-v2.BF16-mmproj.gguf`
## User Guide
### Recommended System Prompt
Default system prompt:
```text
You are Crow, a precise and capable assistant for reasoning, writing, coding, and long-form dialogue.
Behavior rules:
- Answer the user's actual request directly.
- Be accurate, complete, and structured.
- Think before answering, but do not get stuck in repetitive loops or meta-commentary.
- If the request is ambiguous or incomplete, state what is missing and make the smallest reasonable assumption needed to continue.
- If the user wants creative writing, preserve tone, continuity, and character consistency.
- If the user wants analysis or technical help, prefer concrete steps, examples, and decisions over fluff.
- Finish with a usable answer, not just planning.
```
Shorter fallback system prompt:
```text
You are Crow. Give direct, useful answers. Keep reasoning concise. Do not loop, do not repeat yourself, and do not pad. If context is missing, say what is missing in one sentence and continue with the best reasonable assumption.
```
### Install & Dependencies
#### LM Studio
1. Install LM Studio from `https://lmstudio.ai/`.
2. Download one of the GGUF files from the Files tab for this repo.
3. Pick a quant based on your hardware:
- `Q4_K_M`: lowest memory use
- `Q5_K_M`: best default for most users
- `Q8_0`: stronger quality, higher memory use
- `F16`: best quality, highest memory use
4. Load the GGUF in LM Studio.
5. If you need image support in a compatible GGUF runtime, also download the paired `mmproj` file.
Dependencies:
- A current LM Studio build
- Enough disk space for the model and cache
- Enough RAM / VRAM for your selected quant
- Current GPU drivers if you want GPU offload
#### Ollama
1. Install Ollama from `https://docs.ollama.com/quickstart`.
2. Download a Crow 9B GGUF from this repo.
3. Place the GGUF in its own folder.
4. Create a `Modelfile`.
5. Build the model with `ollama create`.
Dependencies:
- A current Ollama release
- Enough disk space for the GGUF and Ollama model store
- Enough RAM / VRAM for your selected quant
- Current GPU drivers if you want GPU acceleration
### Good LM Studio Settings
Recommended starting points:
| Use case | Temperature | Top P | Top K | Repeat penalty | Context | Max tokens |
|---|---:|---:|---:|---:|---:|---:|
| General / reasoning | 0.6 | 0.95 | 20 | 1.05 | 16384 | 4096 |
| Creative writing / roleplay | 0.8 | 0.95 | 40 | 1.02 | 16384-32768 | 4096-8192 |
Notes:
- Start with `Q5_K_M` unless you have a reason to use a different quant.
- Lower temperature if you see rambling or unstable reasoning.
- Do not max out context by default. Larger contexts cost more memory and can make long chats less stable on weaker hardware.
### Good Ollama Settings
Example `Modelfile`:
```text
FROM ./Qwen3.5-9B-heretic-v2.Q5_K_M.gguf
PARAMETER num_ctx 16384
PARAMETER temperature 0.6
PARAMETER top_p 0.95
PARAMETER top_k 20
PARAMETER repeat_penalty 1.05
PARAMETER repeat_last_n 256
SYSTEM """
You are Crow, a precise and capable assistant for reasoning, writing, coding, and long-form dialogue.
Answer directly, stay coherent, avoid repetitive thinking loops, and finish with a complete answer.
If context is missing, identify the gap briefly and continue with the best reasonable assumption.
"""
```
Build and run:
```bash
ollama create crow-9b -f Modelfile
ollama run crow-9b
```
For more creative outputs, raise `temperature` to `0.8`, raise `top_k` to `40`, and reduce `repeat_penalty` slightly to `1.02`.
### If You Hit a Thinking Loop
If the model starts looping inside `<think>` tags, repeating analysis, or stalling:
1. Stop generation.
2. Retry with a lower temperature, ideally `0.4` to `0.6`.
3. Increase repeat penalty slightly, for example from `1.05` to `1.08`.
4. Add an instruction like:
```text
Answer directly. Keep reasoning brief. Do not repeat analysis. Give the final answer.
```
5. Start a fresh chat if the current conversation has become unstable.
6. If the problem happens mostly on lower quants, move up to `Q8_0` or `F16`.
### If the Prompt Is Incomplete or the Output Cuts Off
If the prompt is incomplete or malformed:
1. Clean it before sending it.
2. Remove broken tags, clipped instructions, or half-finished bullets.
3. If only partial context is available, prepend:
```text
If context is missing, state your assumptions briefly and continue with the most likely intended task.
```
If the output cuts off:
1. Increase max tokens.
2. Ask:
```text
Continue from the last complete sentence. Do not restart or summarize. Continue exactly where you stopped.
```
3. If it still restarts instead of continuing, begin a fresh chat and resend the prompt with the desired output format stated more explicitly.
### Prompting Tips
- State the exact deliverable: list, table, code, rewrite, draft, critique, or decision.
- For coding, specify language, runtime, and expected input/output.
- For creative writing, specify tone, genre, constraints, and point of view up front.
- For high-control tasks, say whether you want concise output, full reasoning, or final answer only.
This was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth)
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth) |