AIAny
AI Model2026
Icon for item

Ornith-1.5-35B-A3B-GGUF

GGUF build of Ornith-1.5's 35B mixture-of-experts model (A3B) for local inference — activates ~3B params per token, supports up to 262,144 tokens, emits separate reasoning traces and OpenAI-style tool calls, optimized for agentic coding and long-context use cases.

Introduction

Long agentic coding workflows need models that (1) call tools reliably, (2) expose internal reasoning traces safely, and (3) handle very long contexts. Ornith-1.5-35B-A3B-GGUF packages a 35B mixture-of-experts checkpoint into a GGUF build designed for local serving; its training emphasized a self-improvement loop that jointly optimizes task generation, scaffold construction, and solution rollouts, producing strong agentic and coding performance in the authors' evaluations.

Key Capabilities
  • Long-context support: native context up to 262,144 tokens (authors validate YaRN rope-scaling to extend toward ~1M tokens). So what: you can run retrieval-augmented or multi-file code reasoning without chopping inputs into many short windows.
  • Mixture-of-experts economics: ~35B total params but only ~3B activated per token (A3B configuration). So what: throughput/latency behave like a ~3B model while memory and storage must accommodate the full expert set.
  • Reasoning + tool-calling: model emits a separate <think> trace and well-formed function/tool-call blocks parsed into OpenAI-style tool_calls. So what: integrates cleanly with agent frameworks and lets servers surface chain-of-thought separately from final answers.
  • Agentic coding focus and benchmark results: authors report sizable gains on Terminal-Bench, SWE-bench, NL2Repo and agentic benchmarks versus several dense peers. So what: a strong candidate when you need automated code editing, repo understanding, or multi-step tool orchestration locally.
Who it's for and tradeoffs

Great fit if you run local or private agentic coding workloads that need long context windows, explicit tool orchestration, and isolated local inference (GGUF/llama.cpp/vLLM paths). Look elsewhere if you lack large GPU memory: MoE models require all experts resident (authors recommend multi-80GB GPUs) and impose higher memory/storage costs than similarly-sized dense models. Also note the published benchmark numbers are the authors' reports; independent reproduction may vary and quantized GGUF builds trade a small amount of fidelity for much smaller disk footprints.

Where it fits

Compared to dense 31–35B models, Ornith-1.5-35B-A3B targets agentic coding and tool use with an MoE cost/performance tradeoff — lower activation footprint per token but higher total memory. If you need compact, single-GPU deployment with minimal memory, a smaller dense model or heavily quantized build may be easier; if you need scalable agentic performance and long context, Ornith's MoE design is compelling.

More Items

Hugging Face
AI Model2026

Converts raw ASR transcripts into clean written text: adds punctuation and capitalization, expands spoken numbers/dates/times/currencies/emails, removes fillers and resolves self-corrections. Fine-tuned from Qwen3-0.6B (≈0.6B params), 94.8% token accuracy on a 7,519-case English test set; designed for CPU/edge deployment and deterministic post-processing.

Hugging Face
AI Model2026

An uncensored, weight-modified variant of Qwen3.8-27B that surgically removes the model's refusal directions to produce 0% refusals while aiming to preserve or improve capability. Uses complementary abliteration blending (SVD + LEACE blend) and ships with recommended greedy inference settings; intended for AI-safety research and red‑teaming, not for causing harm.

Hugging Face
AI Model2026

A 35B mixture-of-experts LLM tuned for agentic coding and end-to-end self-improvement: it jointly generates tasks, scaffolds, and solution rollouts. Activates ~3B params/token, supports 256K context (extendable), and emits chain-of-thought plus OpenAI-style tool calls.