Instructions to use dphnAI/32B-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 dphnAI/32B-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 dphnAI/32B-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf dphnAI/32B-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 dphnAI/32B-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf dphnAI/32B-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 dphnAI/32B-gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf dphnAI/32B-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 dphnAI/32B-gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf dphnAI/32B-gguf:Q4_K_M
Use Docker
docker model run hf.co/dphnAI/32B-gguf:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use dphnAI/32B-gguf with Ollama:
ollama run hf.co/dphnAI/32B-gguf:Q4_K_M
- Unsloth Studio
How to use dphnAI/32B-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 dphnAI/32B-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 dphnAI/32B-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for dphnAI/32B-gguf to start chatting
- Pi
How to use dphnAI/32B-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dphnAI/32B-gguf:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "dphnAI/32B-gguf:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use dphnAI/32B-gguf with Docker Model Runner:
docker model run hf.co/dphnAI/32B-gguf:Q4_K_M
- Lemonade
How to use dphnAI/32B-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull dphnAI/32B-gguf:Q4_K_M
Run and chat with the model
lemonade run user.32B-gguf-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use dphnAI/32B-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 dphnAI/32B-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 dphnAI/32B-gguf:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use dphnAI/32B-gguf with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dphnAI/32B-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 "dphnAI/32B-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"
Upload folder using huggingface_hub
Browse files- .gitattributes +10 -0
- 32b.fp16.Q2_K.gguf +3 -0
- 32b.fp16.Q3_K_L.gguf +3 -0
- 32b.fp16.Q3_K_M.gguf +3 -0
- 32b.fp16.Q3_K_S.gguf +3 -0
- 32b.fp16.Q4_K_M.gguf +3 -0
- 32b.fp16.Q4_K_S.gguf +3 -0
- 32b.fp16.Q5_K_M.gguf +3 -0
- 32b.fp16.Q5_K_S.gguf +3 -0
- 32b.fp16.Q6_K.gguf +3 -0
- 32b.fp16.Q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,13 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip 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 |
+
32b.fp16.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
32b.fp16.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
32b.fp16.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
32b.fp16.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
32b.fp16.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
32b.fp16.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
32b.fp16.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
32b.fp16.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
32b.fp16.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
32b.fp16.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
32b.fp16.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf8b054abf3397e4a08733ba56230a8083e979202d0a7ae7ea08f73e59576b2a
|
| 3 |
+
size 12005940768
|
32b.fp16.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ecf312d80ae14628584bd66aca46021d88b20b2f9199ab3103fa81c2df69ff9
|
| 3 |
+
size 16912992224
|
32b.fp16.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:18e7004a26a79cc44328b34dc39207dc2d49261fb5e186656f05ad258ab949ad
|
| 3 |
+
size 15600961504
|
32b.fp16.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:628cb3138a68f5a66e607b8f35a11740925b16244d672b6662fc9f7d8770cc1c
|
| 3 |
+
size 14058244064
|
32b.fp16.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2611930dc3e0b729e5d6ba26879ad0e7c84bfdfd5c5d2b57ac125a7cb76ed648
|
| 3 |
+
size 19482035008
|
32b.fp16.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d8ffc530693e4eddd923a023049ea51a82428ffa9e59e0bc1a73a27d39859d8f
|
| 3 |
+
size 18415108928
|
32b.fp16.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cdc7a024d8eeb3ae46d1a5813929b331a04835c9342614fe10a38a7d991eed59
|
| 3 |
+
size 22859713088
|
32b.fp16.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b1c595befe842b69d6cac462d2c957f35db4d58fbb40f27d26e7280589f02916
|
| 3 |
+
size 22235810368
|
32b.fp16.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e462cff8f16ae0165babaa6ec16ef0fc010354602c1b87f5dcf013ad799796d
|
| 3 |
+
size 26448496064
|
32b.fp16.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:13fedc15d88b3d332d71076ef05481fcb177edbb085af7028c7d3615d0949353
|
| 3 |
+
size 34254796992
|