Views
No views yet
empero-ai/Qwen3.5-9B-Claude-Code — A supervised fine-tune of empero-ai/Qwen3.5-9B-Claude-Opus-4.6-Distill on real Claude Code / Codex agentic sessions from the DataClaw dataset collection.<think> tags, calls tools with XML-style <tool_call> blocks.| Filename | Quant | Size | RAM Required | Quality |
|---|---|---|---|---|
Qwen3.5-9B-Claude-Code-Q2_K.gguf | Q2_K | ~3.6 GB | ~6 GB | Lowest — not recommended |
Qwen3.5-9B-Claude-Code-Q3_K_M.gguf | Q3_K_M | ~4.5 GB | ~7 GB | Low |
Qwen3.5-9B-Claude-Code-Q4_0.gguf | Q4_0 | ~5.2 GB | ~8 GB | Acceptable |
Qwen3.5-9B-Claude-Code-Q4_K_M.gguf | Q4_K_M | ~5.4 GB | ~8 GB | Recommended — best size/quality tradeoff |
Qwen3.5-9B-Claude-Code-Q5_K_M.gguf | Q5_K_M | ~6.4 GB | ~9 GB | High |
Qwen3.5-9B-Claude-Code-Q6_K.gguf | Q6_K | ~7.3 GB | ~10 GB | Very high |
Qwen3.5-9B-Claude-Code-Q8_0.gguf | Q8_0 | ~9.5 GB | ~12 GB | Near-lossless |
Qwen3.5-9B-Claude-Code-F16.gguf | F16 | ~18 GB | ~22 GB | Lossless |
Recommended:Q4_K_Mfor most users.Q5_K_MorQ6_Kif you have extra VRAM and want higher quality reasoning.
| Property | Value |
|---|---|
| Original model | empero-ai/Qwen3.5-9B-Claude-Code |
| Base model | empero-ai/Qwen3.5-9B-Claude-Opus-4.6-Distill |
| Fine-tune type | SFT (LoRA r=64/alpha=128, merged) |
| Parameters | 9B |
| Training data | DataClaw — 29 datasets of real Claude Code / Codex sessions |
| Context length | 4096 tokens |
| License | Apache 2.0 |
1# Basic inference
2./llama-cli \
3 -m Qwen3.5-9B-Claude-Code-Q4_K_M.gguf \
4 -n 1024 \
5 --temp 0.7 \
6 --top-p 0.9 \
7 -p "<|im_start|>system
8You are an expert AI coding assistant. You help users with software engineering tasks including writing code, debugging, refactoring, explaining code, and more. You think through problems carefully inside <think> tags before acting. You have access to tools like Read, Edit, Write, Bash, Grep, Glob, and others to interact with the user's codebase. You use tools when needed and provide clear, concise responses.<|im_end|>
9<|im_start|>user
10Read the file main.py and explain what it does.<|im_end|>
11<|im_start|>assistant
12"1# As an OpenAI-compatible server
2./llama-server \
3 -m Qwen3.5-9B-Claude-Code-Q4_K_M.gguf \
4 --host 0.0.0.0 \
5 --port 8080 \
6 -c 4096 \
7 -ngl 99Modelfile:FROM Qwen3.5-9B-Claude-Code-Q4_K_M.gguf
SYSTEM """You are an expert AI coding assistant. You help users with software engineering tasks including writing code, debugging, refactoring, explaining code, and more. You think through problems carefully inside <think> tags before acting. You have access to tools like Read, Edit, Write, Bash, Grep, Glob, and others to interact with the user's codebase. You use tools when needed and provide clear, concise responses. You show your reasoning process and use tools methodically to accomplish tasks."""
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER num_ctx 40961ollama create codeclawd -f Modelfile
2ollama run codeclawd.gguf file of your chosen quantizationYou are an expert AI coding assistant. You help users with software engineering tasks including writing code, debugging, refactoring, explaining code, and more. You think through problems carefully inside <think> tags before acting. You have access to tools like Read, Edit, Write, Bash, Grep, Glob, and others to interact with the user's codebase. You use tools when needed and provide clear, concise responses. You show your reasoning process and use tools methodically to accomplish tasks.0.7, top-p: 0.9, context: 4096user → <think>...</think> → <tool_call> → <tool_result> → response → repeat1<tool_call>
2<tool>Read</tool>
3<input>
4{"file_path": "/path/to/file.py"}
5</input>
6</tool_call>
7
8<tool_result>
9<tool>Read</tool>
10<output>
11... file contents ...
12</output>
13</tool_result>1<think>
2The user wants to refactor the auth module. I should first read the existing
3implementation before suggesting changes.
4</think>empero-ai/Qwen3.5-9B-Claude-Code