[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-huggingface-huggingface-local-models":3,"mdc-6lslgk-key":38,"related-org-huggingface-huggingface-local-models":993,"related-repo-huggingface-huggingface-local-models":1164},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":27,"repoUrl":28,"updatedAt":29,"license":30,"forks":31,"topics":32,"repo":33,"sourceUrl":36,"mdContent":37},"huggingface-local-models","run Hugging Face models locally","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.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"huggingface","Hugging Face","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fhuggingface.png",[12,15,18,21,24],{"name":9,"slug":13,"type":14},"hugging-face","tag",{"name":16,"slug":17,"type":14},"LLM","llm",{"name":19,"slug":20,"type":14},"Local Development","local-development",{"name":22,"slug":23,"type":14},"Python","python",{"name":25,"slug":26,"type":14},"AI Infrastructure","ai-infrastructure",10861,"https:\u002F\u002Fgithub.com\u002Fhuggingface\u002Fskills","2026-04-23T05:06:02.279607",null,721,[],{"repoUrl":28,"stars":27,"forks":31,"topics":34,"description":35},[],"Give your agents the power of the Hugging Face ecosystem","https:\u002F\u002Fgithub.com\u002Fhuggingface\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fhuggingface-local-models","---\nname: huggingface-local-models\ndescription: \"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.\"\n---\n\n# Hugging Face Local Models\n\nSearch the Hugging Face Hub for llama.cpp-compatible GGUF repos, choose the right quant, and launch the model with `llama-cli` or `llama-server`.\n\n## Default Workflow\n\n1. Search the Hub with `apps=llama.cpp`.\n2. Open `https:\u002F\u002Fhuggingface.co\u002F\u003Crepo>?local-app=llama.cpp`.\n3. Prefer the exact HF local-app snippet and quant recommendation when it is visible.\n4. Confirm exact `.gguf` filenames with `https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fmodels\u002F\u003Crepo>\u002Ftree\u002Fmain?recursive=true`.\n5. Launch with `llama-cli -hf \u003Crepo>:\u003CQUANT>` or `llama-server -hf \u003Crepo>:\u003CQUANT>`.\n6. Fall back to `--hf-repo` plus `--hf-file` when the repo uses custom file naming.\n7. Convert from Transformers weights only if the repo does not already expose GGUF files.\n\n## Quick Start\n\n### Install llama.cpp\n\n```bash\nbrew install llama.cpp\nwinget install llama.cpp\n```\n\n```bash\ngit clone https:\u002F\u002Fgithub.com\u002Fggml-org\u002Fllama.cpp\ncd llama.cpp\nmake\n```\n\n### Authenticate for gated repos\n\n```bash\nhf auth login\n```\n\n### Search the Hub\n\n```text\nhttps:\u002F\u002Fhuggingface.co\u002Fmodels?apps=llama.cpp&sort=trending\nhttps:\u002F\u002Fhuggingface.co\u002Fmodels?search=Qwen3.6&apps=llama.cpp&sort=trending\nhttps:\u002F\u002Fhuggingface.co\u002Fmodels?search=\u003Cterm>&apps=llama.cpp&num_parameters=min:0,max:24B&sort=trending\n```\n\n### Run directly from the Hub\n\n```bash\nllama-cli -hf unsloth\u002FQwen3.6-35B-A3B-GGUF:UD-Q4_K_M\nllama-server -hf unsloth\u002FQwen3.6-35B-A3B-GGUF:UD-Q4_K_M\n```\n\n### Run an exact GGUF file\n\n```bash\nllama-server \\\n    --hf-repo unsloth\u002FQwen3.6-35B-A3B-GGUF \\\n    --hf-file Qwen3.6-35B-A3B-UD-Q4_K_M.gguf \\\n    -c 4096\n```\n\n### Convert only when no GGUF is available\n\n```bash\nhf download \u003Crepo-without-gguf> --local-dir .\u002Fmodel-src\npython convert_hf_to_gguf.py .\u002Fmodel-src \\\n    --outfile model-f16.gguf \\\n    --outtype f16\nllama-quantize model-f16.gguf model-q4_k_m.gguf Q4_K_M\n```\n\n### Smoke test a local server\n\n```bash\nllama-server -hf unsloth\u002FQwen3.6-35B-A3B-GGUF:UD-Q4_K_M\n```\n\n```bash\ncurl http:\u002F\u002Flocalhost:8080\u002Fv1\u002Fchat\u002Fcompletions \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -H \"Authorization: Bearer no-key\" \\\n  -d '{\n    \"messages\": [\n      {\"role\": \"user\", \"content\": \"Write a limerick about exception handling\"}\n    ]\n  }'\n```\n\n## Quant Choice\n\n- Prefer the exact quant that HF marks as compatible on the `?local-app=llama.cpp` page.\n- Keep repo-native labels such as `UD-Q4_K_M` instead of normalizing them.\n- Default to `Q4_K_M` unless the repo page or hardware profile suggests otherwise.\n- Prefer `Q5_K_M` or `Q6_K` for code or technical workloads when memory allows.\n- Consider `Q3_K_M`, `Q4_K_S`, or repo-specific `IQ` \u002F `UD-*` variants for tighter RAM or VRAM budgets.\n- Treat `mmproj-*.gguf` files as projector weights, not the main checkpoint.\n\n## Load References\n\n- Read [hub-discovery.md](references\u002Fhub-discovery.md) for URL-first workflows, model search, tree API extraction, and command reconstruction.\n- Read [quantization.md](references\u002Fquantization.md) for format tables, model scaling, quality tradeoffs, and `imatrix`.\n- Read [hardware.md](references\u002Fhardware.md) for Metal, CUDA, ROCm, or CPU build and acceleration details.\n\n## Resources\n\n- llama.cpp: `https:\u002F\u002Fgithub.com\u002Fggml-org\u002Fllama.cpp`\n- Hugging Face GGUF + llama.cpp docs: `https:\u002F\u002Fhuggingface.co\u002Fdocs\u002Fhub\u002Fgguf-llamacpp`\n- Hugging Face Local Apps docs: `https:\u002F\u002Fhuggingface.co\u002Fdocs\u002Fhub\u002Fmain\u002Flocal-apps`\n- Hugging Face Local Agents docs: `https:\u002F\u002Fhuggingface.co\u002Fdocs\u002Fhub\u002Fagents-local`\n- GGUF converter Space: `https:\u002F\u002Fhuggingface.co\u002Fspaces\u002Fggml-org\u002Fgguf-my-repo`\n",{"data":39,"body":40},{"name":4,"description":6},{"type":41,"children":42},"root",[43,52,75,82,181,187,194,245,292,298,323,329,339,345,384,390,459,465,589,595,617,750,756,869,875,923,929,987],{"type":44,"tag":45,"props":46,"children":48},"element","h1",{"id":47},"hugging-face-local-models",[49],{"type":50,"value":51},"text","Hugging Face Local Models",{"type":44,"tag":53,"props":54,"children":55},"p",{},[56,58,65,67,73],{"type":50,"value":57},"Search the Hugging Face Hub for llama.cpp-compatible GGUF repos, choose the right quant, and launch the model with ",{"type":44,"tag":59,"props":60,"children":62},"code",{"className":61},[],[63],{"type":50,"value":64},"llama-cli",{"type":50,"value":66}," or ",{"type":44,"tag":59,"props":68,"children":70},{"className":69},[],[71],{"type":50,"value":72},"llama-server",{"type":50,"value":74},".",{"type":44,"tag":76,"props":77,"children":79},"h2",{"id":78},"default-workflow",[80],{"type":50,"value":81},"Default Workflow",{"type":44,"tag":83,"props":84,"children":85},"ol",{},[86,99,111,116,136,155,176],{"type":44,"tag":87,"props":88,"children":89},"li",{},[90,92,98],{"type":50,"value":91},"Search the Hub with ",{"type":44,"tag":59,"props":93,"children":95},{"className":94},[],[96],{"type":50,"value":97},"apps=llama.cpp",{"type":50,"value":74},{"type":44,"tag":87,"props":100,"children":101},{},[102,104,110],{"type":50,"value":103},"Open ",{"type":44,"tag":59,"props":105,"children":107},{"className":106},[],[108],{"type":50,"value":109},"https:\u002F\u002Fhuggingface.co\u002F\u003Crepo>?local-app=llama.cpp",{"type":50,"value":74},{"type":44,"tag":87,"props":112,"children":113},{},[114],{"type":50,"value":115},"Prefer the exact HF local-app snippet and quant recommendation when it is visible.",{"type":44,"tag":87,"props":117,"children":118},{},[119,121,127,129,135],{"type":50,"value":120},"Confirm exact ",{"type":44,"tag":59,"props":122,"children":124},{"className":123},[],[125],{"type":50,"value":126},".gguf",{"type":50,"value":128}," filenames with ",{"type":44,"tag":59,"props":130,"children":132},{"className":131},[],[133],{"type":50,"value":134},"https:\u002F\u002Fhuggingface.co\u002Fapi\u002Fmodels\u002F\u003Crepo>\u002Ftree\u002Fmain?recursive=true",{"type":50,"value":74},{"type":44,"tag":87,"props":137,"children":138},{},[139,141,147,148,154],{"type":50,"value":140},"Launch with ",{"type":44,"tag":59,"props":142,"children":144},{"className":143},[],[145],{"type":50,"value":146},"llama-cli -hf \u003Crepo>:\u003CQUANT>",{"type":50,"value":66},{"type":44,"tag":59,"props":149,"children":151},{"className":150},[],[152],{"type":50,"value":153},"llama-server -hf \u003Crepo>:\u003CQUANT>",{"type":50,"value":74},{"type":44,"tag":87,"props":156,"children":157},{},[158,160,166,168,174],{"type":50,"value":159},"Fall back to ",{"type":44,"tag":59,"props":161,"children":163},{"className":162},[],[164],{"type":50,"value":165},"--hf-repo",{"type":50,"value":167}," plus ",{"type":44,"tag":59,"props":169,"children":171},{"className":170},[],[172],{"type":50,"value":173},"--hf-file",{"type":50,"value":175}," when the repo uses custom file naming.",{"type":44,"tag":87,"props":177,"children":178},{},[179],{"type":50,"value":180},"Convert from Transformers weights only if the repo does not already expose GGUF files.",{"type":44,"tag":76,"props":182,"children":184},{"id":183},"quick-start",[185],{"type":50,"value":186},"Quick Start",{"type":44,"tag":188,"props":189,"children":191},"h3",{"id":190},"install-llamacpp",[192],{"type":50,"value":193},"Install llama.cpp",{"type":44,"tag":195,"props":196,"children":201},"pre",{"className":197,"code":198,"language":199,"meta":200,"style":200},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","brew install llama.cpp\nwinget install llama.cpp\n","bash","",[202],{"type":44,"tag":59,"props":203,"children":204},{"__ignoreMap":200},[205,228],{"type":44,"tag":206,"props":207,"children":210},"span",{"class":208,"line":209},"line",1,[211,217,223],{"type":44,"tag":206,"props":212,"children":214},{"style":213},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[215],{"type":50,"value":216},"brew",{"type":44,"tag":206,"props":218,"children":220},{"style":219},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[221],{"type":50,"value":222}," install",{"type":44,"tag":206,"props":224,"children":225},{"style":219},[226],{"type":50,"value":227}," llama.cpp\n",{"type":44,"tag":206,"props":229,"children":231},{"class":208,"line":230},2,[232,237,241],{"type":44,"tag":206,"props":233,"children":234},{"style":213},[235],{"type":50,"value":236},"winget",{"type":44,"tag":206,"props":238,"children":239},{"style":219},[240],{"type":50,"value":222},{"type":44,"tag":206,"props":242,"children":243},{"style":219},[244],{"type":50,"value":227},{"type":44,"tag":195,"props":246,"children":248},{"className":197,"code":247,"language":199,"meta":200,"style":200},"git clone https:\u002F\u002Fgithub.com\u002Fggml-org\u002Fllama.cpp\ncd llama.cpp\nmake\n",[249],{"type":44,"tag":59,"props":250,"children":251},{"__ignoreMap":200},[252,270,283],{"type":44,"tag":206,"props":253,"children":254},{"class":208,"line":209},[255,260,265],{"type":44,"tag":206,"props":256,"children":257},{"style":213},[258],{"type":50,"value":259},"git",{"type":44,"tag":206,"props":261,"children":262},{"style":219},[263],{"type":50,"value":264}," clone",{"type":44,"tag":206,"props":266,"children":267},{"style":219},[268],{"type":50,"value":269}," https:\u002F\u002Fgithub.com\u002Fggml-org\u002Fllama.cpp\n",{"type":44,"tag":206,"props":271,"children":272},{"class":208,"line":230},[273,279],{"type":44,"tag":206,"props":274,"children":276},{"style":275},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[277],{"type":50,"value":278},"cd",{"type":44,"tag":206,"props":280,"children":281},{"style":219},[282],{"type":50,"value":227},{"type":44,"tag":206,"props":284,"children":286},{"class":208,"line":285},3,[287],{"type":44,"tag":206,"props":288,"children":289},{"style":213},[290],{"type":50,"value":291},"make\n",{"type":44,"tag":188,"props":293,"children":295},{"id":294},"authenticate-for-gated-repos",[296],{"type":50,"value":297},"Authenticate for gated repos",{"type":44,"tag":195,"props":299,"children":301},{"className":197,"code":300,"language":199,"meta":200,"style":200},"hf auth login\n",[302],{"type":44,"tag":59,"props":303,"children":304},{"__ignoreMap":200},[305],{"type":44,"tag":206,"props":306,"children":307},{"class":208,"line":209},[308,313,318],{"type":44,"tag":206,"props":309,"children":310},{"style":213},[311],{"type":50,"value":312},"hf",{"type":44,"tag":206,"props":314,"children":315},{"style":219},[316],{"type":50,"value":317}," auth",{"type":44,"tag":206,"props":319,"children":320},{"style":219},[321],{"type":50,"value":322}," login\n",{"type":44,"tag":188,"props":324,"children":326},{"id":325},"search-the-hub",[327],{"type":50,"value":328},"Search the Hub",{"type":44,"tag":195,"props":330,"children":334},{"className":331,"code":333,"language":50,"meta":200},[332],"language-text","https:\u002F\u002Fhuggingface.co\u002Fmodels?apps=llama.cpp&sort=trending\nhttps:\u002F\u002Fhuggingface.co\u002Fmodels?search=Qwen3.6&apps=llama.cpp&sort=trending\nhttps:\u002F\u002Fhuggingface.co\u002Fmodels?search=\u003Cterm>&apps=llama.cpp&num_parameters=min:0,max:24B&sort=trending\n",[335],{"type":44,"tag":59,"props":336,"children":337},{"__ignoreMap":200},[338],{"type":50,"value":333},{"type":44,"tag":188,"props":340,"children":342},{"id":341},"run-directly-from-the-hub",[343],{"type":50,"value":344},"Run directly from the Hub",{"type":44,"tag":195,"props":346,"children":348},{"className":197,"code":347,"language":199,"meta":200,"style":200},"llama-cli -hf unsloth\u002FQwen3.6-35B-A3B-GGUF:UD-Q4_K_M\nllama-server -hf unsloth\u002FQwen3.6-35B-A3B-GGUF:UD-Q4_K_M\n",[349],{"type":44,"tag":59,"props":350,"children":351},{"__ignoreMap":200},[352,369],{"type":44,"tag":206,"props":353,"children":354},{"class":208,"line":209},[355,359,364],{"type":44,"tag":206,"props":356,"children":357},{"style":213},[358],{"type":50,"value":64},{"type":44,"tag":206,"props":360,"children":361},{"style":219},[362],{"type":50,"value":363}," -hf",{"type":44,"tag":206,"props":365,"children":366},{"style":219},[367],{"type":50,"value":368}," unsloth\u002FQwen3.6-35B-A3B-GGUF:UD-Q4_K_M\n",{"type":44,"tag":206,"props":370,"children":371},{"class":208,"line":230},[372,376,380],{"type":44,"tag":206,"props":373,"children":374},{"style":213},[375],{"type":50,"value":72},{"type":44,"tag":206,"props":377,"children":378},{"style":219},[379],{"type":50,"value":363},{"type":44,"tag":206,"props":381,"children":382},{"style":219},[383],{"type":50,"value":368},{"type":44,"tag":188,"props":385,"children":387},{"id":386},"run-an-exact-gguf-file",[388],{"type":50,"value":389},"Run an exact GGUF file",{"type":44,"tag":195,"props":391,"children":393},{"className":197,"code":392,"language":199,"meta":200,"style":200},"llama-server \\\n    --hf-repo unsloth\u002FQwen3.6-35B-A3B-GGUF \\\n    --hf-file Qwen3.6-35B-A3B-UD-Q4_K_M.gguf \\\n    -c 4096\n",[394],{"type":44,"tag":59,"props":395,"children":396},{"__ignoreMap":200},[397,410,427,444],{"type":44,"tag":206,"props":398,"children":399},{"class":208,"line":209},[400,404],{"type":44,"tag":206,"props":401,"children":402},{"style":213},[403],{"type":50,"value":72},{"type":44,"tag":206,"props":405,"children":407},{"style":406},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[408],{"type":50,"value":409}," \\\n",{"type":44,"tag":206,"props":411,"children":412},{"class":208,"line":230},[413,418,423],{"type":44,"tag":206,"props":414,"children":415},{"style":219},[416],{"type":50,"value":417},"    --hf-repo",{"type":44,"tag":206,"props":419,"children":420},{"style":219},[421],{"type":50,"value":422}," unsloth\u002FQwen3.6-35B-A3B-GGUF",{"type":44,"tag":206,"props":424,"children":425},{"style":406},[426],{"type":50,"value":409},{"type":44,"tag":206,"props":428,"children":429},{"class":208,"line":285},[430,435,440],{"type":44,"tag":206,"props":431,"children":432},{"style":219},[433],{"type":50,"value":434},"    --hf-file",{"type":44,"tag":206,"props":436,"children":437},{"style":219},[438],{"type":50,"value":439}," Qwen3.6-35B-A3B-UD-Q4_K_M.gguf",{"type":44,"tag":206,"props":441,"children":442},{"style":406},[443],{"type":50,"value":409},{"type":44,"tag":206,"props":445,"children":447},{"class":208,"line":446},4,[448,453],{"type":44,"tag":206,"props":449,"children":450},{"style":219},[451],{"type":50,"value":452},"    -c",{"type":44,"tag":206,"props":454,"children":456},{"style":455},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[457],{"type":50,"value":458}," 4096\n",{"type":44,"tag":188,"props":460,"children":462},{"id":461},"convert-only-when-no-gguf-is-available",[463],{"type":50,"value":464},"Convert only when no GGUF is available",{"type":44,"tag":195,"props":466,"children":468},{"className":197,"code":467,"language":199,"meta":200,"style":200},"hf download \u003Crepo-without-gguf> --local-dir .\u002Fmodel-src\npython convert_hf_to_gguf.py .\u002Fmodel-src \\\n    --outfile model-f16.gguf \\\n    --outtype f16\nllama-quantize model-f16.gguf model-q4_k_m.gguf Q4_K_M\n",[469],{"type":44,"tag":59,"props":470,"children":471},{"__ignoreMap":200},[472,515,536,553,566],{"type":44,"tag":206,"props":473,"children":474},{"class":208,"line":209},[475,479,484,490,495,500,505,510],{"type":44,"tag":206,"props":476,"children":477},{"style":213},[478],{"type":50,"value":312},{"type":44,"tag":206,"props":480,"children":481},{"style":219},[482],{"type":50,"value":483}," download",{"type":44,"tag":206,"props":485,"children":487},{"style":486},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[488],{"type":50,"value":489}," \u003C",{"type":44,"tag":206,"props":491,"children":492},{"style":219},[493],{"type":50,"value":494},"repo-without-ggu",{"type":44,"tag":206,"props":496,"children":497},{"style":406},[498],{"type":50,"value":499},"f",{"type":44,"tag":206,"props":501,"children":502},{"style":486},[503],{"type":50,"value":504},">",{"type":44,"tag":206,"props":506,"children":507},{"style":219},[508],{"type":50,"value":509}," --local-dir",{"type":44,"tag":206,"props":511,"children":512},{"style":219},[513],{"type":50,"value":514}," .\u002Fmodel-src\n",{"type":44,"tag":206,"props":516,"children":517},{"class":208,"line":230},[518,522,527,532],{"type":44,"tag":206,"props":519,"children":520},{"style":213},[521],{"type":50,"value":23},{"type":44,"tag":206,"props":523,"children":524},{"style":219},[525],{"type":50,"value":526}," convert_hf_to_gguf.py",{"type":44,"tag":206,"props":528,"children":529},{"style":219},[530],{"type":50,"value":531}," .\u002Fmodel-src",{"type":44,"tag":206,"props":533,"children":534},{"style":406},[535],{"type":50,"value":409},{"type":44,"tag":206,"props":537,"children":538},{"class":208,"line":285},[539,544,549],{"type":44,"tag":206,"props":540,"children":541},{"style":219},[542],{"type":50,"value":543},"    --outfile",{"type":44,"tag":206,"props":545,"children":546},{"style":219},[547],{"type":50,"value":548}," model-f16.gguf",{"type":44,"tag":206,"props":550,"children":551},{"style":406},[552],{"type":50,"value":409},{"type":44,"tag":206,"props":554,"children":555},{"class":208,"line":446},[556,561],{"type":44,"tag":206,"props":557,"children":558},{"style":219},[559],{"type":50,"value":560},"    --outtype",{"type":44,"tag":206,"props":562,"children":563},{"style":219},[564],{"type":50,"value":565}," f16\n",{"type":44,"tag":206,"props":567,"children":569},{"class":208,"line":568},5,[570,575,579,584],{"type":44,"tag":206,"props":571,"children":572},{"style":213},[573],{"type":50,"value":574},"llama-quantize",{"type":44,"tag":206,"props":576,"children":577},{"style":219},[578],{"type":50,"value":548},{"type":44,"tag":206,"props":580,"children":581},{"style":219},[582],{"type":50,"value":583}," model-q4_k_m.gguf",{"type":44,"tag":206,"props":585,"children":586},{"style":219},[587],{"type":50,"value":588}," Q4_K_M\n",{"type":44,"tag":188,"props":590,"children":592},{"id":591},"smoke-test-a-local-server",[593],{"type":50,"value":594},"Smoke test a local server",{"type":44,"tag":195,"props":596,"children":598},{"className":197,"code":597,"language":199,"meta":200,"style":200},"llama-server -hf unsloth\u002FQwen3.6-35B-A3B-GGUF:UD-Q4_K_M\n",[599],{"type":44,"tag":59,"props":600,"children":601},{"__ignoreMap":200},[602],{"type":44,"tag":206,"props":603,"children":604},{"class":208,"line":209},[605,609,613],{"type":44,"tag":206,"props":606,"children":607},{"style":213},[608],{"type":50,"value":72},{"type":44,"tag":206,"props":610,"children":611},{"style":219},[612],{"type":50,"value":363},{"type":44,"tag":206,"props":614,"children":615},{"style":219},[616],{"type":50,"value":368},{"type":44,"tag":195,"props":618,"children":620},{"className":197,"code":619,"language":199,"meta":200,"style":200},"curl http:\u002F\u002Flocalhost:8080\u002Fv1\u002Fchat\u002Fcompletions \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -H \"Authorization: Bearer no-key\" \\\n  -d '{\n    \"messages\": [\n      {\"role\": \"user\", \"content\": \"Write a limerick about exception handling\"}\n    ]\n  }'\n",[621],{"type":44,"tag":59,"props":622,"children":623},{"__ignoreMap":200},[624,641,668,692,710,718,727,736],{"type":44,"tag":206,"props":625,"children":626},{"class":208,"line":209},[627,632,637],{"type":44,"tag":206,"props":628,"children":629},{"style":213},[630],{"type":50,"value":631},"curl",{"type":44,"tag":206,"props":633,"children":634},{"style":219},[635],{"type":50,"value":636}," http:\u002F\u002Flocalhost:8080\u002Fv1\u002Fchat\u002Fcompletions",{"type":44,"tag":206,"props":638,"children":639},{"style":406},[640],{"type":50,"value":409},{"type":44,"tag":206,"props":642,"children":643},{"class":208,"line":230},[644,649,654,659,664],{"type":44,"tag":206,"props":645,"children":646},{"style":219},[647],{"type":50,"value":648},"  -H",{"type":44,"tag":206,"props":650,"children":651},{"style":486},[652],{"type":50,"value":653}," \"",{"type":44,"tag":206,"props":655,"children":656},{"style":219},[657],{"type":50,"value":658},"Content-Type: application\u002Fjson",{"type":44,"tag":206,"props":660,"children":661},{"style":486},[662],{"type":50,"value":663},"\"",{"type":44,"tag":206,"props":665,"children":666},{"style":406},[667],{"type":50,"value":409},{"type":44,"tag":206,"props":669,"children":670},{"class":208,"line":285},[671,675,679,684,688],{"type":44,"tag":206,"props":672,"children":673},{"style":219},[674],{"type":50,"value":648},{"type":44,"tag":206,"props":676,"children":677},{"style":486},[678],{"type":50,"value":653},{"type":44,"tag":206,"props":680,"children":681},{"style":219},[682],{"type":50,"value":683},"Authorization: Bearer no-key",{"type":44,"tag":206,"props":685,"children":686},{"style":486},[687],{"type":50,"value":663},{"type":44,"tag":206,"props":689,"children":690},{"style":406},[691],{"type":50,"value":409},{"type":44,"tag":206,"props":693,"children":694},{"class":208,"line":446},[695,700,705],{"type":44,"tag":206,"props":696,"children":697},{"style":219},[698],{"type":50,"value":699},"  -d",{"type":44,"tag":206,"props":701,"children":702},{"style":486},[703],{"type":50,"value":704}," '",{"type":44,"tag":206,"props":706,"children":707},{"style":219},[708],{"type":50,"value":709},"{\n",{"type":44,"tag":206,"props":711,"children":712},{"class":208,"line":568},[713],{"type":44,"tag":206,"props":714,"children":715},{"style":219},[716],{"type":50,"value":717},"    \"messages\": [\n",{"type":44,"tag":206,"props":719,"children":721},{"class":208,"line":720},6,[722],{"type":44,"tag":206,"props":723,"children":724},{"style":219},[725],{"type":50,"value":726},"      {\"role\": \"user\", \"content\": \"Write a limerick about exception handling\"}\n",{"type":44,"tag":206,"props":728,"children":730},{"class":208,"line":729},7,[731],{"type":44,"tag":206,"props":732,"children":733},{"style":219},[734],{"type":50,"value":735},"    ]\n",{"type":44,"tag":206,"props":737,"children":739},{"class":208,"line":738},8,[740,745],{"type":44,"tag":206,"props":741,"children":742},{"style":219},[743],{"type":50,"value":744},"  }",{"type":44,"tag":206,"props":746,"children":747},{"style":486},[748],{"type":50,"value":749},"'\n",{"type":44,"tag":76,"props":751,"children":753},{"id":752},"quant-choice",[754],{"type":50,"value":755},"Quant Choice",{"type":44,"tag":757,"props":758,"children":759},"ul",{},[760,773,786,799,819,856],{"type":44,"tag":87,"props":761,"children":762},{},[763,765,771],{"type":50,"value":764},"Prefer the exact quant that HF marks as compatible on the ",{"type":44,"tag":59,"props":766,"children":768},{"className":767},[],[769],{"type":50,"value":770},"?local-app=llama.cpp",{"type":50,"value":772}," page.",{"type":44,"tag":87,"props":774,"children":775},{},[776,778,784],{"type":50,"value":777},"Keep repo-native labels such as ",{"type":44,"tag":59,"props":779,"children":781},{"className":780},[],[782],{"type":50,"value":783},"UD-Q4_K_M",{"type":50,"value":785}," instead of normalizing them.",{"type":44,"tag":87,"props":787,"children":788},{},[789,791,797],{"type":50,"value":790},"Default to ",{"type":44,"tag":59,"props":792,"children":794},{"className":793},[],[795],{"type":50,"value":796},"Q4_K_M",{"type":50,"value":798}," unless the repo page or hardware profile suggests otherwise.",{"type":44,"tag":87,"props":800,"children":801},{},[802,804,810,811,817],{"type":50,"value":803},"Prefer ",{"type":44,"tag":59,"props":805,"children":807},{"className":806},[],[808],{"type":50,"value":809},"Q5_K_M",{"type":50,"value":66},{"type":44,"tag":59,"props":812,"children":814},{"className":813},[],[815],{"type":50,"value":816},"Q6_K",{"type":50,"value":818}," for code or technical workloads when memory allows.",{"type":44,"tag":87,"props":820,"children":821},{},[822,824,830,832,838,840,846,848,854],{"type":50,"value":823},"Consider ",{"type":44,"tag":59,"props":825,"children":827},{"className":826},[],[828],{"type":50,"value":829},"Q3_K_M",{"type":50,"value":831},", ",{"type":44,"tag":59,"props":833,"children":835},{"className":834},[],[836],{"type":50,"value":837},"Q4_K_S",{"type":50,"value":839},", or repo-specific ",{"type":44,"tag":59,"props":841,"children":843},{"className":842},[],[844],{"type":50,"value":845},"IQ",{"type":50,"value":847}," \u002F ",{"type":44,"tag":59,"props":849,"children":851},{"className":850},[],[852],{"type":50,"value":853},"UD-*",{"type":50,"value":855}," variants for tighter RAM or VRAM budgets.",{"type":44,"tag":87,"props":857,"children":858},{},[859,861,867],{"type":50,"value":860},"Treat ",{"type":44,"tag":59,"props":862,"children":864},{"className":863},[],[865],{"type":50,"value":866},"mmproj-*.gguf",{"type":50,"value":868}," files as projector weights, not the main checkpoint.",{"type":44,"tag":76,"props":870,"children":872},{"id":871},"load-references",[873],{"type":50,"value":874},"Load References",{"type":44,"tag":757,"props":876,"children":877},{},[878,892,911],{"type":44,"tag":87,"props":879,"children":880},{},[881,883,890],{"type":50,"value":882},"Read ",{"type":44,"tag":884,"props":885,"children":887},"a",{"href":886},"references\u002Fhub-discovery.md",[888],{"type":50,"value":889},"hub-discovery.md",{"type":50,"value":891}," for URL-first workflows, model search, tree API extraction, and command reconstruction.",{"type":44,"tag":87,"props":893,"children":894},{},[895,896,902,904,910],{"type":50,"value":882},{"type":44,"tag":884,"props":897,"children":899},{"href":898},"references\u002Fquantization.md",[900],{"type":50,"value":901},"quantization.md",{"type":50,"value":903}," for format tables, model scaling, quality tradeoffs, and ",{"type":44,"tag":59,"props":905,"children":907},{"className":906},[],[908],{"type":50,"value":909},"imatrix",{"type":50,"value":74},{"type":44,"tag":87,"props":912,"children":913},{},[914,915,921],{"type":50,"value":882},{"type":44,"tag":884,"props":916,"children":918},{"href":917},"references\u002Fhardware.md",[919],{"type":50,"value":920},"hardware.md",{"type":50,"value":922}," for Metal, CUDA, ROCm, or CPU build and acceleration details.",{"type":44,"tag":76,"props":924,"children":926},{"id":925},"resources",[927],{"type":50,"value":928},"Resources",{"type":44,"tag":757,"props":930,"children":931},{},[932,943,954,965,976],{"type":44,"tag":87,"props":933,"children":934},{},[935,937],{"type":50,"value":936},"llama.cpp: ",{"type":44,"tag":59,"props":938,"children":940},{"className":939},[],[941],{"type":50,"value":942},"https:\u002F\u002Fgithub.com\u002Fggml-org\u002Fllama.cpp",{"type":44,"tag":87,"props":944,"children":945},{},[946,948],{"type":50,"value":947},"Hugging Face GGUF + llama.cpp docs: ",{"type":44,"tag":59,"props":949,"children":951},{"className":950},[],[952],{"type":50,"value":953},"https:\u002F\u002Fhuggingface.co\u002Fdocs\u002Fhub\u002Fgguf-llamacpp",{"type":44,"tag":87,"props":955,"children":956},{},[957,959],{"type":50,"value":958},"Hugging Face Local Apps docs: ",{"type":44,"tag":59,"props":960,"children":962},{"className":961},[],[963],{"type":50,"value":964},"https:\u002F\u002Fhuggingface.co\u002Fdocs\u002Fhub\u002Fmain\u002Flocal-apps",{"type":44,"tag":87,"props":966,"children":967},{},[968,970],{"type":50,"value":969},"Hugging Face Local Agents docs: ",{"type":44,"tag":59,"props":971,"children":973},{"className":972},[],[974],{"type":50,"value":975},"https:\u002F\u002Fhuggingface.co\u002Fdocs\u002Fhub\u002Fagents-local",{"type":44,"tag":87,"props":977,"children":978},{},[979,981],{"type":50,"value":980},"GGUF converter Space: ",{"type":44,"tag":59,"props":982,"children":984},{"className":983},[],[985],{"type":50,"value":986},"https:\u002F\u002Fhuggingface.co\u002Fspaces\u002Fggml-org\u002Fgguf-my-repo",{"type":44,"tag":988,"props":989,"children":990},"style",{},[991],{"type":50,"value":992},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":994,"total":1163},[995,1013,1027,1042,1056,1069,1082,1097,1111,1121,1134,1148],{"slug":996,"name":996,"fn":997,"description":998,"org":999,"tags":1000,"stars":1010,"repoUrl":1011,"updatedAt":1012},"train-sentence-transformers","train sentence-transformers models","Train or fine-tune sentence-transformers models across `SentenceTransformer` (bi-encoder; dense or static embedding model; for retrieval, similarity, clustering, classification, paraphrase mining, dedup, multimodal), `CrossEncoder` (reranker; pair scoring for two-stage retrieval \u002F pair classification), and `SparseEncoder` (SPLADE, sparse embedding model; for learned-sparse retrieval). Covers loss selection, hard-negative mining, evaluators, distillation, LoRA, Matryoshka, and Hugging Face Hub publishing. Use for any sentence-transformers training task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1001,1004,1005,1006,1007],{"name":1002,"slug":1003,"type":14},"Deep Learning","deep-learning",{"name":9,"slug":13,"type":14},{"name":16,"slug":17,"type":14},{"name":22,"slug":23,"type":14},{"name":1008,"slug":1009,"type":14},"Search","search",18914,"https:\u002F\u002Fgithub.com\u002Fhuggingface\u002Fsentence-transformers","2026-05-08T05:09:16.820066",{"slug":1014,"name":1014,"fn":1015,"description":1016,"org":1017,"tags":1018,"stars":1024,"repoUrl":1025,"updatedAt":1026},"trl-training","train and fine-tune LLMs with TRL","Train and fine-tune transformer language models using TRL (Transformers Reinforcement Learning). Supports SFT, DPO, GRPO, KTO, RLOO and Reward Model training via CLI commands.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1019,1020,1021,1022,1023],{"name":25,"slug":26,"type":14},{"name":1002,"slug":1003,"type":14},{"name":9,"slug":13,"type":14},{"name":16,"slug":17,"type":14},{"name":22,"slug":23,"type":14},18850,"https:\u002F\u002Fgithub.com\u002Fhuggingface\u002Ftrl","2026-04-06T18:25:32.746828",{"slug":1028,"name":1028,"fn":1029,"description":1030,"org":1031,"tags":1032,"stars":27,"repoUrl":28,"updatedAt":1041},"hf-cli","manage Hugging Face Hub resources via CLI","Hugging Face Hub CLI (`hf`) for downloading, uploading, and managing models, datasets, spaces, buckets, repos, papers, jobs, and more on the Hugging Face Hub. Use when: handling authentication; managing local cache; managing Hugging Face Buckets; running or scheduling jobs on Hugging Face infrastructure; managing Hugging Face repos; discussions and pull requests; browsing models, datasets and spaces; reading, searching, or browsing academic papers; managing collections; querying datasets; configuring spaces; setting up webhooks; or deploying and managing HF Inference Endpoints. Make sure to use this skill whenever the user mentions 'hf', 'huggingface', 'Hugging Face', 'huggingface-cli', or 'hugging face cli', or wants to do anything related to the Hugging Face ecosystem and to AI and ML in general. Also use for cloud storage needs like training checkpoints, data pipelines, or agent traces. Use even if the user doesn't explicitly ask for a CLI command. Replaces the deprecated `huggingface-cli`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1033,1036,1039,1040],{"name":1034,"slug":1035,"type":14},"CLI","cli",{"name":1037,"slug":1038,"type":14},"Datasets","datasets",{"name":9,"slug":13,"type":14},{"name":16,"slug":17,"type":14},"2026-04-06T18:25:34.020855",{"slug":1043,"name":1043,"fn":1044,"description":1045,"org":1046,"tags":1047,"stars":27,"repoUrl":28,"updatedAt":1055},"hf-cloud-aws-context-discovery","discover local AWS environment context","Discover the user's local AWS context (active profile, region, account ID, caller identity) at the start of any AWS task. Use this skill before any other AWS work — deploying to SageMaker, creating resources, calling AWS APIs, or anything that touches an AWS account. Use it especially when the user has not specified a region or profile explicitly, when they say things like \"use my AWS account\", \"deploy to AWS\", \"use my profile\", or when about to make any AWS CLI or SDK call. Never guess the region or account ID — always use this skill to read it from the local configuration first.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1048,1051,1052],{"name":1049,"slug":1050,"type":14},"AWS","aws",{"name":1034,"slug":1035,"type":14},{"name":1053,"slug":1054,"type":14},"Configuration","configuration","2026-07-08T05:55:33.716099",{"slug":1057,"name":1057,"fn":1058,"description":1059,"org":1060,"tags":1061,"stars":27,"repoUrl":28,"updatedAt":1068},"hf-cloud-python-env-setup","set up Python environments for AWS","Set up an isolated Python environment for SageMaker \u002F AWS work, with the right Python version and current boto3. Use this skill whenever Python code will be executed for a SageMaker deployment, training job, or any AWS automation — including when about to run `pip install`, when about to invoke `boto3`, when creating or activating a virtualenv, or when the user asks to \"set up the environment\". Never use system Python and never `pip install` into it. Always isolate. This skill prevents the most common failure modes: wrong Python version, dependency conflicts, and stale SDKs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1062,1063,1064,1067],{"name":25,"slug":26,"type":14},{"name":1049,"slug":1050,"type":14},{"name":1065,"slug":1066,"type":14},"Engineering","engineering",{"name":22,"slug":23,"type":14},"2026-07-08T05:55:32.505017",{"slug":1070,"name":1070,"fn":1071,"description":1072,"org":1073,"tags":1074,"stars":27,"repoUrl":28,"updatedAt":1081},"hf-cloud-sagemaker-deployment-planner","plan model deployments to Amazon SageMaker","Plan and coordinate the deployment of a model to Amazon SageMaker AI. Use this skill whenever the user wants to deploy, host, serve, or expose a model on SageMaker or AWS — including phrases like \"deploy a model\", \"host this LLM on AWS\", \"serve this embedding model\", \"deploy a reranker\", \"deploy a text-to-image \u002F diffusion model\", \"host this for async inference\", \"create an endpoint\", \"serve my fine-tuned model\", or any request that involves making a model available for inference on AWS. Use this even when the user is vague (e.g. \"I just want to get this running on AWS, you figure it out\"). Works for text-generation LLMs, embedding models, rerankers, classifiers, text-to-image \u002F diffusion models — picks the right serving stack and chooses between real-time and async inference. This is the entry-point skill for SageMaker deployment work — it asks clarifying questions, picks a deployment pathway, and coordinates the other deployment skills.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1075,1076,1077,1080],{"name":25,"slug":26,"type":14},{"name":1049,"slug":1050,"type":14},{"name":1078,"slug":1079,"type":14},"Deployment","deployment",{"name":9,"slug":13,"type":14},"2026-07-08T05:55:37.387689",{"slug":1083,"name":1083,"fn":1084,"description":1085,"org":1086,"tags":1087,"stars":27,"repoUrl":28,"updatedAt":1096},"hf-cloud-sagemaker-iam-preflight","configure SageMaker IAM roles","Ensure a usable SageMaker execution role exists before deploying or training. Use this skill whenever about to create a SageMaker endpoint, model, training job, or any resource that requires an execution role. Use it especially when the user has not provided a role ARN explicitly, when scripts are about to call `iam:CreateRole`, or when an AccessDenied error mentions an IAM action. Never blindly call `iam:CreateRole` — always check for existing roles first. This skill prevents the most common SageMaker deployment failure: trying to create IAM resources from an SSO principal that has no IAM write permissions.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1088,1089,1090,1093],{"name":25,"slug":26,"type":14},{"name":1049,"slug":1050,"type":14},{"name":1091,"slug":1092,"type":14},"Permissions","permissions",{"name":1094,"slug":1095,"type":14},"Security","security","2026-07-08T05:55:34.948771",{"slug":1098,"name":1098,"fn":1099,"description":1100,"org":1101,"tags":1102,"stars":27,"repoUrl":28,"updatedAt":1110},"hf-cloud-sagemaker-production-defaults","create production-ready SageMaker endpoints","Create a SageMaker endpoint (real-time or async) with autoscaling, CloudWatch alarms, and tagging enabled by default. Use this skill whenever about to create a SageMaker endpoint, write deployment code that calls `create_endpoint`, or finalize a deployment after the image URI and IAM role are known. Provides deploy.py for real-time endpoints and deploy_async.py for async endpoints (with genuine scale-to-zero support). This is the last step in the SageMaker deployment workflow. Never generate a bare `create_endpoint` call without these defaults — endpoints without autoscaling or alarms are demos, not deployments.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1103,1104,1105,1106,1107],{"name":25,"slug":26,"type":14},{"name":1049,"slug":1050,"type":14},{"name":1078,"slug":1079,"type":14},{"name":9,"slug":13,"type":14},{"name":1108,"slug":1109,"type":14},"Monitoring","monitoring","2026-07-08T05:55:38.664702",{"slug":1112,"name":1112,"fn":1113,"description":1114,"org":1115,"tags":1116,"stars":27,"repoUrl":28,"updatedAt":1120},"hf-cloud-serving-image-selection","select SageMaker serving containers","Pick the right serving container for a SageMaker model deployment and find its current image URI. Use this skill whenever about to deploy a model to a SageMaker endpoint and an image URI needs to be chosen — including when the user says \"deploy this LLM\", \"host this HuggingFace model\", \"serve this fine-tuned model\", \"deploy this embedding model\", \"host a reranker\", \"serve a sentence-transformers model\", or when about to hardcode any container URI in deployment code. HuggingFace-curated Deep Learning Containers are ALWAYS preferred: HuggingFace vLLM (LLMs and generative rerankers), HuggingFace vLLM-Omni (multimodal), TEI (embeddings\u002Fcross-encoder rerankers), HF Inference Toolkit (other transformers). Generic images (AWS vLLM, DJL-LMI, SGLang) are used only when no HuggingFace image is compatible — never merely because they carry a newer version. Never hardcode a container URI from memory and never default to TGI. Prevents stale-image failures and wrong-region URIs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1117,1118,1119],{"name":25,"slug":26,"type":14},{"name":1049,"slug":1050,"type":14},{"name":1078,"slug":1079,"type":14},"2026-07-08T05:55:36.173465",{"slug":1122,"name":1122,"fn":1123,"description":1124,"org":1125,"tags":1126,"stars":27,"repoUrl":28,"updatedAt":1133},"hf-mcp","access Hugging Face Hub via MCP","Use Hugging Face Hub via MCP server tools. Search models, datasets, Spaces, papers. Get repo details, fetch documentation, run compute jobs, and use Gradio Spaces as AI tools. Available when connected to the HF MCP server.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1127,1128,1129,1130],{"name":1037,"slug":1038,"type":14},{"name":9,"slug":13,"type":14},{"name":16,"slug":17,"type":14},{"name":1131,"slug":1132,"type":14},"MCP","mcp","2026-04-06T18:25:50.364185",{"slug":1135,"name":1135,"fn":1136,"description":1137,"org":1138,"tags":1139,"stars":27,"repoUrl":28,"updatedAt":1147},"hf-mem","estimate memory for Hugging Face models","Hugging Face CLI to estimate the required memory to load Safetensors or GGUF model weights for inference from the Hugging Face Hub",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1140,1141,1142,1143,1144],{"name":25,"slug":26,"type":14},{"name":1034,"slug":1035,"type":14},{"name":9,"slug":13,"type":14},{"name":16,"slug":17,"type":14},{"name":1145,"slug":1146,"type":14},"Performance","performance","2026-06-13T07:23:57.101435",{"slug":1149,"name":1149,"fn":1150,"description":1151,"org":1152,"tags":1153,"stars":27,"repoUrl":28,"updatedAt":1162},"huggingface-best","find and compare Hugging Face models","Use when the user asks about finding the best, top, or recommended model for a task, wants to know what AI model to use, or wants to compare models by benchmark scores. Triggers on: \"best model for X\", \"what model should I use for\", \"top models for [task]\", \"which model runs on my laptop\u002Fmachine\u002Fdevice\", \"recommend a model for\", \"what LLM should I use for\", \"compare models for\", \"what's state of the art for\", or any question about choosing an AI model for a specific use case. Always use this skill when the user wants model recommendations or comparisons, even if they don't explicitly mention HuggingFace or benchmarks.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1154,1157,1158,1159],{"name":1155,"slug":1156,"type":14},"Analytics","analytics",{"name":9,"slug":13,"type":14},{"name":16,"slug":17,"type":14},{"name":1160,"slug":1161,"type":14},"Research","research","2026-04-24T05:09:45.870658",37,{"items":1165,"total":1214},[1166,1173,1179,1186,1193,1200,1208],{"slug":1028,"name":1028,"fn":1029,"description":1030,"org":1167,"tags":1168,"stars":27,"repoUrl":28,"updatedAt":1041},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1169,1170,1171,1172],{"name":1034,"slug":1035,"type":14},{"name":1037,"slug":1038,"type":14},{"name":9,"slug":13,"type":14},{"name":16,"slug":17,"type":14},{"slug":1043,"name":1043,"fn":1044,"description":1045,"org":1174,"tags":1175,"stars":27,"repoUrl":28,"updatedAt":1055},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1176,1177,1178],{"name":1049,"slug":1050,"type":14},{"name":1034,"slug":1035,"type":14},{"name":1053,"slug":1054,"type":14},{"slug":1057,"name":1057,"fn":1058,"description":1059,"org":1180,"tags":1181,"stars":27,"repoUrl":28,"updatedAt":1068},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1182,1183,1184,1185],{"name":25,"slug":26,"type":14},{"name":1049,"slug":1050,"type":14},{"name":1065,"slug":1066,"type":14},{"name":22,"slug":23,"type":14},{"slug":1070,"name":1070,"fn":1071,"description":1072,"org":1187,"tags":1188,"stars":27,"repoUrl":28,"updatedAt":1081},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1189,1190,1191,1192],{"name":25,"slug":26,"type":14},{"name":1049,"slug":1050,"type":14},{"name":1078,"slug":1079,"type":14},{"name":9,"slug":13,"type":14},{"slug":1083,"name":1083,"fn":1084,"description":1085,"org":1194,"tags":1195,"stars":27,"repoUrl":28,"updatedAt":1096},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1196,1197,1198,1199],{"name":25,"slug":26,"type":14},{"name":1049,"slug":1050,"type":14},{"name":1091,"slug":1092,"type":14},{"name":1094,"slug":1095,"type":14},{"slug":1098,"name":1098,"fn":1099,"description":1100,"org":1201,"tags":1202,"stars":27,"repoUrl":28,"updatedAt":1110},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1203,1204,1205,1206,1207],{"name":25,"slug":26,"type":14},{"name":1049,"slug":1050,"type":14},{"name":1078,"slug":1079,"type":14},{"name":9,"slug":13,"type":14},{"name":1108,"slug":1109,"type":14},{"slug":1112,"name":1112,"fn":1113,"description":1114,"org":1209,"tags":1210,"stars":27,"repoUrl":28,"updatedAt":1120},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1211,1212,1213],{"name":25,"slug":26,"type":14},{"name":1049,"slug":1050,"type":14},{"name":1078,"slug":1079,"type":14},24]