Views
No views yet

<think> reasoning captured from actual Claude Fable 5 and GPT-5.5 agent work, not synthetic Q&A. Fits comfortably on any M-series Mac.pip install mlx-lm1mlx_lm.generate --model AnkitAI/Parable-Qwen3-4B-Claude-Fable-5-MLX-4bit \
2 --prompt "Write a Python function that retries an HTTP request with exponential backoff."1from mlx_lm import load, generate
2
3model, tokenizer = load("AnkitAI/Parable-Qwen3-4B-Claude-Fable-5-MLX-4bit")
4messages = [{"role": "user", "content": "Write a Python function that retries an HTTP request with exponential backoff."}]
5prompt = tokenizer.apply_chat_template(messages, add_generation_prompt=True)
6print(generate(model, tokenizer, prompt=prompt, max_tokens=512))| base | v3.1 | |
|---|---|---|
| HumanEval+ | 0.616 | 0.683 |
| MBPP+ | 0.603 | 0.638 |
| format | repo | for |
|---|---|---|
| GGUF | Parable-Qwen3-4B-Claude-Fable-5-GGUF | llama.cpp, LM Studio, Ollama |
| MLX 8-bit | Parable-Qwen3-4B-Claude-Fable-5-MLX-8bit | Apple Silicon, closer to source |
| safetensors | Parable-Qwen3-4B-Claude-Fable-5 | transformers |