Instructions to use cknuteson/mythic-voice-9b-MLX-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use cknuteson/mythic-voice-9b-MLX-4bit with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("cknuteson/mythic-voice-9b-MLX-4bit") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use cknuteson/mythic-voice-9b-MLX-4bit with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "cknuteson/mythic-voice-9b-MLX-4bit"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "cknuteson/mythic-voice-9b-MLX-4bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- MLX LM
How to use cknuteson/mythic-voice-9b-MLX-4bit with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "cknuteson/mythic-voice-9b-MLX-4bit"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "cknuteson/mythic-voice-9b-MLX-4bit" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cknuteson/mythic-voice-9b-MLX-4bit", "messages": [ {"role": "user", "content": "Hello"} ] }' - Hermes Agent
How to use cknuteson/mythic-voice-9b-MLX-4bit with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "cknuteson/mythic-voice-9b-MLX-4bit"
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 cknuteson/mythic-voice-9b-MLX-4bit
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use cknuteson/mythic-voice-9b-MLX-4bit with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "cknuteson/mythic-voice-9b-MLX-4bit"
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 "cknuteson/mythic-voice-9b-MLX-4bit" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
mythic-voice-9b-MLX-4bit
MLX 4-bit build of mythic-voice-9b for Apple silicon. Same model: Qwen3.5-9B trained CPT→SFT→DPO with persona-forge to speak in the elevated archaic register of the public-domain northern-European epic tradition (Malory, Morris, the Eddas, the Kalevala, KJV cadence), carry whatever persona you hand it, resist provocation, and tell stories. World-agnostic - you bring the persona, it brings the voice.
This is the artifact I actually run daily: ~18-19 tok/s and ~5.3 GB weights on an M3 MacBook Pro, loads in LM Studio or straight through mlx-lm:
pip install mlx-lm
mlx_lm.generate --model cknuteson/mythic-voice-9b-MLX-4bit \
--prompt "Speak, wanderer, of the old roads." --max-tokens 200
Quant: 4-bit affine, group size 64. The chat template hardcodes thinking OFF - some inference stacks force-inject a thinking toggle regardless of kwargs, so there is no toggle to fight with. eos_token_id includes <|im_end|> so turn-stopping works by default. Use a system prompt for the persona; bare prompts still answer in register.
For the GGUF (llama.cpp, LM Studio on Linux/Windows), training details, eval numbers, and the full provenance chain, see the main repo. The provenance.json here is the same report. Short version of the part that matters: bare weights pass 89% of a 176-probe leakage battery (~9x better than the untouched base model); behind persona-forge's GuardedTeacher runtime filter, 176/176. Personal use: just load it. Public product: wrap it.
No association with any modern author, estate, or trademark is claimed or implied. Pipeline: github.com/ctkadvisors/persona-forge.
Other sizes
There are now 4B and 2B builds trained on the identical blend - mythic-voice-4b (2.7 GB at q4_K_M) and mythic-voice-2b (1.3 GB), for embedding somewhere this will not fit. Voice holds at both; leakage resistance degrades as they shrink (0.892 to 0.847 to 0.818 bare), so wrap the small ones. All three: the mythic-voice collection.
- Downloads last month
- 49
4-bit