Text Generation
GGUF
llama.cpp
ik_llama.cpp
laguna
laguna-m.1
Mixture of Experts
imatrix
poolside
conversational
Instructions to use sigargv/Laguna-M.1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use sigargv/Laguna-M.1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="sigargv/Laguna-M.1-GGUF", filename="BF16/Laguna-M.1-BF16-00001-of-00010.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use sigargv/Laguna-M.1-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 sigargv/Laguna-M.1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf sigargv/Laguna-M.1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf sigargv/Laguna-M.1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf sigargv/Laguna-M.1-GGUF:Q4_K_M
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 sigargv/Laguna-M.1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf sigargv/Laguna-M.1-GGUF:Q4_K_M
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 sigargv/Laguna-M.1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf sigargv/Laguna-M.1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/sigargv/Laguna-M.1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use sigargv/Laguna-M.1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "sigargv/Laguna-M.1-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": "sigargv/Laguna-M.1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/sigargv/Laguna-M.1-GGUF:Q4_K_M
- Ollama
How to use sigargv/Laguna-M.1-GGUF with Ollama:
ollama run hf.co/sigargv/Laguna-M.1-GGUF:Q4_K_M
- Unsloth Studio
How to use sigargv/Laguna-M.1-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 sigargv/Laguna-M.1-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 sigargv/Laguna-M.1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for sigargv/Laguna-M.1-GGUF to start chatting
- Pi
How to use sigargv/Laguna-M.1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf sigargv/Laguna-M.1-GGUF:Q4_K_M
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": "sigargv/Laguna-M.1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use sigargv/Laguna-M.1-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 sigargv/Laguna-M.1-GGUF:Q4_K_M
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 sigargv/Laguna-M.1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use sigargv/Laguna-M.1-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf sigargv/Laguna-M.1-GGUF:Q4_K_M
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 "sigargv/Laguna-M.1-GGUF:Q4_K_M" \ --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 sigargv/Laguna-M.1-GGUF with Docker Model Runner:
docker model run hf.co/sigargv/Laguna-M.1-GGUF:Q4_K_M
- Lemonade
How to use sigargv/Laguna-M.1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull sigargv/Laguna-M.1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Laguna-M.1-GGUF-Q4_K_M
List all available models
lemonade list
Add files using upload-large-folder tool
Browse files- .gitattributes +10 -0
- IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00001-of-00010.gguf +3 -0
- IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00002-of-00010.gguf +3 -0
- IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00003-of-00010.gguf +3 -0
- IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00004-of-00010.gguf +3 -0
- IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00005-of-00010.gguf +3 -0
- IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00006-of-00010.gguf +3 -0
- IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00007-of-00010.gguf +3 -0
- IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00008-of-00010.gguf +3 -0
- IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00009-of-00010.gguf +3 -0
- IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00010-of-00010.gguf +3 -0
- IQ3_XXS/SHA256SUMS +10 -0
- IQ3_XXS/quantize-command.txt +7 -0
- IQ3_XXS/quantize.log +0 -0
- IQ3_XXS/result.tsv +2 -0
- MANIFEST.tsv +14 -14
.gitattributes
CHANGED
|
@@ -143,3 +143,13 @@ IQ2_S/Laguna-M.1-IQ2_S-imatrix-public-v1-00006-of-00010.gguf filter=lfs diff=lfs
|
|
| 143 |
IQ2_S/Laguna-M.1-IQ2_S-imatrix-public-v1-00004-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 144 |
IQ2_S/Laguna-M.1-IQ2_S-imatrix-public-v1-00003-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 145 |
IQ2_S/Laguna-M.1-IQ2_S-imatrix-public-v1-00001-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 143 |
IQ2_S/Laguna-M.1-IQ2_S-imatrix-public-v1-00004-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 144 |
IQ2_S/Laguna-M.1-IQ2_S-imatrix-public-v1-00003-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 145 |
IQ2_S/Laguna-M.1-IQ2_S-imatrix-public-v1-00001-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 146 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 147 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00001-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 148 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00008-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 149 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 150 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00006-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 151 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00007-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 152 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00003-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 153 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00002-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 154 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00004-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 155 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00005-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00001-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:21710a941b8b98d68066049a206aa9d08988ee1730c36f7abfb388df0532f928
|
| 3 |
+
size 10338241376
|
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00002-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c148a1ba0df1d05d35b4198dd2b8262a8ea33b3105994452ee7e84ecc71f3d8
|
| 3 |
+
size 9042921184
|
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00003-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:afb9827f4300701b511ee694f93c82e17f8e54272ce21199f9e49edc76a57708
|
| 3 |
+
size 9042921184
|
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00004-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99c74be59d29845a5d215e13f7f8675b5e2e3bf42d6984a5519c261f1c2281d3
|
| 3 |
+
size 9042921184
|
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00005-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a1f1e7e768d13b717d7bd63a3bc028db9fb13c1b4e0af03001d69f24ea964482
|
| 3 |
+
size 9042921184
|
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00006-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25e35b1775f6c6d206620a19081763d8d974717f990b4ef5cdb9513d46f6eff9
|
| 3 |
+
size 9042921184
|
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00007-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7fb9c3e5f1d7d3ee59b222870d0acb716c126c14e546319f716c8628775c2533
|
| 3 |
+
size 9042921184
|
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00008-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a61545b6e544027f7ac0655dda7160260ab81f085a6fb683d24c0a422c2b3ca8
|
| 3 |
+
size 9042921184
|
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00009-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:32445302493fa6ea0c9566c6635a4f9401e834efc0f9abd4c76d243d2eb78687
|
| 3 |
+
size 9042921184
|
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00010-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d479a31c53725acf33a47e60091cbf80d5752d55c1325481a444e32fe21c6bc6
|
| 3 |
+
size 5343544384
|
IQ3_XXS/SHA256SUMS
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
21710a941b8b98d68066049a206aa9d08988ee1730c36f7abfb388df0532f928 Laguna-M.1-IQ3_XXS-imatrix-public-v1-00001-of-00010.gguf
|
| 2 |
+
2c148a1ba0df1d05d35b4198dd2b8262a8ea33b3105994452ee7e84ecc71f3d8 Laguna-M.1-IQ3_XXS-imatrix-public-v1-00002-of-00010.gguf
|
| 3 |
+
afb9827f4300701b511ee694f93c82e17f8e54272ce21199f9e49edc76a57708 Laguna-M.1-IQ3_XXS-imatrix-public-v1-00003-of-00010.gguf
|
| 4 |
+
99c74be59d29845a5d215e13f7f8675b5e2e3bf42d6984a5519c261f1c2281d3 Laguna-M.1-IQ3_XXS-imatrix-public-v1-00004-of-00010.gguf
|
| 5 |
+
a1f1e7e768d13b717d7bd63a3bc028db9fb13c1b4e0af03001d69f24ea964482 Laguna-M.1-IQ3_XXS-imatrix-public-v1-00005-of-00010.gguf
|
| 6 |
+
25e35b1775f6c6d206620a19081763d8d974717f990b4ef5cdb9513d46f6eff9 Laguna-M.1-IQ3_XXS-imatrix-public-v1-00006-of-00010.gguf
|
| 7 |
+
7fb9c3e5f1d7d3ee59b222870d0acb716c126c14e546319f716c8628775c2533 Laguna-M.1-IQ3_XXS-imatrix-public-v1-00007-of-00010.gguf
|
| 8 |
+
a61545b6e544027f7ac0655dda7160260ab81f085a6fb683d24c0a422c2b3ca8 Laguna-M.1-IQ3_XXS-imatrix-public-v1-00008-of-00010.gguf
|
| 9 |
+
32445302493fa6ea0c9566c6635a4f9401e834efc0f9abd4c76d243d2eb78687 Laguna-M.1-IQ3_XXS-imatrix-public-v1-00009-of-00010.gguf
|
| 10 |
+
d479a31c53725acf33a47e60091cbf80d5752d55c1325481a444e32fe21c6bc6 Laguna-M.1-IQ3_XXS-imatrix-public-v1-00010-of-00010.gguf
|
IQ3_XXS/quantize-command.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
quant=IQ3_XXS
|
| 2 |
+
lane=vanilla-extra
|
| 3 |
+
started_at=2026-06-21T15:48:03-04:00
|
| 4 |
+
bf16_first=/home/eve/laguna-gguf/laguna-m1/bf16/Laguna-M.1-BF16-00001-of-00010.gguf
|
| 5 |
+
imatrix=/mnt/pool/gguf/laguna-m1/imatrix/q8-public-v1-256-20260620-231949/laguna-m1-q8-public-v1-256-gatefix.imatrix
|
| 6 |
+
threads=32
|
| 7 |
+
command=/home/eve/ik_llama.cpp/build/bin/llama-quantize --keep-split --partial-requant --imatrix /mnt/pool/gguf/laguna-m1/imatrix/q8-public-v1-256-20260620-231949/laguna-m1-q8-public-v1-256-gatefix.imatrix --output-tensor-type q6_K --token-embedding-type q6_K /home/eve/laguna-gguf/laguna-m1/bf16/Laguna-M.1-BF16-00001-of-00010.gguf /home/eve/laguna-gguf/laguna-m1/quants/vector-extra-v1/IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1.gguf IQ3_XXS 32
|
IQ3_XXS/quantize.log
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
IQ3_XXS/result.tsv
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
quant lane status files bytes sha256sums ppl ppl_unc kld kld_unc kl_reference completed_at log
|
| 2 |
+
IQ3_XXS vanilla-extra finished 10 88025155232 /home/eve/laguna-gguf/laguna-m1/quants/vector-extra-v1/IQ3_XXS/SHA256SUMS pending pending pending pending pending 2026-06-21T16:40:52-04:00 /home/eve/laguna-gguf/laguna-m1/quants/vector-extra-v1/IQ3_XXS/quantize.log
|
MANIFEST.tsv
CHANGED
|
@@ -1,14 +1,14 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
|
|
|
| 1 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00001-of-00010.gguf 10338241376
|
| 2 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00002-of-00010.gguf 9042921184
|
| 3 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00003-of-00010.gguf 9042921184
|
| 4 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00004-of-00010.gguf 9042921184
|
| 5 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00005-of-00010.gguf 9042921184
|
| 6 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00006-of-00010.gguf 9042921184
|
| 7 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00007-of-00010.gguf 9042921184
|
| 8 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00008-of-00010.gguf 9042921184
|
| 9 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00009-of-00010.gguf 9042921184
|
| 10 |
+
IQ3_XXS/Laguna-M.1-IQ3_XXS-imatrix-public-v1-00010-of-00010.gguf 5343544384
|
| 11 |
+
IQ3_XXS/quantize-command.txt 731
|
| 12 |
+
IQ3_XXS/quantize.log 173833
|
| 13 |
+
IQ3_XXS/result.tsv 357
|
| 14 |
+
IQ3_XXS/SHA256SUMS 1230
|