Views
No views yet
IQ4_XS, IQ4_NL, Q4_K_M, Q4_K_S)| File Name | Size | Quant Method | Description |
|---|---|---|---|
XYZ-Aquila-mini-IQ4_XS.gguf | ~18.8 GB | IQ4_XS | 4-bit importance matrix (extra small). Optimized for low VRAM while retaining reasoning quality. |
XYZ-Aquila-mini-IQ4_NL.gguf | ~19.9 GB | IQ4_NL | 4-bit importance matrix (non-linear). Improved non-linear weight distribution for accuracy. |
XYZ-Aquila-mini-Q4_K_M.gguf | ~21.4 GB | Q4_K_M | Standard 4-bit K-quantization (medium). Recommended general-purpose balance of speed and quality. |
XYZ-Aquila-mini-Q4_K_S.gguf | ~20.6 GB | Q4_K_S | Standard 4-bit K-quantization (small). Slightly smaller file size. |
llama.cppllama-server to expose an OpenAI-compatible API that supports tool calling.1# Clone and build llama.cpp
2git clone [https://github.com/ggml-org/llama.cpp](https://github.com/ggml-org/llama.cpp)
3cd llama.cpp && cmake -B build && cmake --build build -j
4
5# Download the recommended model from this repository
6huggingface-cli download Abiray/XYZ-Aquila-mini-IQ4-GGUF XYZ-Aquila-mini-Q4_K_M.gguf --local-dir .
7
8# Serve the model (adjust context length `-c` based on your available RAM/VRAM)
9./build/bin/llama-server \
10 -m XYZ-Aquila-mini-Q4_K_M.gguf \
11 --port 8000 \
12 -c 32768 \
13 -ngl 99