How to run a Poolside model locally - Poolside

Local Poolside model setup on NVIDIA DGX Spark

Choose a model

Model Parameters License Minimum hardware Best for
Laguna S 2.1 118B total, 8B active per token OpenMDW-1.1 128 GB unified or system memory NVIDIA DGX Spark, high-memory workstations, and servers
Laguna XS.2 33B total, 3B active per token Apache 2.0 32 GB system RAM, or 8 GB VRAM on a discrete NVIDIA GPU Laptops and single-GPU machines

Not sure which one? Start with Laguna XS.2 if your machine has less than 128 GB of memory. Move to Laguna S 2.1 when you have a high-memory workstation or server.

How it works

A local Poolside agent uses four pieces:

Prerequisites

Before you install the local agent, check that your machine has enough memory, GPU support, and disk space for the model you want to run.

Hardware

Laguna S

Laguna S 2.1 can run locally on the following hardware:

Platform Status
NVIDIA DGX Spark (GB10) Supported and sized against unified memory
macOS Apple Silicon, 128 GB unified memory or more Supported with Metal through Ollama
NVIDIA Grace Blackwell GB200 Supported and sized against unified memory
NVIDIA data-center GPUs, 96 GB GPU memory or more on a single card Supported with CUDA through Ollama; use a multi-GPU node for the f16 weights

Use hardware that meets these minimums:

Laguna XS.2

Laguna XS.2 can run locally on the following hardware:

Platform Status
macOS Apple Silicon, M1 and newer Supported with MLX and Metal through Ollama
Linux with NVIDIA GPUs, 8 GB VRAM or more Supported with CUDA through Ollama
Linux with NVIDIA DGX Spark or Grace Blackwell systems, including GB10 and GB200 Supported and sized against unified memory

On NVIDIA systems, Blackwell, Hopper, and Ada GPUs are recommended. Turing and older GPUs may work, but they are not recommended.

Use hardware that meets these minimums:

Memory and context

Model weights and KV cache share memory while the model runs. On a 128 GB box, the 75 GB of weights leave limited room, so start with a modest context and raise it as memory allows.

Total or unified RAM Recommended tag Recommended context Notes
128 GB q4_k_m 32K to 64K NVIDIA DGX Spark or a 128 GB Mac Studio.
192 GB q8_0, or q4_k_m at full context 256K Room for the quantized builds’ full context.
256 GB or more f16 1M Full precision. Mac Studio Ultra class.

Model weights and KV cache share memory while the model runs. Use a context length that fits the memory available on your machine.

Total or unified RAM Recommended tag Recommended context Notes
32 to 47 GB q4_K_M 16K Minimum local setup.
48 to 63 GB q4_K_M 32K More working room for local sessions.
64 to 95 GB q8_0 65K Higher precision and longer sessions.
96 GB or more bf16 65K by default, 256K with --context 256k Full precision and longer context.

Step 1: Install Ollama

Install Ollama:

curl -fsSL https://ollama.com/install.sh | sh

For other installation options, see the Ollama documentation.

Confirm Ollama is available:

ollama list

Step 2: Choose and pull a model tag

The default Ollama tag is laguna-s-2.1:latest, which uses the same model blob as laguna-s-2.1:q4_k_m. Use a higher-precision tag when you have enough memory.

Tag Approximate size When to use it
laguna-s-2.1:latest 75 GB Default. Recommended for most local setups.
laguna-s-2.1:q4_k_m 75 GB Same as :latest.
laguna-s-2.1:q8_0 128 GB Higher precision, on a machine with 192 GB of memory or more.
laguna-s-2.1:f16 235 GB Full precision, on a machine with 256 GB of memory or more.

Pull the tag you want to run. For example, to pull the default tag, run:

ollama pull laguna-s-2.1:latest

The first load reads 75 GB or more off disk, which can exceed Ollama’s default five-minute model-load timeout. If the first run times out, set OLLAMA_LOAD_TIMEOUT=20m.

The default Ollama tag is laguna-xs.2:latest, which uses the same model blob as laguna-xs.2:q4_K_M. Use a different tag when you want higher precision and have enough memory.

Tag Approximate size When to use it
laguna-xs.2:latest 23 GB Default. Recommended for most local setups.
laguna-xs.2:q4_K_M 23 GB Same as :latest.
laguna-xs.2:q8_0 37 GB NVIDIA on Linux with comfortable VRAM.
laguna-xs.2:bf16 67 GB Full precision. Hopper, Blackwell, or 96 GB+ Apple Silicon.
laguna-xs.2:nvfp4 22 GB Apple Silicon only with the MLX backend.
laguna-xs.2:mxfp8 36 GB Apple Silicon only with the MLX backend.
laguna-xs.2:mlx-bf16 67 GB Apple Silicon only with the MLX backend.

Pull the tag you want to run. For example, to pull the default tag, run:

ollama pull laguna-xs.2:latest

Step 3: Test the model in Ollama

You can chat with the model directly through Ollama to confirm it works. Use the same tag you pulled in the previous step:

OLLAMA_LOAD_TIMEOUT=20m ollama run laguna-s-2.1:latest
ollama run laguna-xs.2:latest

Step 4: Install Poolside Agent CLI

Install Poolside Agent CLI so pool can connect to the model that Ollama serves locally:

curl -fsSL https://downloads.poolside.ai/pool/install.sh | sh

Verify the installation:

pool --version

Step 5: Launch pool against the local model

Go to the project directory you want to work in, then point pool at the model Ollama serves on your machine. Use the same tag you used in step 2.

cd <project-path>
ollama launch pool --model laguna-s-2.1:latest

This example uses laguna-xs.2:latest:

cd <project-path>
ollama launch pool --model laguna-xs.2:latest

When the session starts, send a prompt:

Summarize this project and suggest one small improvement.

The setup works when pool starts an agent session and responds to the prompt.

Optional: Work in your editor

Because pool supports ACP, you can connect the same local agent to any ACP-compatible editor instead of working from the terminal:

Next steps

Learn what you can do with pool \ \ Keep working in the terminal with interactive sessions, automation, and other Poolside Agent CLI workflows.

Configure your agent \ \ Shape agent behavior and control what it can do.