Instructions to use mradermacher/OpenSonnet-Lite-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/OpenSonnet-Lite-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/OpenSonnet-Lite-i1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/OpenSonnet-Lite-i1-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 mradermacher/OpenSonnet-Lite-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/OpenSonnet-Lite-i1-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 mradermacher/OpenSonnet-Lite-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/OpenSonnet-Lite-i1-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 mradermacher/OpenSonnet-Lite-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/OpenSonnet-Lite-i1-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 mradermacher/OpenSonnet-Lite-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/OpenSonnet-Lite-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/OpenSonnet-Lite-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/OpenSonnet-Lite-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/OpenSonnet-Lite-i1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/OpenSonnet-Lite-i1-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 mradermacher/OpenSonnet-Lite-i1-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 mradermacher/OpenSonnet-Lite-i1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/OpenSonnet-Lite-i1-GGUF to start chatting
- Pi
How to use mradermacher/OpenSonnet-Lite-i1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/OpenSonnet-Lite-i1-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": "mradermacher/OpenSonnet-Lite-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/OpenSonnet-Lite-i1-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 mradermacher/OpenSonnet-Lite-i1-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 mradermacher/OpenSonnet-Lite-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/OpenSonnet-Lite-i1-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/OpenSonnet-Lite-i1-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 "mradermacher/OpenSonnet-Lite-i1-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 mradermacher/OpenSonnet-Lite-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/OpenSonnet-Lite-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/OpenSonnet-Lite-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/OpenSonnet-Lite-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.OpenSonnet-Lite-i1-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +24 -0
- OpenSonnet-Lite.i1-IQ1_M.gguf +3 -0
- OpenSonnet-Lite.i1-IQ1_S.gguf +3 -0
- OpenSonnet-Lite.i1-IQ2_M.gguf +3 -0
- OpenSonnet-Lite.i1-IQ2_S.gguf +3 -0
- OpenSonnet-Lite.i1-IQ2_XS.gguf +3 -0
- OpenSonnet-Lite.i1-IQ2_XXS.gguf +3 -0
- OpenSonnet-Lite.i1-IQ3_M.gguf +3 -0
- OpenSonnet-Lite.i1-IQ3_S.gguf +3 -0
- OpenSonnet-Lite.i1-IQ3_XS.gguf +3 -0
- OpenSonnet-Lite.i1-IQ3_XXS.gguf +3 -0
- OpenSonnet-Lite.i1-IQ4_NL.gguf +3 -0
- OpenSonnet-Lite.i1-IQ4_XS.gguf +3 -0
- OpenSonnet-Lite.i1-Q2_K.gguf +3 -0
- OpenSonnet-Lite.i1-Q2_K_S.gguf +3 -0
- OpenSonnet-Lite.i1-Q3_K_L.gguf +3 -0
- OpenSonnet-Lite.i1-Q3_K_M.gguf +3 -0
- OpenSonnet-Lite.i1-Q3_K_S.gguf +3 -0
- OpenSonnet-Lite.i1-Q4_0.gguf +3 -0
- OpenSonnet-Lite.i1-Q4_1.gguf +3 -0
- OpenSonnet-Lite.i1-Q4_K_M.gguf +3 -0
- OpenSonnet-Lite.i1-Q4_K_S.gguf +3 -0
- OpenSonnet-Lite.i1-Q5_K_M.gguf +3 -0
- OpenSonnet-Lite.i1-Q5_K_S.gguf +3 -0
- OpenSonnet-Lite.i1-Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,27 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
OpenSonnet-Lite.imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
OpenSonnet-Lite.imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
OpenSonnet-Lite.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
OpenSonnet-Lite.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
OpenSonnet-Lite.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
OpenSonnet-Lite.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
OpenSonnet-Lite.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
OpenSonnet-Lite.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
OpenSonnet-Lite.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
OpenSonnet-Lite.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
OpenSonnet-Lite.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
OpenSonnet-Lite.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
OpenSonnet-Lite.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
OpenSonnet-Lite.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
OpenSonnet-Lite.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
OpenSonnet-Lite.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
OpenSonnet-Lite.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
OpenSonnet-Lite.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
OpenSonnet-Lite.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
OpenSonnet-Lite.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
OpenSonnet-Lite.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
OpenSonnet-Lite.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
OpenSonnet-Lite.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
OpenSonnet-Lite.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
OpenSonnet-Lite.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
OpenSonnet-Lite.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
OpenSonnet-Lite.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85e656f2e326f47df2d3df8d2c4628c6251c9c6f9ded80a81264e0bf53323bdc
|
| 3 |
+
size 1127021600
|
OpenSonnet-Lite.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52a2f1511c5d4f401fe531bc2dfb992968063d6648264fe572be6a85d0edd86d
|
| 3 |
+
size 1055259680
|
OpenSonnet-Lite.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d28a076c8768ca750d5b197ce79c0fce965ddcb513a5e16687a0e17112f978d
|
| 3 |
+
size 1512987680
|
OpenSonnet-Lite.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f7bd144eb0dc8d88260758cb0078d7becd956212ed71b438e6554da780c0f24
|
| 3 |
+
size 1417305120
|
OpenSonnet-Lite.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac2d0cec27331a9c02c3c0778779a216f5771c85b911a4be77698ada2059d88a
|
| 3 |
+
size 1354103840
|
OpenSonnet-Lite.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:875f5ed1f152257d4a7f5aafae7d9c9c51cc85e434d91e248ce63de62959660a
|
| 3 |
+
size 1246624800
|
OpenSonnet-Lite.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:295238d255e2da8fd4cc58019eeb71e9d2ec6ac4acedff35d8ea9194e80a8fe4
|
| 3 |
+
size 1962900000
|
OpenSonnet-Lite.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b9eaf39712f9515a60c0a3ad2826fd0d594376fdd68f1826f040b1fb1ca561a
|
| 3 |
+
size 1899534880
|
OpenSonnet-Lite.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee4c94870acc711f5e31f597c2d0d7b982e92c76de6dbd1870f3fec7648f4df6
|
| 3 |
+
size 1814379040
|
OpenSonnet-Lite.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d1fd2fe18f1d4d397c2fc4bfdeef2e68f4e943b2be86a7e54369a5aed6318132
|
| 3 |
+
size 1670192160
|
OpenSonnet-Lite.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:649ef8c46747ab99ddf693772bd770462f6e9b3db71a8f4ec72dd395a19d9755
|
| 3 |
+
size 2381347360
|
OpenSonnet-Lite.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d516f3bc21e5e414372177d2d96b13ce44e5af836ac0090e3b9edf9971418b1
|
| 3 |
+
size 2270755360
|
OpenSonnet-Lite.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99ca22b3817112466f20b1cf90ad8798710172676cee0f48f4d895a2654ad425
|
| 3 |
+
size 1669503520
|
OpenSonnet-Lite.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa90874112d396214c8b48ea298e1a85831dbbe5ab7fdab5ab23fc221f724ea4
|
| 3 |
+
size 1563458080
|
OpenSonnet-Lite.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:27ff0b88807f5e2c283d22f601881e36a269f967fd80f8d0d1f1909b5bd43cd2
|
| 3 |
+
size 2239789600
|
OpenSonnet-Lite.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c5362a48b771cd3c8e17f14598f8611dc7de5797bbd3b55b14f4496c917de22a
|
| 3 |
+
size 2075621920
|
OpenSonnet-Lite.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d04377e1368785c0314618168007db03ed547d8c30b26260085a9e76e9b22433
|
| 3 |
+
size 1887001120
|
OpenSonnet-Lite.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c12340ffeb75c94aa5eba6ba8ed537dba3b22138c1a4075153a008349aaf1336
|
| 3 |
+
size 2375776800
|
OpenSonnet-Lite.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8dc31013324d38df4f8f5ec5afeb2b2247ccb19f343256f33297c7f34579b07
|
| 3 |
+
size 2596633120
|
OpenSonnet-Lite.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c2b531be9e5de0a5ab6b782a27dd4cce26e8b7d1822f0d8aa1cec34b612f1e06
|
| 3 |
+
size 2497284640
|
OpenSonnet-Lite.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8927eccd6a06747d34e50df08d554319e6c8442e80a74284394ed203922b49bd
|
| 3 |
+
size 2383313440
|
OpenSonnet-Lite.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e00ca2ed0d2345ba5c976201524609783adff254730ea6dee3df236235ad9b8
|
| 3 |
+
size 2889517600
|
OpenSonnet-Lite.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:337141b2385b7247ce4ce22ffaa37122704fecf4b6d21ab21bc1ef0ac292d0e3
|
| 3 |
+
size 2823715360
|
OpenSonnet-Lite.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c555a17f682cc7c2cf1434f7cdaae98ae46202120614e6ddf2fc3c5381c54809
|
| 3 |
+
size 3306265120
|