Instructions to use addyo07/vox-models 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 addyo07/vox-models 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 addyo07/vox-models:Q4_K_M # Run inference directly in the terminal: llama cli -hf addyo07/vox-models:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf addyo07/vox-models:Q4_K_M # Run inference directly in the terminal: llama cli -hf addyo07/vox-models: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 addyo07/vox-models:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf addyo07/vox-models: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 addyo07/vox-models:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf addyo07/vox-models:Q4_K_M
Use Docker
docker model run hf.co/addyo07/vox-models:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use addyo07/vox-models with Ollama:
ollama run hf.co/addyo07/vox-models:Q4_K_M
- Unsloth Studio
How to use addyo07/vox-models 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 addyo07/vox-models 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 addyo07/vox-models to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for addyo07/vox-models to start chatting
- Pi
How to use addyo07/vox-models with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf addyo07/vox-models: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": "addyo07/vox-models:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use addyo07/vox-models with Docker Model Runner:
docker model run hf.co/addyo07/vox-models:Q4_K_M
- Lemonade
How to use addyo07/vox-models with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull addyo07/vox-models:Q4_K_M
Run and chat with the model
lemonade run user.vox-models-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use addyo07/vox-models with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf addyo07/vox-models: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 addyo07/vox-models:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use addyo07/vox-models with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf addyo07/vox-models: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 "addyo07/vox-models: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"
addy-hypr4 commited on
Commit ·
bcfbf2d
1
Parent(s): b64f835
feat: changes default base llm from llama to qwen
Browse files- models_manifest.json +11 -57
models_manifest.json
CHANGED
|
@@ -192,71 +192,25 @@
|
|
| 192 |
]
|
| 193 |
},
|
| 194 |
{
|
| 195 |
-
"id": "
|
| 196 |
-
"name": "
|
| 197 |
"category": "llm",
|
| 198 |
"subcategory": "main",
|
| 199 |
-
"description": "
|
| 200 |
-
"parameters": "
|
| 201 |
-
"ram_usage": "~
|
| 202 |
-
"tradeoffs": "
|
| 203 |
"version": "1.0.0",
|
| 204 |
"is_built_in": false,
|
| 205 |
"is_cloud": false,
|
| 206 |
"is_remote": false,
|
| 207 |
"files": [
|
| 208 |
{
|
| 209 |
-
"id": "
|
| 210 |
-
"path": "llm/
|
| 211 |
-
"size":
|
| 212 |
-
"sha256": "
|
| 213 |
-
"required":
|
| 214 |
-
}
|
| 215 |
-
]
|
| 216 |
-
},
|
| 217 |
-
{
|
| 218 |
-
"id": "llama_3_2_reasoning_q4",
|
| 219 |
-
"name": "Llama 3.2 1B (Q4)",
|
| 220 |
-
"category": "llm",
|
| 221 |
-
"subcategory": "main",
|
| 222 |
-
"description": "Fast and concise model. Optimized for ultra-low latency quick replies.",
|
| 223 |
-
"parameters": "1.2B (Q4_K_M)",
|
| 224 |
-
"ram_usage": "~750 MB",
|
| 225 |
-
"tradeoffs": "Ultra-fast response time; lightweight",
|
| 226 |
-
"version": "1.0.0",
|
| 227 |
-
"is_built_in": false,
|
| 228 |
-
"is_cloud": false,
|
| 229 |
-
"is_remote": false,
|
| 230 |
-
"files": [
|
| 231 |
-
{
|
| 232 |
-
"id": "llm_llama_3_2_1b_instruct_q4_k_m",
|
| 233 |
-
"path": "llm/llama/llama-3.2-1b-q4_k_m.gguf",
|
| 234 |
-
"size": 807694464,
|
| 235 |
-
"sha256": "6f85a640a97cf2bf5b8e764087b1e83da0fdb51d7c9fab7d0fece9385611df83",
|
| 236 |
-
"required": false
|
| 237 |
-
}
|
| 238 |
-
]
|
| 239 |
-
},
|
| 240 |
-
{
|
| 241 |
-
"id": "llama_3_2_reasoning",
|
| 242 |
-
"name": "Llama 3.2 1B (Q6)",
|
| 243 |
-
"category": "llm",
|
| 244 |
-
"subcategory": "main",
|
| 245 |
-
"description": "Higher precision model. Delivers detailed, high-fidelity answers.",
|
| 246 |
-
"parameters": "1.2B (Q6_K)",
|
| 247 |
-
"ram_usage": "~1.0 GB",
|
| 248 |
-
"tradeoffs": "Higher output fidelity; slightly slower response",
|
| 249 |
-
"version": "1.0.0",
|
| 250 |
-
"is_built_in": false,
|
| 251 |
-
"is_cloud": false,
|
| 252 |
-
"is_remote": false,
|
| 253 |
-
"files": [
|
| 254 |
-
{
|
| 255 |
-
"id": "llm_llama_3_2_1b_instruct_q6_k",
|
| 256 |
-
"path": "llm/llama/llama-3.2-1b-q6_k.gguf",
|
| 257 |
-
"size": 1021800576,
|
| 258 |
-
"sha256": "0f4c510daf16e0d1b3bc94931fd9296c28936bebdda2593687d4eb70c5b70628",
|
| 259 |
-
"required": false
|
| 260 |
}
|
| 261 |
]
|
| 262 |
},
|
|
|
|
| 192 |
]
|
| 193 |
},
|
| 194 |
{
|
| 195 |
+
"id": "qwen_3_5_0_8b",
|
| 196 |
+
"name": "Qwen 3.5 0.8B (Q4)",
|
| 197 |
"category": "llm",
|
| 198 |
"subcategory": "main",
|
| 199 |
+
"description": "Ultra-fast and intelligent multilingual conversational engine with official ChatML template.",
|
| 200 |
+
"parameters": "0.8B (Q4_K_M)",
|
| 201 |
+
"ram_usage": "~550 MB",
|
| 202 |
+
"tradeoffs": "Extremely fast TTFT and high throughput for English and Hindi conversational inference",
|
| 203 |
"version": "1.0.0",
|
| 204 |
"is_built_in": false,
|
| 205 |
"is_cloud": false,
|
| 206 |
"is_remote": false,
|
| 207 |
"files": [
|
| 208 |
{
|
| 209 |
+
"id": "llm_qwen_3_5_0_8b_q4_k_m",
|
| 210 |
+
"path": "llm/qwen/qwen-3.5-0.8b-q4_k_m.gguf",
|
| 211 |
+
"size": 532517120,
|
| 212 |
+
"sha256": "bd258782e35f7f458f8aced1adc053e6e92e89bc735ba3be89d38a06121dc517",
|
| 213 |
+
"required": true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 214 |
}
|
| 215 |
]
|
| 216 |
},
|