Views
No views yet
<|im_start|>user). This was traced to a mismatch between the base Gemma templates and the model's SFT format. The industry-standard ChatML Jinja2 template is now permanently baked into the GGUF metadata, allowing standard engines (and Ollama) to automatically parse the conversational stops natively.<image|> and <audio|> generation hallucination bug has been permanently eradicated via the Adèlic engine and Hugging Face generation configurations.llama.cpp that features the Adèlic KV Condenser.| Filename | Format | Size | Recommended For |
|---|---|---|---|
adelic-gemma4-12b-Q6_K.gguf | Q6_K | ~9.8 GB | 16GB VRAM GPUs (RTX 4080, T4, etc.) |
adelic-gemma4-12b-patched.gguf | BF16/F16 | ~24 GB | 24GB+ VRAM environments (A100, RTX 4090) |
llama.cpp. Standard builds of llama.cpp will not have the required CUDA kernels for the infinite context window.1# Clone the Adelic fork
2git clone -b feature/gemma4-adelic https://github.com/sneed-and-feed/llama.cpp.git
3cd llama.cpp
4
5# Build with CUDA support (Includes both CLI and Server endpoints)
6cmake -B build -DGGML_CUDA=ON
7cmake --build build --config Release -j 4 --target llama-cli --target llama-server1./build/bin/llama-cli \
2 -m /path/to/adelic-gemma4-12b-Q6_K.gguf \
3 -n 512 \
4 -c 4096 \
5 -ngl 999 \
6 -p "Explain the concept of quantum computing to a 5 year old:" \
7 --color on1./build/bin/llama-server \
2 -m /path/to/adelic-gemma4-12b-Q6_K.gguf \
3 -c 4096 \
4 -ngl 999 \
5 --port 8080💡 Pro-Tip: Forcing the Reasoning Block If you notice the model is instantly closing its own reasoning block (outputting<|channel>thoughtfollowed immediately by<channel|>), you can physically force it to "think" by pre-filling the assistant's response.Simply append<|channel>thought\nto the very end of your prompt! This drops the engine directly into the reasoning state, forcing it to generate logic tokens before answering.