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
korean
korean-llm
darwin
imatrix
Instructions to use FINAL-Bench/POCKET-KR-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-KR-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="FINAL-Bench/POCKET-KR-GGUF", filename="POCKET-KR-160-Q2_K.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-KR-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-KR-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf FINAL-Bench/POCKET-KR-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf FINAL-Bench/POCKET-KR-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf FINAL-Bench/POCKET-KR-GGUF:Q2_K
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-KR-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf FINAL-Bench/POCKET-KR-GGUF:Q2_K
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-KR-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf FINAL-Bench/POCKET-KR-GGUF:Q2_K
Use Docker
docker model run hf.co/FINAL-Bench/POCKET-KR-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use FINAL-Bench/POCKET-KR-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-KR-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-KR-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/FINAL-Bench/POCKET-KR-GGUF:Q2_K
- Ollama
How to use FINAL-Bench/POCKET-KR-GGUF with Ollama:
ollama run hf.co/FINAL-Bench/POCKET-KR-GGUF:Q2_K
- Unsloth Studio
How to use FINAL-Bench/POCKET-KR-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-KR-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-KR-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-KR-GGUF to start chatting
- Pi
How to use FINAL-Bench/POCKET-KR-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-KR-GGUF:Q2_K
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-KR-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use FINAL-Bench/POCKET-KR-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-KR-GGUF:Q2_K
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-KR-GGUF:Q2_K
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use FINAL-Bench/POCKET-KR-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-KR-GGUF:Q2_K
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-KR-GGUF:Q2_K" \ --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-KR-GGUF with Docker Model Runner:
docker model run hf.co/FINAL-Bench/POCKET-KR-GGUF:Q2_K
- Lemonade
How to use FINAL-Bench/POCKET-KR-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull FINAL-Bench/POCKET-KR-GGUF:Q2_K
Run and chat with the model
lemonade run user.POCKET-KR-GGUF-Q2_K
List all available models
lemonade list
File size: 2,322 Bytes
30c1443 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 680 420" width="680" height="420" role="img" font-family="Segoe UI, Helvetica, Arial, sans-serif">
<title>POCKET vs Bonsai measured generation speed</title>
<desc>Same machine, stock llama.cpp. POCKET wins generation on CPU 2.69x and on GPU 2.22x; Bonsai wins GPU prompt processing.</desc>
<rect width="680" height="420" fill="#ffffff"/>
<text x="40" y="34" fill="#0b0b0b" font-size="19" font-weight="700">Generation speed (tok/s) — same machine, stock llama.cpp</text>
<text x="40" y="56" fill="#6b7280" font-size="13">POCKET-35B IQ1_M (7.66 GB) vs Bonsai-27B Q1_0 (3.53 GB) · higher is better</text>
<text x="40" y="98" fill="#374151" font-size="14" font-weight="600">CPU · Xeon 16 threads</text>
<text x="40" y="132" fill="#6b7280" font-size="13">POCKET</text>
<rect x="150" y="118" width="405" height="20" rx="4" fill="#1baf7a"/>
<text x="562" y="133" fill="#0f6e56" font-size="13" font-weight="700">27.0</text>
<text x="40" y="160" fill="#6b7280" font-size="13">Bonsai</text>
<rect x="150" y="146" width="151" height="20" rx="4" fill="#c9c8c2"/>
<text x="308" y="161" fill="#6b7280" font-size="13" font-weight="700">10.1</text>
<text x="150" y="188" fill="#0f6e56" font-size="13" font-weight="700">POCKET 2.69x faster</text>
<text x="40" y="232" fill="#374151" font-size="14" font-weight="600">GPU · H100 NVL</text>
<text x="40" y="266" fill="#6b7280" font-size="13">POCKET</text>
<rect x="150" y="252" width="405" height="20" rx="4" fill="#1baf7a"/>
<text x="562" y="267" fill="#0f6e56" font-size="13" font-weight="700">197</text>
<text x="40" y="294" fill="#6b7280" font-size="13">Bonsai</text>
<rect x="150" y="280" width="182" height="20" rx="4" fill="#c9c8c2"/>
<text x="339" y="295" fill="#6b7280" font-size="13" font-weight="700">89</text>
<text x="150" y="322" fill="#0f6e56" font-size="13" font-weight="700">POCKET 2.22x faster</text>
<rect x="40" y="346" width="600" height="52" rx="8" fill="#faeeda" stroke="#ef9f27" stroke-width="1"/>
<text x="54" y="368" fill="#854f0b" font-size="13" font-weight="700">Honest caveat</text>
<text x="54" y="388" fill="#633806" font-size="12.5">GPU prompt-processing: Bonsai wins (1816 vs 753 tok/s). Quality (HellaSwag 400): tie, 61.0% vs 60.0%.</text>
</svg>
|