Views
No views yet
<think> reasoning tags.| File | Size | Description |
|---|---|---|
| crewai-qwen3-4b-thinking-v2-q4_k_m.gguf | 2.4 GB | Best balance of size/quality |
| crewai-qwen3-4b-thinking-v2-q8_0.gguf | 4.0 GB | Higher quality |
| File | Size |
|---|---|
| qwen3-4b.Q4_K_M.gguf | 2.4 GB |
| qwen3-4b.Q5_K_M.gguf | 2.7 GB |
| qwen3-4b.Q8_0.gguf | 4.0 GB |
<think> tags for reasoning1# Download the model
2wget https://huggingface.co/rchow93/crewai-qwen3-4b-gguf/resolve/main/crewai-qwen3-4b-thinking-v2-q4_k_m.gguf
3
4# Create Modelfile
5cat > Modelfile << EOF
6FROM ./crewai-qwen3-4b-thinking-v2-q4_k_m.gguf
7
8TEMPLATE """{{- if .System }}
9<|im_start|>system
10{{ .System }}<|im_end|>
11{{ end }}
12<|im_start|>user
13{{ .Prompt }}<|im_end|>
14<|im_start|>assistant
15"""
16
17SYSTEM """You are a CrewAI code generation expert."""
18
19PARAMETER temperature 0.7
20PARAMETER num_ctx 8192
21PARAMETER stop "<|im_end|>"
22EOF
23
24# Create and run
25ollama create crewai-qwen3-4b -f Modelfile
26ollama run crewai-qwen3-4b