Zyphra shipped ZAYA1-8B on June 19, 2026 through Hugging Face and its own Zyphra homepage. The release is an 8B total parameter Mixture-of-Experts reasoning model under the MIT license. It supports a 128,000 token context window and uses about 2B active parameters per forward pass. That design lets developers run a reasoning model on a single 24GB GPU instead of renting a cloud API. Zyphra published the weights, configs, and a small set of evaluation numbers. The model targets local math, code, and agentic tool use. The launch is a direct response to rising API costs and free tier limits.

Zyphra is the company behind the Zamba and Zaya open-weight model families. The team has built small model efficiency for on-device and single-GPU inference over multiple releases. ZAYA1-8B continues that path with a Mixture-of-Experts architecture that keeps active compute low. The release appears on Hugging Face as safetensors weights, tokenizer files, and model configs. No proprietary API key is required to download the weights. Users can load the model in common inference stacks such as vLLM, llama.cpp, and Transformers after conversion.

The release matters because most reasoning models are either closed or too large for local use. ZAYA1-8B pairs a small total parameter count with expert routing to reduce the cost of each token. It also carries a permissive MIT license, which allows commercial use, modification, and redistribution without royalty. That lowers the barrier for startups and solo developers who need a reasoning engine that cannot send private data to a cloud API. Early benchmarks place it close to models three to five times its active size. You can see more in our guide to best open-source LLM models in 2026.

Zyphra announced the model on June 19, 2026. The timing lines up with a broader open-source push after a wave of free tier cuts and API pricing shifts across major providers. Developers have been looking for local alternatives since closed model access became less predictable. ZAYA1-8B offers one direct answer: a permissive, local reasoning model that does not depend on usage-based billing. That matters for anyone watching AI free tier limits get tougher in June 2026.

How Do the Top Options Compare?

Model Best For Total Params Active Params License Context GPQA Diamond
ZAYA1-8B Local single-GPU reasoning 8B 2B MIT 128k 62.3
DeepSeek V4 Large batch research reasoning 1.6T 38B DeepSeek Model License 256k 78.1
Qwen 3.6 Apache commercial coding 32B 6B Apache 2.0 128k 70.5
Kimi K2 Small team coding tools 7B 7B Apache 2.0 256k 58.9

Benchmarks vary by task and prompting. Active parameter counts are per token for mixture-of-experts models. ZAYA1-8B GPQA is from Zyphra’s release post, not an independent audit.

1. ZAYA1-8B , Best for local and on-device reasoning

ZAYA1-8B is the newest release from Zyphra and the first in the Zaya line to focus heavily on reasoning. The model uses a Mixture-of-Experts design with 8B total parameters and about 2B active parameters per token. That means a single consumer GPU can serve the model with less memory pressure than a dense 8B model would create in many cases. The 128k context window supports long code files, multi-document analysis, and agentic tool logs. The MIT license covers weights, configs, and tokenizer files. You can read more about the model in our Zaya1-8B release coverage.

Zyphra reports GPQA Diamond at 62.3, AIME 2025 at 64.1, and MATH-500 at 91.8. Those numbers are not best in class but they are strong for a model this small. HumanEval sits at 88.2, which means it can handle common Python scripts and small agent loops without a remote call. The model also includes a chat template for reasoning traces. That template lets the model produce a thinking block before the final answer, similar to closed reasoning models. You can find setup notes in our open-source reasoning model guide.

Local deployment is straightforward. Use a 4-bit GGUF quant for a 5.4GB file that runs inside Ollama or llama.cpp. Full precision weights require about 15GB of storage. A 24GB RTX 4090 can run the model at usable speed. For agent workloads, the model supports tool calling through function call prompts. The main limitation is speed at long context because the model still processes the full prompt even with sparse expert activation. But for a single user or a small team, ZAYA1-8B removes the need to pay per token.

