Ornith-1.0-9B is an
agentic coding & reasoning model from the DeepReinforce team, post-trained on top of Qwen 3.5 (9B-Dense). It is a
reasoning model: each assistant turn opens with a
<think> … </think> block before the final answer. Recommended sampling:
temperature=0.6, top_p=0.95, top_k=20.
Ornith's headline benchmarks (Terminal-Bench 2.1, SWE-bench Verified/Pro/Multilingual, NL2Repo, ClawEval, SWE Atlas) are agentic harnesses — they need Docker, a large GPU, and long multi-turn rollouts at up to 256K context, so they are not reproducible on a Mac. As an on-device check that quantization preserves coding ability, this card reports HumanEval pass@1 (30 problems, 4096-token budget, with reasoning enabled and <think> stripped before grading). Both MX FP4 and MX FP8 score 93.3% (28/30) with 100% syntactic validity — i.e. 4-bit quantization is effectively lossless on this proxy. HumanEval is a narrow code-generation probe and is not a substitute for the agentic evaluations on the base model card.
Evaluated on Apple M5 Pro with MLX. Model loaded once; performance and quality measured in a single pass.
1from mlx_lm import load, generate
2
3model, tokenizer = load("sahilchachra/ornith-1.0-9b-mxfp8-mlx")
4response = generate(model, tokenizer, prompt="Your prompt here", max_tokens=256, verbose=True)
See
deepreinforce-ai/Ornith-1.0-9B for full model details and intended use.