339 Downloads Updated yesterday
ollama run laguna-s-2.1:f16
Laguna S 2.1 is a Mixture-of-Experts model built for agentic coding and extended reasoning. It is the larger sibling of Laguna XS 2.1, trading a bigger memory footprint for stronger coding and reasoning performance while keeping a small activated-parameter count so it stays practical to run on a single high-memory machine.
| Tag | Size | Context | Type |
|---|---|---|---|
| laguna-s-2.1:latest | 75GB | 256K | Text |
| laguna-s-2.1:q4_k_m | 75GB | 256K | Text |
| laguna-s-2.1:q8_0 | 128GB | 256K | Text |
| laguna-s-2.1:f16 | 235GB | 256K | Text |
Sigmoid expert gating with normalised expert weights and per-layer rotary scales. Attention alternates one global layer for every three sliding-window layers, with grouped-query attention (8 KV heads) keeping the KV cache small at long context. Supports tool calling and interleaved thinking, with thinking enabled or disabled per request.
ollama run laguna-s-2.1
Use our coding agent, pool, for the best experience.
POOLSIDE_STANDALONE_CONTEXT_LENGTH=262144
ollama launch pool --model laguna-s-2.1
Tool calling and thinking work through Ollama’s built-in template:
# thinking on a single request
curl http://localhost:11434/api/chat -d '{
"model": "laguna-s-2.1",
"messages": [{"role": "user", "content": "If 3x+6=21, what is x?"}],
"think": true
}'
The q4_k_m weights need roughly 75GB of memory, so a 128GB unified-memory machine (Apple Silicon or DGX Spark) is the practical minimum, and measured single-stream decode is around 13-18 tokens/s on that class of hardware. It also runs on datacenter GPUs such as the NVIDIA H200, where far higher memory bandwidth gives correspondingly faster generation.
Two settings matter in practice:
OLLAMA_LOAD_TIMEOUT=20m if the first run times out.num_ctx deliberately. Ollama defaults to a small context; long
context costs memory on top of the 75GB of weights, so raise it only as far
as your machine allows.Thinking consumes output tokens before the final answer appears, so allow a
generous num_predict on reasoning prompts or the reply can be cut off
mid-thought.
Verified on macOS (Apple Silicon, Metal), NVIDIA DGX Spark (GB10), and NVIDIA H200, with Ollama 0.31 and 0.32.