Key strengths:

  • ✅ Small active parameter count keeps GPU memory low
  • ✅ MIT license allows commercial use and modification
  • ✅ 128k context handles long code and document tasks
  • ✅ Runs in Ollama, llama.cpp, vLLM, and Transformers
  • ✅ Reasoning trace template supports transparent outputs
  • ❌ No independent benchmark audit yet
  • ❌ Slower at very long context compared to cloud APIs
  • ❌ Small active model may miss some multi-step reasoning depth

Who it’s for: Developers who want a local reasoning model for math, code, and agentic tasks without per-token API costs.

2. DeepSeek V4 , Best for large batch research reasoning

DeepSeek V4 is the largest open-weight reasoning model in this comparison. It uses a 1.6T total parameter Mixture-of-Experts design with about 38B active parameters per token. The DeepSeek Model License is permissive but not identical to MIT. It allows commercial use and fine-tuning but keeps some restrictions on using outputs to train competing closed models. The 256k context window is double that of ZAYA1-8B. That makes V4 better for massive code bases and long research documents. Read our DeepSeek V4 open-source coverage.

DeepSeek reports GPQA Diamond near 78.1, much higher than ZAYA1-8B. That gap is expected because V4 activates 19 times more parameters per token. But that advantage costs hardware. Full precision V4 weights need multiple high-end GPUs or a large server. Even quantized versions do not fit comfortably on a single consumer GPU for production use. So the model is best for research labs, enterprises, and teams with GPU clusters.

The release shows what happens when scale is not constrained. DeepSeek V4 handles harder reasoning problems, better tool use, and longer context. The downside is operational complexity. You need to manage sharding, quantization, and throughput. For a solo developer, ZAYA1-8B is far easier to run. For a team that already has A100 or H100 nodes, DeepSeek V4 is the stronger model.

Key strengths:

  • ✅ Large active parameter count improves hard reasoning tasks
  • ✅ 256k context handles very long documents
  • ✅ Open weights with commercial licensing
  • ✅ Strong community support for inference stacks
  • ❌ Requires multiple high-end GPUs for full precision
  • ❌ DeepSeek Model License has some usage restrictions
  • ❌ Higher operational cost compared to small local models

Who it’s for: Research teams and enterprises with GPU clusters that need the strongest open reasoning performance.

3. Qwen 3.6 , Best for Apache commercial coding

Qwen 3.6 from Alibaba Cloud is a 32B total parameter Mixture-of-Experts model with 6B active parameters. It uses the Apache 2.0 license, which is the most permissive license in this set. No usage restrictions, no share-alike terms, no royalty. That makes Qwen 3.6 the safe choice for companies that want to ship products without legal review. The model has a 128k context window and strong coding results. Get the details in our Qwen 3.6 Apache release post.

Qwen 3.6 reports GPQA Diamond at 70.5 and HumanEval around 91. It beats ZAYA1-8B on pure coding but needs more compute. A single 24GB GPU can run a 4-bit quant, but it uses more memory and runs slower than ZAYA1-8B. For code generation, the extra parameters help with syntax, debugging, and long function chains. The model also supports function calling and agentic workflows.

The main trade is size. Full precision weights need about 64GB of storage. Quantized versions still need more RAM than ZAYA1-8B. But the Apache license and coding strength make Qwen 3.6 hard to ignore for commercial deployments. If you plan to fine-tune and redistribute a reasoning model, Qwen 3.6 is often the safer legal bet.

Key strengths:

  • ✅ Apache 2.0 license is the most permissive
  • ✅ Strong coding and debugging outputs
  • ✅ 32B total parameters with low active cost
  • ✅ Large multilingual training data
  • ❌ Larger memory footprint than ZAYA1-8B
  • ❌ Slower on single consumer GPUs
  • ❌ 128k context is not as long as DeepSeek V4

Who it’s for: Commercial teams that need a permissive license and strong coding model without legal review.

4. Kimi K2 , Best for small team coding workflows

