Text Generation
GGUF
English
llama.cpp
laguna-s-2.1
poolside
agentic-coding
tool-use
rocm
rocmfp4
rocmfpx
chadrock
amd
ryzen-ai-max-395
strix-halo
long-context
imatrix
conversational
Instructions to use jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF # Run inference directly in the terminal: llama cli -hf jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF # Run inference directly in the terminal: llama cli -hf jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF # Run inference directly in the terminal: ./llama-cli -hf jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF # Run inference directly in the terminal: ./build/bin/llama-cli -hf jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF
Use Docker
docker model run hf.co/jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF
- LM Studio
- Jan
- vLLM
How to use jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF
- Ollama
How to use jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF with Ollama:
ollama run hf.co/jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF
- Unsloth Studio
How to use jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF to start chatting
- Pi
How to use jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF
Run Hermes
hermes
- OpenClaw new
How to use jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF with Docker Model Runner:
docker model run hf.co/jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF
- Lemonade
How to use jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull jcbtc/Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF
Run and chat with the model
lemonade run user.Laguna-S-2.1-Chadrock-ROCmFP4-StrixKVSpine-V4-GGUF-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
Add model card
Browse files
README.md
CHANGED
|
@@ -72,8 +72,7 @@ official Q4_K_M GGUF and reached **35.62 tokens/second** during the complete
|
|
| 72 |
|
| 73 |
## Runtime V3 patch notes
|
| 74 |
|
| 75 |
-
Runtime V3 adds parser
|
| 76 |
-
V2 Vulkan runtime:
|
| 77 |
|
| 78 |
- ports [llama.cpp PR #24835](https://github.com/ggml-org/llama.cpp/pull/24835)
|
| 79 |
so generated JSON values no longer carry trailing grammar whitespace that
|
|
@@ -81,19 +80,15 @@ V2 Vulkan runtime:
|
|
| 81 |
- aligns PEG JSON-array comma whitespace handling with the generated grammar;
|
| 82 |
- adds a Laguna/Pi regression for an `edit` call containing an
|
| 83 |
`array<object>` argument and source-code strings;
|
| 84 |
-
- removes the render-only `{% generation %}` extension from the Laguna S 2.1
|
| 85 |
-
template, preserving the rendered prompt while allowing standard Jinja and
|
| 86 |
-
MiniJinja engines such as Hipfire to parse it;
|
| 87 |
- retains the V2 RADV DeviceLost safeguards and validated 128K defaults.
|
| 88 |
|
| 89 |
Focused V3 validation on Ryzen AI Max+ 395 / Radeon 8060S with Mesa RADV
|
| 90 |
26.1.2 passed JSON-schema grammar conversion, automatic parser selection, the
|
| 91 |
-
nested Pi edit-call regression, the Laguna architecture test
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
`VK_ERROR_DEVICE_LOST`.
|
| 97 |
|
| 98 |
### V2 Vulkan stability baseline
|
| 99 |
|
|
@@ -346,26 +341,6 @@ full-depth prefill, multi-turn, and cache-replay gates.
|
|
| 346 |
The complete production recipe is preserved in the
|
| 347 |
[ROCmFPX Laguna Runtime V3 guide](https://github.com/ciru-ai/ROCmFPX/blob/e4db35e027d0a9fa60e3324e4cc12f63ba7e0a00/docs/recipes/laguna-s21-chadrock-rocmfp4-strixkvspine-v4.md).
|
| 348 |
|
| 349 |
-
## Hipfire template compatibility
|
| 350 |
-
|
| 351 |
-
Hipfire releases that do not implement the Hugging Face `{% generation %}`
|
| 352 |
-
extension reject the older embedded template and fall back to raw-encoding the
|
| 353 |
-
user text, which produces incoherent output. Runtime V3's Laguna template
|
| 354 |
-
avoids that extension.
|
| 355 |
-
|
| 356 |
-
For an existing `.mq4` with the older embedded template, run this from the
|
| 357 |
-
ROCmFPX repository root to override it without re-quantizing the model:
|
| 358 |
-
|
| 359 |
-
```bash
|
| 360 |
-
HIPFIRE_LOCAL=1 \
|
| 361 |
-
HIPFIRE_CHAT_TEMPLATE_FILE="$PWD/models/templates/poolside-Laguna-S-2.1.jinja" \
|
| 362 |
-
hipfire run ~/.hipfire/models/laguna-s21.mq4 --max-tokens 64 \
|
| 363 |
-
"The capital of France is"
|
| 364 |
-
```
|
| 365 |
-
|
| 366 |
-
If a background Hipfire daemon is already running, stop it with `hipfire stop`
|
| 367 |
-
before testing without `HIPFIRE_LOCAL=1`.
|
| 368 |
-
|
| 369 |
## Example request
|
| 370 |
|
| 371 |
After starting the compatible server:
|
|
|
|
| 72 |
|
| 73 |
## Runtime V3 patch notes
|
| 74 |
|
| 75 |
+
Runtime V3 adds parser and grammar fixes on top of the V2 Vulkan runtime:
|
|
|
|
| 76 |
|
| 77 |
- ports [llama.cpp PR #24835](https://github.com/ggml-org/llama.cpp/pull/24835)
|
| 78 |
so generated JSON values no longer carry trailing grammar whitespace that
|
|
|
|
| 80 |
- aligns PEG JSON-array comma whitespace handling with the generated grammar;
|
| 81 |
- adds a Laguna/Pi regression for an `edit` call containing an
|
| 82 |
`array<object>` argument and source-code strings;
|
|
|
|
|
|
|
|
|
|
| 83 |
- retains the V2 RADV DeviceLost safeguards and validated 128K defaults.
|
| 84 |
|
| 85 |
Focused V3 validation on Ryzen AI Max+ 395 / Radeon 8060S with Mesa RADV
|
| 86 |
26.1.2 passed JSON-schema grammar conversion, automatic parser selection, the
|
| 87 |
+
nested Pi edit-call regression, and the Laguna architecture test. Real-model
|
| 88 |
+
smokes returned `Paris.`, preserved the nested `edit` tool call, completed an
|
| 89 |
+
8,061-token functional smoke with the expected `omega` response, and released
|
| 90 |
+
the slot after cancellation at 82% of a 15,000-token request. A follow-up
|
| 91 |
+
request returned `Paris.` with no `VK_ERROR_DEVICE_LOST`.
|
|
|
|
| 92 |
|
| 93 |
### V2 Vulkan stability baseline
|
| 94 |
|
|
|
|
| 341 |
The complete production recipe is preserved in the
|
| 342 |
[ROCmFPX Laguna Runtime V3 guide](https://github.com/ciru-ai/ROCmFPX/blob/e4db35e027d0a9fa60e3324e4cc12f63ba7e0a00/docs/recipes/laguna-s21-chadrock-rocmfp4-strixkvspine-v4.md).
|
| 343 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 344 |
## Example request
|
| 345 |
|
| 346 |
After starting the compatible server:
|