Views
No views yet
| Filename | Size | VRAM Req | Quality | Best For |
|---|---|---|---|---|
aura-7b-f16.gguf | ~15.2 GB | ~16 GB | ⭐⭐⭐⭐⭐ | Maximum quality, high VRAM systems |
aura-7b-q8_0.gguf | ~8.1 GB | ~10 GB | ⭐⭐⭐⭐⭐ | Near-lossless quality |
aura-7b-q6_k.gguf | ~6.25 GB | ~8 GB | ⭐⭐⭐⭐ | Excellent quality, sweet spot for 8GB GPUs |
aura-7b-q4_k_m.gguf | ~4.68 GB | ~6 GB | ⭐⭐⭐⭐ | 🏆 Recommended for most users (MacBook Air, RTX 3060/4060) |
aura-7b-q2_k.gguf | ~3.02 GB | ~4 GB | ⭐⭐⭐ | Minimum RAM / CPU-only execution |
💡 Tip: If you have an 8GB GPU,Q6_Kwill fit perfectly while offloading all layers. If you have 6GB or less, useQ4_K_M.
1./llama-cli \
2 -m aura-7b-q4_k_m.gguf \
3 -p "You are Aura, a helpful agentic AI assistant created by Featherlabs." \
4 --ctx-size 8192 \
5 -b 512 \
6 -n -1 \
7 -i --color-ngl 99 to offload all layers to your GPU if supported)Modelfile in the same directory as the GGUF:1FROM ./aura-7b-q4_k_m.gguf
2
3# Set the system prompt
4SYSTEM "You are Aura, a helpful agentic AI assistant created by Featherlabs."
5
6# Set standard parameters
7PARAMETER num_ctx 8192
8PARAMETER temperature 0.7
9PARAMETER top_p 0.9
10
11# The chat template is usually auto-detected for Qwen2, but you can explicitly set it if needed
12TEMPLATE """{{ if .System }}<|im_start|>system
13{{ .System }}<|im_end|>
14{{ end }}{{ if .Prompt }}<|im_start|>user
15{{ .Prompt }}<|im_end|>
16{{ end }}<|im_start|>assistant
17{{ .Response }}<|im_end|>
18"""1ollama create aura-7b -f Modelfile
2ollama run aura-7bFeatherlabs/Aura-7b-GGUF (or drag and drop the .gguf file).Q4_K_M).| Property | Value |
|---|---|
| Base Model | Featherlabs/Aura-7b |
| Architecture | Qwen2 |
| Parameters | ~8B |
| Context length | 8192 tokens |
| Quantization tool | llama.cpp |
| Format | GGUF (v3) |
BF16 weights for fine-tuning, training, or deployment in production clusters (vLLM, TGI, SGLang):