Moonshot AI released Kimi K2 as a 7B dense coding model under a modified Apache license. The model targets agentic coding and tool use. It has a 256k context window, which helps with long repos and multi-file edits. Unlike the other models here, K2 is dense, so all 7B parameters are active for every token. That makes it predictable but slightly less efficient than a Mixture-of-Experts design at the same total size. See our Kimi K2 release note.

Kimi K2 reports GPQA Diamond at 58.9, lower than ZAYA1-8B. But it wins on coding specific tasks like SWE-bench agent loops and tool formatting. The 256k context means the model can absorb an entire repository in one prompt. For solo developers using VS Code or a shell agent, that is a practical advantage. The model runs in Ollama and llama.cpp with 4-bit quants under 5GB.

The modified Apache license allows commercial use but includes some redistribution terms. That is more restrictive than MIT in edge cases. Still, K2 is a solid choice when coding is the main workload and you need long context. For general reasoning outside code, ZAYA1-8B does better on math and science benchmarks. The two models are close enough that your hardware and task should decide.

Key strengths:

  • ✅ 256k context handles whole repository prompts
  • ✅ Strong tool call formatting for coding agents
  • ✅ Small 7B dense model runs on laptops
  • ✅ Good Ollama and llama.cpp support
  • ❌ Lower general reasoning scores than ZAYA1-8B
  • ❌ Dense architecture uses more compute per token than MoE
  • ❌ Modified Apache license adds redistribution terms

Who it’s for: Solo developers and small teams that need long context coding agents on modest hardware.

Frequently Asked Questions

What is ZAYA1-8B?

ZAYA1-8B is an 8B total parameter Mixture-of-Experts reasoning model from Zyphra. It was released on June 19, 2026 under the MIT license with a 128k context window and about 2B active parameters per token. It targets local math, code, and agentic tasks.

Is ZAYA1-8B free?

Yes. The weights, tokenizer, and configs are free to download from Hugging Face under the MIT license. You can use the model commercially, modify it, and redistribute it without paying Zyphra. You still pay for your own hardware or cloud compute.

What are ZAYA1-8B benchmark scores?

Zyphra reports GPQA Diamond at 62.3, AIME 2025 at 64.1, MATH-500 at 91.8, and HumanEval at 88.2. These numbers have not been independently audited. They are strong for an 8B model but below larger open models like DeepSeek V4.

Can I run ZAYA1-8B on a laptop?

The 4-bit GGUF quant is about 5.4GB and can run on many laptops with 16GB of RAM through Ollama or llama.cpp. Full precision weights need about 15GB of storage and a GPU with at least 24GB for decent speed. Long context will reduce tokens per second.

How does ZAYA1-8B compare to closed models?

ZAYA1-8B does not beat frontier closed models on hard reasoning. But it is private, free to use, and runs locally. For many math and code tasks, it is good enough to replace a cloud API and avoids per-token fees.

What license does ZAYA1-8B use?

ZAYA1-8B uses the MIT license. That is a permissive license with no copyleft requirements and no usage restrictions. You can fine-tune, merge, sell, or deploy the model in a product. You should still include the original license notice.

What Should You Remember?

  • ZAYA1-8B released: Zyphra shipped the 8B Mixture-of-Experts reasoning model on June 19, 2026 under MIT.
  • Local reasoning: The model uses about 2B active parameters per token, so one 24GB GPU can serve it.
  • 128k context: Long context enables repo level coding and multi-document analysis.
  • Benchmarks: Zyphra reports GPQA 62.3, AIME 64.1, MATH-500 91.8, and HumanEval 88.2.
  • MIT license: You can use, modify, and sell the model without royalty.
  • Hardware choice: Use a 4-bit GGUF near 5.4GB for laptops or full weights near 15GB for GPU servers.
  • Comparison: DeepSeek V4 scores higher but needs far more infrastructure; Qwen 3.6 has Apache 2.0; Kimi K2 offers 256k context for coding.

Free AI News is an independent editorial publication. Information about AI pricing, free-tier limits, and features changes frequently and may become outdated. Always verify current details through the vendor’s official pages. Affiliate links may earn a commission at no cost to you, and never affect our reporting.