Views
No views yet

| Version | 26.05.01 |
| Calibration | STEM and Agentic |
| Languages |
EN ZH HI AR RU
JA KO NL FR ES
|
| Model Size | 123.91 GB |
| Contact |
enable_thinking| Model | Size | Terminal-Bench 2.1 | SWE-bench Multilingual | SWE-Bench Pro (Public Dataset) | DeepSWE | SWE Atlas (Codebase QnA) | Toolathlon Verified |
|---|---|---|---|---|---|---|---|
| Laguna S 2.1 | 118B-A8B | 70.2% | 78.5% | 59.4% | 40.4% | 46.2% | 49.7% |
| Tencent Hy3 | 295B-A21B | 71.7% | 75.8% | 57.9% | - | - | - |
| Inkling | 975B-A41B | 63.8% | - | 54.3% | - | - | 45.5%* |
| Nemotron 3 Ultra | 550B-A55B | 56.4% | 67.7% | - | - | - | 34.3%* |
| DeepSeek-V4-Pro Max | 1.6T-A49B | 64.0%* | 76.2% | 55.4% | 9.0%* | 27.2%* | 55.9%* |
| Kimi K3 | 2800B-A50B | 88.3% | - | - | 69% | - | - |
| Qwen 3.7 Max | - | 74.5%* | 78.3% | 60.6% | - | - | - |
| Muse Spark 1.1 | - | 80% | - | 61.5% | 53.3% | 42.2%* | 75.6% |
| Claude Fable 5 | - | 88% | - | 80.3% | 70% | - | - |
laguna architecture as Laguna XS 2.1, so the same
engine integrations apply (vLLM, SGLang, Transformers, TRT-LLM, llama.cpp). At 118B
parameters the BF16 checkpoint needs multiple GPUs (roughly 236GB of weights);
quantized variants reduce this substantially.1vllm serve \
2 --model poolside/Laguna-S-2.1 \
3 --tensor-parallel-size 4 \
4 --tool-call-parser poolside_v1 \
5 --reasoning-parser poolside_v1 \
6 --enable-auto-tool-choice \
7 --served-model-name laguna \
8 --default-chat-template-kwargs '{"enable_thinking": true}'[!NOTE] Optional: speculative decoding with DFlash. Pair with the Laguna S 2.1 DFlash draft model by adding--speculative-config '{"model":"poolside/Laguna-S-2.1-DFlash","num_speculative_tokens":7,"method":"dflash"}'.
1python -m sglang.launch_server \
2 --model-path poolside/Laguna-S-2.1 \
3 --tp-size 4 \
4 --reasoning-parser poolside_v1 \
5 --tool-call-parser poolside_v1 \
6 --trust-remote-code1trtllm-serve poolside/Laguna-S-2.1 --trust-remote-code \
2 --tool_parser poolside_v1 --reasoning_parser laguna--tool_parser, and the reasoning parser
is laguna, not poolside_v1).laguna, which carries
full Laguna support including DFlash speculative decoding. (Base Laguna support
is also in upstream review:
ggml-org/llama.cpp#25165.)1git clone --branch laguna https://github.com/poolsideai/llama.cpp
2cd llama.cpp && cmake -B build && cmake --build build -j
3
4./build/bin/llama-server -m laguna-s-2.1-Q4_K_M.gguf --jinja --port 8000
5
6# with DFlash speculative decoding:
7./build/bin/llama-server -m laguna-s-2.1-Q4_K_M.gguf \
8 -md laguna-s-2.1-DFlash-BF16.gguf \
9 --spec-type draft-dflash --spec-draft-n-max 7 -fa on --jinja --port 8000ollama run laguna-s-2.1q4_K_M, q8_0, f16, mxfp8,
nvfp4, mlx-bf16), for example ollama run laguna-s-2.1:q8_0. The Laguna chat
template is baked into the model, so tool-calling and interleaved reasoning work
automatically.reasoning_content from prior assistant messages in the message history.
The model will generally reason before calling tools and between tool calls, and
may stop reasoning in follow-up steps if prior thinking blocks are dropped.extra_body={"chat_template_kwargs": {"enable_thinking": False}}--default-chat-template-kwargs '{"enable_thinking": true}'. For agentic coding
use cases we recommend enabling thinking and preserving reasoning in the message
history.