Text Generation
GGUF
llama.cpp
conversational
on-device
mobile
iphone
android
cpu
local-llm
edge
mixture-of-experts
Mixture of Experts
quantized
pocket
vidraft
qwen3_5_moe
darwin
imatrix
Instructions to use FINAL-Bench/POCKET-35B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use FINAL-Bench/POCKET-35B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="FINAL-Bench/POCKET-35B-GGUF", filename="POCKET-35B-IQ1_M.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 FINAL-Bench/POCKET-35B-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 FINAL-Bench/POCKET-35B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf FINAL-Bench/POCKET-35B-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 FINAL-Bench/POCKET-35B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf FINAL-Bench/POCKET-35B-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 FINAL-Bench/POCKET-35B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf FINAL-Bench/POCKET-35B-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 FINAL-Bench/POCKET-35B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf FINAL-Bench/POCKET-35B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/FINAL-Bench/POCKET-35B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use FINAL-Bench/POCKET-35B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "FINAL-Bench/POCKET-35B-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": "FINAL-Bench/POCKET-35B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/FINAL-Bench/POCKET-35B-GGUF:Q4_K_M
- Ollama
How to use FINAL-Bench/POCKET-35B-GGUF with Ollama:
ollama run hf.co/FINAL-Bench/POCKET-35B-GGUF:Q4_K_M
- Unsloth Studio
How to use FINAL-Bench/POCKET-35B-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 FINAL-Bench/POCKET-35B-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 FINAL-Bench/POCKET-35B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for FINAL-Bench/POCKET-35B-GGUF to start chatting
- Pi
How to use FINAL-Bench/POCKET-35B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf FINAL-Bench/POCKET-35B-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": "FINAL-Bench/POCKET-35B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use FINAL-Bench/POCKET-35B-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 FINAL-Bench/POCKET-35B-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 FINAL-Bench/POCKET-35B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use FINAL-Bench/POCKET-35B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf FINAL-Bench/POCKET-35B-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 "FINAL-Bench/POCKET-35B-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 FINAL-Bench/POCKET-35B-GGUF with Docker Model Runner:
docker model run hf.co/FINAL-Bench/POCKET-35B-GGUF:Q4_K_M
- Lemonade
How to use FINAL-Bench/POCKET-35B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull FINAL-Bench/POCKET-35B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.POCKET-35B-GGUF-Q4_K_M
List all available models
lemonade list
| <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 460" width="1200" height="460" role="img" font-family="Segoe UI, Helvetica, Arial, sans-serif"> | |
| <title>POCKET-35B — a 35B model that runs on iPhone and on PC with no GPU, using stock llama.cpp</title> | |
| <defs> | |
| <linearGradient id="bg2" x1="0" y1="0" x2="1" y2="1"><stop offset="0" stop-color="#0d1424"/><stop offset="1" stop-color="#05070d"/></linearGradient> | |
| <linearGradient id="gold2" x1="0" y1="0" x2="1" y2="0"><stop offset="0" stop-color="#ffd76a"/><stop offset="1" stop-color="#f0992a"/></linearGradient> | |
| </defs> | |
| <rect width="1200" height="460" rx="20" fill="url(#bg2)"/> | |
| <rect x="0.5" y="0.5" width="1199" height="459" rx="20" fill="none" stroke="#1e2a44"/> | |
| <text x="70" y="118" fill="url(#gold2)" font-size="92" font-weight="800" letter-spacing="3">POCKET-35B</text> | |
| <text x="72" y="178" fill="#eef2fa" font-size="30" font-weight="700">A 35B model that runs on your <tspan fill="#5dd0a8">iPhone</tspan> —</text> | |
| <text x="72" y="218" fill="#eef2fa" font-size="30" font-weight="700">and on your PC with <tspan fill="#ffd76a">no GPU</tspan>.</text> | |
| <text x="72" y="262" fill="#9fb0d4" font-size="22" font-weight="500">Just stock <tspan fill="#e8edf7" font-weight="700">llama.cpp</tspan>. <tspan fill="#f0992a" font-weight="700">No fork</tspan>, no CUDA, no cloud.</text> | |
| <g font-weight="700"> | |
| <rect x="72" y="300" width="256" height="92" rx="14" fill="#101a30" stroke="#243456"/> | |
| <text x="92" y="336" fill="#5dd0a8" font-size="22">iPhone-ready</text> | |
| <text x="92" y="366" fill="#8fa0c4" font-size="16" font-weight="500">5 GB · Korean & English</text> | |
| <rect x="344" y="300" width="256" height="92" rx="14" fill="#101a30" stroke="#243456"/> | |
| <text x="364" y="336" fill="#ffd76a" font-size="22">CPU-only</text> | |
| <text x="364" y="366" fill="#8fa0c4" font-size="16" font-weight="500">27 tok/s · no GPU needed</text> | |
| <rect x="616" y="300" width="272" height="92" rx="14" fill="#101a30" stroke="#243456"/> | |
| <text x="636" y="336" fill="#f0992a" font-size="22">Stock runtime</text> | |
| <text x="636" y="366" fill="#8fa0c4" font-size="16" font-weight="500">LM Studio · Ollama · PocketPal</text> | |
| </g> | |
| <text x="72" y="428" fill="#5b6b8f" font-size="16">34.66B total · ~3B active/token · sparse Mixture-of-Experts, Korean-tuned</text> | |
| <g transform="translate(950,80)"> | |
| <rect x="0" y="0" width="180" height="300" rx="28" fill="#0a1020" stroke="#2a3a5e" stroke-width="3"/> | |
| <rect x="13" y="28" width="154" height="234" rx="10" fill="#0e1830"/> | |
| <circle cx="90" cy="16" r="4" fill="#2a3a5e"/> | |
| <text x="90" y="125" fill="url(#gold2)" font-size="62" font-weight="800" text-anchor="middle">35B</text> | |
| <text x="90" y="162" fill="#5dd0a8" font-size="20" font-weight="700" text-anchor="middle">runs here.</text> | |
| <rect x="45" y="196" width="90" height="32" rx="16" fill="#152340"/> | |
| <text x="90" y="218" fill="#8fa0c4" font-size="15" font-weight="600" text-anchor="middle">no GPU</text> | |
| </g> | |
| </svg> | |