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
- IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00001-of-00010.gguf +3 -0
- IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00002-of-00010.gguf +3 -0
- IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00003-of-00010.gguf +3 -0
- IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00004-of-00010.gguf +3 -0
- IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00005-of-00010.gguf +3 -0
- IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00006-of-00010.gguf +3 -0
- IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00007-of-00010.gguf +3 -0
- IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00008-of-00010.gguf +3 -0
- IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00009-of-00010.gguf +3 -0
- IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00010-of-00010.gguf +3 -0
- IQ2_M/SHA256SUMS +10 -0
- IQ2_M/quantize-command.txt +7 -0
- IQ2_M/quantize.log +0 -0
- IQ2_M/result.tsv +2 -0
- MANIFEST.tsv +14 -26
.gitattributes
CHANGED
|
@@ -93,3 +93,13 @@ Q4_K_M/Laguna-M.1-Q4_K_M-imatrix-public-v1-00003-of-00010.gguf filter=lfs diff=l
|
|
| 93 |
Q4_K_M/Laguna-M.1-Q4_K_M-imatrix-public-v1-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 94 |
Q4_K_M/Laguna-M.1-Q4_K_M-imatrix-public-v1-00007-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 95 |
Q4_K_M/Laguna-M.1-Q4_K_M-imatrix-public-v1-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
Q4_K_M/Laguna-M.1-Q4_K_M-imatrix-public-v1-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 94 |
Q4_K_M/Laguna-M.1-Q4_K_M-imatrix-public-v1-00007-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 95 |
Q4_K_M/Laguna-M.1-Q4_K_M-imatrix-public-v1-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 96 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00004-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 97 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00003-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 98 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00006-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 99 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00002-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 100 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 101 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00007-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 102 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00001-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 103 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 104 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00008-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 105 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00005-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00001-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:96434ee0e6c7deaa53f82e13f59052b7199bc9b4fca22babc48db9461b992486
|
| 3 |
+
size 9588378464
|
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00002-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3a754ff1fe411005a83df224c1f0bea6bc1c0c83adb31c812146bd7e5599f10
|
| 3 |
+
size 7566526176
|
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00003-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e68f7c327665ab843dc5ea73801afe8e5b58fd26a18c393a353e329863fc533
|
| 3 |
+
size 7566526176
|
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00004-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eba1f6466f54e1adb150535c6dafc868d1a1211414d176f4a9c50b13348d5973
|
| 3 |
+
size 7566526176
|
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00005-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:625406fb75544abee74526e20a217784e69433acddb337ccf4325da9a410a791
|
| 3 |
+
size 7566526176
|
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00006-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:829b3b29acbacddbbd92319fe5a547b6d971fae6f441076a14b1ce49d261e6a9
|
| 3 |
+
size 7566526176
|
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00007-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e4bee44a598a8bd78731f3a9d09771961dd53043a6a2bb536cafdf675c00f39
|
| 3 |
+
size 7566526176
|
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00008-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:77989d0b056b0a64251bf9251fad143674ade72b8050edc234948c8a139a077f
|
| 3 |
+
size 7566526176
|
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00009-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:770d489c5e5b17db0db9a94d6a0aa6cd1fff6074ae86e0539bb0d6d8d1293e5a
|
| 3 |
+
size 7566526176
|
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00010-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a39cd9c325e46b30aa4f2aa3d8248290a76effd5b218c885a112d8006bf33e29
|
| 3 |
+
size 4471129152
|
IQ2_M/SHA256SUMS
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
96434ee0e6c7deaa53f82e13f59052b7199bc9b4fca22babc48db9461b992486 Laguna-M.1-IQ2_M-imatrix-public-v1-00001-of-00010.gguf
|
| 2 |
+
e3a754ff1fe411005a83df224c1f0bea6bc1c0c83adb31c812146bd7e5599f10 Laguna-M.1-IQ2_M-imatrix-public-v1-00002-of-00010.gguf
|
| 3 |
+
0e68f7c327665ab843dc5ea73801afe8e5b58fd26a18c393a353e329863fc533 Laguna-M.1-IQ2_M-imatrix-public-v1-00003-of-00010.gguf
|
| 4 |
+
eba1f6466f54e1adb150535c6dafc868d1a1211414d176f4a9c50b13348d5973 Laguna-M.1-IQ2_M-imatrix-public-v1-00004-of-00010.gguf
|
| 5 |
+
625406fb75544abee74526e20a217784e69433acddb337ccf4325da9a410a791 Laguna-M.1-IQ2_M-imatrix-public-v1-00005-of-00010.gguf
|
| 6 |
+
829b3b29acbacddbbd92319fe5a547b6d971fae6f441076a14b1ce49d261e6a9 Laguna-M.1-IQ2_M-imatrix-public-v1-00006-of-00010.gguf
|
| 7 |
+
4e4bee44a598a8bd78731f3a9d09771961dd53043a6a2bb536cafdf675c00f39 Laguna-M.1-IQ2_M-imatrix-public-v1-00007-of-00010.gguf
|
| 8 |
+
77989d0b056b0a64251bf9251fad143674ade72b8050edc234948c8a139a077f Laguna-M.1-IQ2_M-imatrix-public-v1-00008-of-00010.gguf
|
| 9 |
+
770d489c5e5b17db0db9a94d6a0aa6cd1fff6074ae86e0539bb0d6d8d1293e5a Laguna-M.1-IQ2_M-imatrix-public-v1-00009-of-00010.gguf
|
| 10 |
+
a39cd9c325e46b30aa4f2aa3d8248290a76effd5b218c885a112d8006bf33e29 Laguna-M.1-IQ2_M-imatrix-public-v1-00010-of-00010.gguf
|
IQ2_M/quantize-command.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
quant=IQ2_M
|
| 2 |
+
lane=vanilla-extra
|
| 3 |
+
started_at=2026-06-21T12:45:38-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/IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1.gguf IQ2_M 32
|
IQ2_M/quantize.log
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
IQ2_M/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 |
+
IQ2_M vanilla-extra finished 10 74591717024 /home/eve/laguna-gguf/laguna-m1/quants/vector-extra-v1/IQ2_M/SHA256SUMS pending pending pending pending pending 2026-06-21T13:16:22-04:00 /home/eve/laguna-gguf/laguna-m1/quants/vector-extra-v1/IQ2_M/quantize.log
|
MANIFEST.tsv
CHANGED
|
@@ -1,26 +1,14 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
Q4_K_M/Laguna-M.1-Q4_K_M-imatrix-public-v1-00010-of-00010.gguf 8959034432
|
| 16 |
-
Q4_K_M/quantize-command.txt 812
|
| 17 |
-
Q4_K_M/quantize.log 172317
|
| 18 |
-
Q4_K_M/result.tsv 345
|
| 19 |
-
Q4_K_M/SHA256SUMS 1220
|
| 20 |
-
Q4_K_M/smoke.log 18724
|
| 21 |
-
Q4_K_M/smoke.ngl32.log 18724
|
| 22 |
-
Q4_K_M/smoke.ngl48.log 18742
|
| 23 |
-
Q4_K_M/smoke.ngl64.log 15091
|
| 24 |
-
Q4_K_M/smoke.ngl99.log 15087
|
| 25 |
-
README.md 5661
|
| 26 |
-
results.tsv 1845
|
|
|
|
| 1 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00001-of-00010.gguf 9588378464
|
| 2 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00002-of-00010.gguf 7566526176
|
| 3 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00003-of-00010.gguf 7566526176
|
| 4 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00004-of-00010.gguf 7566526176
|
| 5 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00005-of-00010.gguf 7566526176
|
| 6 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00006-of-00010.gguf 7566526176
|
| 7 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00007-of-00010.gguf 7566526176
|
| 8 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00008-of-00010.gguf 7566526176
|
| 9 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00009-of-00010.gguf 7566526176
|
| 10 |
+
IQ2_M/Laguna-M.1-IQ2_M-imatrix-public-v1-00010-of-00010.gguf 4471129152
|
| 11 |
+
IQ2_M/quantize-command.txt 723
|
| 12 |
+
IQ2_M/quantize.log 172865
|
| 13 |
+
IQ2_M/result.tsv 351
|
| 14 |
+
IQ2_M/SHA256SUMS 1210
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|