Laguna S 2.1 is Poolside's open-weight coding model, released July 21, 2026 with weights on Hugging Face the same day. It pairs a 118B-total / 8B-active Mixture-of-Experts architecture with a 1M-token context window and native interleaved reasoning, targeting agentic coding and long-horizon work. Under the OpenMDW-1.1 license it is free for commercial and non-commercial use, and it sits in the Laguna family between Laguna XS 2.1 (33B-A3B) and Laguna M.1 (225B-A23B).
Model Specifications
| Specification | Laguna S 2.1 |
|---|---|
| Parameters | 118B total / 8B active per token (MoE) |
| Experts | 256 routed experts (top-10) + 1 shared expert, token-choice router with softplus gating |
| Layers | 48 (12 global attention, 36 sliding-window attention, window 512) |
| Attention | Grouped-query attention, 8 KV heads, head dim 128 |
| Context window | 1,048,576 tokens in thinking and no-thinking modes |
| Vocabulary | 100,352 tokens, text-to-text only (no vision) |
| Training | 30T tokens, in-house; start of training to launch in under 9 weeks |
| License | OpenMDW-1.1 (free commercial and non-commercial use) |
Key Features
- Native interleaved reasoning: Thinking is woven between tool calls and controlled per request with
enable_thinking. Reasoning runs either off or max; there are no low, medium, or high tiers. - 1M context everywhere: The full 1,048,576-token window is available in both thinking and no-thinking modes, so entire repositories and long agent traces fit in one session.
- Day-one open weights: BF16, FP8, INT4, NVFP4, GGUF, and MLX conversions shipped on Hugging Face at launch, plus DFlash draft models for speculative decoding. The repo has reached roughly 119K downloads and 969 likes.
- Runs on one workstation: The model fits and runs on a single NVIDIA DGX Spark with 128GB unified memory.
- Broad serving stack: Poolside's
poolCLI, vLLM, SGLang, Ollama, llama.cpp, MLX, and TensorRT-LLM all run it.
Use Cases
- Agentic coding: Built for multi-step tool use, terminal work, and repo-scale edits. On Terminal-Bench 2.1 and SWE-Bench Pro it matches or exceeds models several times its size, including DeepSeek-V4-Flash, NVIDIA Nemotron 3 Ultra, and Thinking Machines Inkling.
- Long-horizon tasks: The 1M window plus interleaved thinking keeps long debugging and refactoring sessions coherent across many tool calls.
- Local deployment: OpenMDW-1.1 weights and 4-bit quantizations make self-hosting on a single DGX Spark practical for privacy-sensitive codebases.
Pricing
Weights are free under OpenMDW-1.1. Hosted access options:
| Provider | Offer |
|---|---|
| Poolside API | Hosted access direct from Poolside |
| OpenRouter (free) | Free endpoint, 256K context |
| OpenRouter (dedicated) | 1M context at $0.10 input / $0.20 output / $0.01 cache-read per 1M tokens |
| Baseten | Model Library and Frontier Gateway |
| Vercel AI Gateway | Available as a hosted option |
Advantages vs Competitors
- Efficiency per active parameter: 8B active parameters competing with far larger models on Terminal-Bench 2.1 and SWE-Bench Pro.
- Truly open for business: OpenMDW-1.1 permits commercial use without a separate agreement, and every major quantization shipped on day one.
- Local-first at 1M context: Few open models combine a 1M window with single-workstation deployment on a DGX Spark.
Getting Started
- Try hosted: OpenRouter's free endpoint (256K context) is the fastest way to test it; the Poolside API and Vercel AI Gateway also carry it.
- Download weights: Grab BF16, FP8, INT4, NVFP4, GGUF, or MLX builds from Hugging Face.
- Serve locally: Run with the
poolCLI, vLLM, SGLang, Ollama, llama.cpp, MLX, or TensorRT-LLM. - Control reasoning: Set
enable_thinkingper request; thinking runs at max when enabled.
FAQ
Is Laguna S 2.1 free for commercial use?
Yes. The OpenMDW-1.1 license covers commercial and non-commercial use, and OpenRouter additionally offers a free hosted endpoint with a 256K context.
What hardware do I need to run it locally?
A single NVIDIA DGX Spark (128GB unified memory) runs the model, and INT4, NVFP4, or GGUF builds reduce the footprint further through llama.cpp, MLX, or TensorRT-LLM.
Does it support images or vision?
No. Laguna S 2.1 is text-to-text only, with a 100,352-token vocabulary and no vision encoder.
Alternatives
- DeepSeek V4 Flash: A larger 284B-A13B open agentic model with MIT weights and cheap API pricing.
- Qwen3.8-27B: A dense 27B Apache 2.0 model for simpler local deployments.
Tips
- Turn thinking on for hard tasks:
enable_thinkingruns at max strength and interleaves reasoning between tool calls, which is where the agentic gains come from. - Use the DFlash draft models: Speculative decoding with the official DFlash drafters speeds up local serving noticeably.
- Exploit the full window: With 1M tokens in both modes, keep whole repos and full tool history in context instead of chunking.
Conclusion
Laguna S 2.1 is one of the most practical open coding releases of 2026: 118B MoE with only 8B active, a true 1M-token context, day-one quantizations, and a license that allows commercial use. If you want frontier-adjacent agentic coding on your own hardware or at minimal API cost, it deserves a serious look.
Comments
No comments yet. Be the first to comment!
Related Tools
KAT-Coder V2.5
huggingface.co/Kwaipilot/KAT-Coder-V2.5-Dev
Kwaipilot's open-weight agentic coding model: 35B MoE, 3B active per token, Qwen3.6 base, Apache 2.0, 262K context, top PinchBench tool-use score.
NVIDIA Nemotron 3.5 Lightning 30B A3B
build.nvidia.com/nvidia/nemotron-3.5-lightning-30b-a3b
NVIDIA's efficient open-weight 30B MoE hybrid model with 3B active parameters, 1M-token context, and single-GPU deployment for local reasoning and coding.
DeepSeek V4 Pro 0813
www.deepseek.com
DeepSeek's flagship 1.6T MoE model with 49B active parameters, 1M-token context, MIT open weights, and world-leading coding scores at a fraction of closed-model prices.
Related Insights
Six AI Coding CLIs, Six Months: No Matter How Strong the Model, Work Needs Supervision
Claude Code, Codex, opencode, pi, omp and DeepSeek Harness all have personalities. After six months of deep use I run a division of labor: pi for the fastest cheapest reviews, omp for complex PRs, DeepSeek Harness on V4 Flash for high-frequency low-cost review, and Claude Code, Qoder and Cursor for writing. No matter how strong the model, work needs supervision — ideally from an independent third party.
Skills + Hooks + Plugins: How Anthropic Redefined AI Coding Tool Extensibility
An in-depth analysis of Claude Code's trinity architecture of Skills, Hooks, and Plugins. Explore why this design is more advanced than GitHub Copilot and Cursor, and how it redefines AI coding tool extensibility through open standards.
Claudesidian: Transform Obsidian into an AI-Powered Second Brain
Discover Claudesidian, an open-source project that perfectly integrates Obsidian with Claude Code. Built-in PARA method, custom commands, and automated workflows for a complete idea-to-implementation solution.