Text Generation
GGUF
GGUF
gemma4
gemma
google
quantized
cerebellum
imatrix
Mixture of Experts
3-bit
templatefix
conversational
Instructions to use deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF", filename="gemma-4-26B-A4B-it-cerebellum-v6.1-templatefix.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16 # Run inference directly in the terminal: llama-cli -hf deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16 # Run inference directly in the terminal: llama-cli -hf deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16 # Run inference directly in the terminal: ./llama-cli -hf deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16
Use Docker
docker model run hf.co/deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16
- LM Studio
- Jan
- vLLM
How to use deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16
- Ollama
How to use deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF with Ollama:
ollama run hf.co/deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16
- Unsloth Studio
How to use deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF to start chatting
- Pi
How to use deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16
Run Hermes
hermes
- Docker Model Runner
How to use deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF with Docker Model Runner:
docker model run hf.co/deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16
- Lemonade
How to use deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull deucebucket/Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF:F16
Run and chat with the model
lemonade run user.Gemma-4-26B-A4B-it-Cerebellum-v6-GGUF-F16
List all available models
lemonade list
docs: update templatefix test notes
Browse files
agentic_eval_20260522/README.md
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Gemma 4 26B Non-Coding Agentic Tool Evaluation - 2026-05-22
|
| 2 |
+
|
| 3 |
+
This directory records non-coding agentic tool-use tests for the Gemma 4 26B
|
| 4 |
+
Cerebellum templatefix releases.
|
| 5 |
+
|
| 6 |
+
The goal is narrow: prove OpenAI-style tool automation for assistant workflows,
|
| 7 |
+
not coding-agent performance. Coding-agent behavior in opencode is tracked
|
| 8 |
+
separately and is not treated as a clean release claim yet.
|
| 9 |
+
|
| 10 |
+
## Harness
|
| 11 |
+
|
| 12 |
+
Runtime:
|
| 13 |
+
|
| 14 |
+
- `llama-server`
|
| 15 |
+
- `--jinja`
|
| 16 |
+
- `--reasoning auto`
|
| 17 |
+
- request payload included `chat_template_kwargs: {"enable_thinking": false}`
|
| 18 |
+
- request payload included `thinking_budget_tokens: 0`
|
| 19 |
+
|
| 20 |
+
Mock tools:
|
| 21 |
+
|
| 22 |
+
- `list_calendar`
|
| 23 |
+
- `create_calendar_hold`
|
| 24 |
+
- `search_notes`
|
| 25 |
+
- `save_note`
|
| 26 |
+
- `add_task`
|
| 27 |
+
|
| 28 |
+
Tasks:
|
| 29 |
+
|
| 30 |
+
- Scheduling assistant: inspect calendar, find a Tuesday slot, create a hold.
|
| 31 |
+
- Release-note workflow: search internal notes, save a draft, create a follow-up
|
| 32 |
+
task.
|
| 33 |
+
- Creative-brief workflow: search style notes and save a production brief.
|
| 34 |
+
|
| 35 |
+
Pass criteria:
|
| 36 |
+
|
| 37 |
+
- Required tools are called.
|
| 38 |
+
- Tool arguments are valid JSON.
|
| 39 |
+
- No repeated search/tool loop.
|
| 40 |
+
- No template or thinking leakage in no-thinking mode.
|
| 41 |
+
- The scheduling task preserves the user-provided literal day instead of
|
| 42 |
+
inventing an ISO date.
|
| 43 |
+
|
| 44 |
+
## Results
|
| 45 |
+
|
| 46 |
+
Regular v6.1 templatefix:
|
| 47 |
+
|
| 48 |
+
- File: `regular_v6_1_noncoding_agentic_tools_strict_summary.json`
|
| 49 |
+
- Result: 3/3 clean pass.
|
| 50 |
+
- Passed cases: `schedule_strict`, `release_notes_strict`,
|
| 51 |
+
`creative_brief_strict`.
|
| 52 |
+
- Warnings: none.
|
| 53 |
+
- Failures: none.
|
| 54 |
+
|
| 55 |
+
Heretic v1.1 templatefix:
|
| 56 |
+
|
| 57 |
+
- File: `heretic_v1_1_noncoding_agentic_tools_strict_retry_summary.json`
|
| 58 |
+
- Result: 3/3 clean pass on strict retry.
|
| 59 |
+
- Passed cases: `schedule_strict`, `release_notes_strict`,
|
| 60 |
+
`creative_brief_strict`.
|
| 61 |
+
- Warnings: none on strict retry.
|
| 62 |
+
- Failures: none on strict retry.
|
| 63 |
+
|
| 64 |
+
The first Heretic permissive run demonstrated tool capability but had quality
|
| 65 |
+
warnings: it invented an ISO date for a Tuesday scheduling task and over-called
|
| 66 |
+
`search_notes`. The strict retry corrected those issues.
|
| 67 |
+
|
| 68 |
+
## Release Claim Supported
|
| 69 |
+
|
| 70 |
+
Supported:
|
| 71 |
+
|
| 72 |
+
- Non-coding OpenAI-compatible tool automation passed a strict three-task
|
| 73 |
+
harness.
|
| 74 |
+
- The model can plan over simple external state, call tools with valid JSON,
|
| 75 |
+
preserve user constraints, write notes, and create tasks.
|
| 76 |
+
|
| 77 |
+
Not supported by this directory:
|
| 78 |
+
|
| 79 |
+
- Proven coding-agent behavior.
|
| 80 |
+
- Fully autonomous agent behavior without human review.
|
| 81 |
+
- General MCP/opencode reliability.
|