Catalog
huggingface/huggingface-local-models

huggingface

huggingface-local-models

Use to select models to run locally with llama.cpp and GGUF on CPU, Mac Metal, CUDA, or ROCm. Covers finding GGUFs, quant selection, running servers, exact GGUF file lookup, conversion, and OpenAI-compatible local serving.

global
New~932
v1.0Saved Jul 11, 2026

Hugging Face Local Models

Search the Hugging Face Hub for llama.cpp-compatible GGUF repos, choose the right quant, and launch the model with llama-cli or llama-server.

Default Workflow

  1. Search the Hub with apps=llama.cpp.
  2. Open https://huggingface.co/<repo>?local-app=llama.cpp.
  3. Prefer the exact HF local-app snippet and quant recommendation when it is visible.
  4. Confirm exact .gguf filenames with https://huggingface.co/api/models/<repo>/tree/main?recursive=true.
  5. Launch with llama-cli -hf <repo>:<QUANT> or llama-server -hf <repo>:<QUANT>.
  6. Fall back to --hf-repo plus --hf-file when the repo uses custom file naming.
  7. Convert from Transformers weights only if the repo does not already expose GGUF files.

Quick Start

Install llama.cpp

brew install llama.cpp
winget install llama.cpp
git clone https://github.com/ggml-org/llama.cpp
cd llama.cpp
make

Authenticate for gated repos

hf auth login

Search the Hub

https://huggingface.co/models?apps=llama.cpp&sort=trending
https://huggingface.co/models?search=Qwen3.6&apps=llama.cpp&sort=trending
https://huggingface.co/models?search=<term>&apps=llama.cpp&num_parameters=min:0,max:24B&sort=trending

Run directly from the Hub

llama-cli -hf unsloth/Qwen3.6-35B-A3B-GGUF:UD-Q4_K_M
llama-server -hf unsloth/Qwen3.6-35B-A3B-GGUF:UD-Q4_K_M

Run an exact GGUF file

llama-server \
    --hf-repo unsloth/Qwen3.6-35B-A3B-GGUF \
    --hf-file Qwen3.6-35B-A3B-UD-Q4_K_M.gguf \
    -c 4096

Convert only when no GGUF is available

hf download <repo-without-gguf> --local-dir ./model-src
python convert_hf_to_gguf.py ./model-src \
    --outfile model-f16.gguf \
    --outtype f16
llama-quantize model-f16.gguf model-q4_k_m.gguf Q4_K_M

Smoke test a local server

llama-server -hf unsloth/Qwen3.6-35B-A3B-GGUF:UD-Q4_K_M
curl http://localhost:8080/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer no-key" \
  -d '{
    "messages": [
      {"role": "user", "content": "Write a limerick about exception handling"}
    ]
  }'

Quant Choice

  • Prefer the exact quant that HF marks as compatible on the ?local-app=llama.cpp page.
  • Keep repo-native labels such as UD-Q4_K_M instead of normalizing them.
  • Default to Q4_K_M unless the repo page or hardware profile suggests otherwise.
  • Prefer Q5_K_M or Q6_K for code or technical workloads when memory allows.
  • Consider Q3_K_M, Q4_K_S, or repo-specific IQ / UD-* variants for tighter RAM or VRAM budgets.
  • Treat mmproj-*.gguf files as projector weights, not the main checkpoint.

Load References

  • Read hub-discovery.md for URL-first workflows, model search, tree API extraction, and command reconstruction.
  • Read quantization.md for format tables, model scaling, quality tradeoffs, and imatrix.
  • Read hardware.md for Metal, CUDA, ROCm, or CPU build and acceleration details.

Resources

  • llama.cpp: https://github.com/ggml-org/llama.cpp
  • Hugging Face GGUF + llama.cpp docs: https://huggingface.co/docs/hub/gguf-llamacpp
  • Hugging Face Local Apps docs: https://huggingface.co/docs/hub/main/local-apps
  • Hugging Face Local Agents docs: https://huggingface.co/docs/hub/agents-local
  • GGUF converter Space: https://huggingface.co/spaces/ggml-org/gguf-my-repo
Files4
4 files · 22.9 KB

Select a file to preview

Overall Score

86/100

Grade

A

Excellent

Safety

85

Quality

88

Clarity

87

Completeness

82

Summary

This skill guides agents to search Hugging Face Hub for GGUF models compatible with llama.cpp, select appropriate quantizations, and launch local inference servers on various hardware (CPU, Apple Metal, CUDA, ROCm). It provides URL-first workflows, hardware-specific acceleration examples, quantization selection heuristics, and model conversion guidance.

Static Analysis Findings

1 finding

Patterns detected by deterministic static analysis before AI scoring. Hover over any finding code for detailed information and remediation guidance.

Network Access
SEC-060Outbound Network Request

Outbound network request (curl/wget/fetch)

SKILL.mdcurl http://

Detected Capabilities

http requestshell command executioncode example generationURL construction and fetchingfile download and conversion

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

find gguf modelsselect quantizationrun llama-serverlocal inference setupconvert to ggufmodel quant selectionllama.cpp local models

Risk Signals

INFO

curl http://localhost:8080/v1/chat/completions used for testing local server

SKILL.md, Smoke test section
INFO

Network requests to huggingface.co and api endpoints for model discovery

SKILL.md, hub-discovery.md, references
INFO

Shell commands for downloading, converting, and quantizing models

SKILL.md, quantization.md examples

Referenced Domains

External domains referenced in skill content, detected by static analysis.

github.comhuggingface.colocalhostwww.apache.org

Use Cases

  • Find and select GGUF models for local CPU/GPU inference
  • Choose the correct quantization based on hardware and use case
  • Launch llama-server with optimal settings for different accelerators
  • Convert Hugging Face transformer models to GGUF format
  • Query Hugging Face API and local-app pages to confirm model availability
  • Test local inference servers with API calls

Quality Notes

  • Excellent use of URL-first workflows — agents are guided to inspect pages before running commands
  • Comprehensive quantization tables with concrete trade-offs (perplexity, size, speed)
  • Clear hardware-specific acceleration guidance (Metal, CUDA, ROCm, CPU BLAS)
  • Well-organized reference files with separate concerns (discovery, quantization, hardware)
  • Practical examples for common repos (unsloth/Qwen3.6-35B-A3B-GGUF) with exact commands
  • Good error handling guidance in troubleshooting section
  • Scope is well-bounded to model selection and local inference setup
  • All referenced supporting files are present and complete
Model: claude-haiku-4-5-20251001Analyzed: Jul 11, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Add huggingface/huggingface-local-models to your library

Command Palette

Search for a command to run...