Instructions to use murtsu/capnstop with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use murtsu/capnstop with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf murtsu/capnstop # Run inference directly in the terminal: llama cli -hf murtsu/capnstop
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf murtsu/capnstop # Run inference directly in the terminal: llama cli -hf murtsu/capnstop
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 murtsu/capnstop # Run inference directly in the terminal: ./llama-cli -hf murtsu/capnstop
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 murtsu/capnstop # Run inference directly in the terminal: ./build/bin/llama-cli -hf murtsu/capnstop
Use Docker
docker model run hf.co/murtsu/capnstop
- LM Studio
- Jan
- Ollama
How to use murtsu/capnstop with Ollama:
ollama run hf.co/murtsu/capnstop
- Unsloth Desktop
- Pi
How to use murtsu/capnstop with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf murtsu/capnstop
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "murtsu/capnstop" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use murtsu/capnstop with Docker Model Runner:
docker model run hf.co/murtsu/capnstop
- Lemonade
How to use murtsu/capnstop with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull murtsu/capnstop
Run and chat with the model
lemonade run user.capnstop-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use murtsu/capnstop with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf murtsu/capnstop
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 murtsu/capnstop
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use murtsu/capnstop with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf murtsu/capnstop
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "murtsu/capnstop" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
capnstop
murtsu/capnstop
A Granite 4.2 model with a system prompt that forces effort budgeting instead of letting the model pad every answer to look thorough.
What it does
Most models treat length as a proxy for quality. capnstop treats extra tokens after a verified-correct answer as a cost, not a bonus. The system prompt runs five rules on every task:
Decompose โ figure out the actual sub-goals before answering, and weight effort toward the ones that are hard or load-bearing, not the trivial ones. Verify before finalizing โ each sub-goal gets checked against a concrete completion criterion before it counts as done. Stop once verified โ no restating the answer, no unrequested caveats, no "to be thorough" padding. Say when the budget runs out โ if something can't be verified, the model says so and gives a confidence level instead of bluffing. Switch, don't hammer โ a stuck sub-goal gets a different angle, not five more attempts at the same approach.
This is Marko Tahvanainen's Budgeted Reward Allocation (BRA) framework, applied through prompting rather than training.
Base model
Built on Granite 4.2, which supports switchable thinking modes (think/nothink) per session in Ollama.
Parameters Parameter Value temperature 0.6 top_p 0.95 repeat_penalty 1.15
Lower temperature and a raised repeat penalty, tuned to keep output terse rather than exploratory.
Usage ollama run murtsu/capnstop What to expect
Shorter answers than the base model on tasks where the base model would normally elaborate. When capnstop can't verify something, it flags that instead of producing confident filler. If a sub-goal resists a few attempts, it changes approach rather than repeating itself, and reports what's blocking it if that fails too.
License
Apache 2.0.
- Downloads last month
- -
We're not able to determine the quantization variants.