9 Downloads Updated 3 days ago
ollama run cmsmanhattan/JiRackTernaryGemma4-26b-q4
ollama launch claude --model cmsmanhattan/JiRackTernaryGemma4-26b-q4
ollama launch opencode --model cmsmanhattan/JiRackTernaryGemma4-26b-q4
ollama launch hermes --model cmsmanhattan/JiRackTernaryGemma4-26b-q4
ollama launch openclaw --model cmsmanhattan/JiRackTernaryGemma4-26b-q4
Local reasoning / tool-calling model from CMS Manhattan, packaged for Ollama. Standard llama.cpp quantizations of google/gemma-4-26B-A4B-it.
Mixture-of-Experts: ~25.2B total parameters, only ~3.8B active per token (128 experts + 1 shared expert, 8 active per token, 30 layers). Because so few weights are touched per token, it runs usably even without a GPU.
num_ctx 8192, raise it if you have the RAM)More models: https://huggingface.co/CMSManhattan
ollama run cmsmanhattan/JiRackTernaryGemma4-26b-q4:latest
Smaller:
ollama run cmsmanhattan/JiRackTernaryGemma4-26b-q3:latest
Q5 and Q6 planned; not yet published for this repo.
curl http://localhost:11434/api/chat -d '{
"model": "cmsmanhattan/JiRackTernaryGemma4-26b-q4:latest",
"messages": [{"role": "user", "content": "Plan a 3-step tool-using workflow to reconcile two ledgers."}]
}'
from ollama import chat
response = chat(
model="cmsmanhattan/JiRackTernaryGemma4-26b-q4:latest",
messages=[{"role": "user", "content": "Explain why local tool calling matters in finance agents."}],
)
print(response.message.content)
Intel Xeon E5-2697 v2 (Ivy Bridge, 2013, no AVX2), 16 threads, no GPU, Q4_K_M:
| tokens/s | |
|---|---|
| Prompt processing | ~30 |
| Generation | ~9 |
A decade-old server CPU gives interactive speed — the MoE design keeps the per-token compute close to a 4B dense model.
Hosted APIs can change or retire a model overnight. If your agent posts, closes, or certifies money, a broken tool call is not a chatbot mistake — it is books, controls, and audit trail. This build is for teams that want: local inference, stable tool calling, reasoning traces you can keep on-prem.
Treat cloud models as a prototype surface. Own the inference for anything that moves or certifies money.
| Model name | Quantization | Size | Use |
|---|---|---|---|
cmsmanhattan/JiRackTernaryGemma4-26b-q4:latest |
Q4_K_M | 16 GB | Best balance (recommended) |
cmsmanhattan/JiRackTernaryGemma4-26b-q3:latest |
Q3_K_M | 13 GB | Tight RAM / VRAM |
Q5 and Q6 not yet published for this repo.
This release is a standard post-training quantization (llama.cpp k-quants) of the original weights, without additional training. It is not an official Google checkpoint. A JiRack ternary (BitNet b1.58) QAT build of this model is in progress and will be published separately.
CMS Manhattan https://huggingface.co/CMSManhattan https://ollama.com/cmsmanhattan