Text Generation
NeMo
ONNX
Safetensors
GGUF
English
Persian
local-llm
quantized
rtx-3060
consumer-hardware
code
agent
agents
rag
embeddings
reranker
text-to-speech
speech-to-text
multimodal
vision
voice-cloning
persian
farsi
uncensored
abliterated
imatrix
conversational
Instructions to use m15dg/local-ai-toolkit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- NeMo
How to use m15dg/local-ai-toolkit with NeMo:
# tag did not correspond to a valid NeMo domain.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use m15dg/local-ai-toolkit 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 m15dg/local-ai-toolkit:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf m15dg/local-ai-toolkit:UD-Q4_K_XL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf m15dg/local-ai-toolkit:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf m15dg/local-ai-toolkit:UD-Q4_K_XL
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 m15dg/local-ai-toolkit:UD-Q4_K_XL # Run inference directly in the terminal: ./llama-cli -hf m15dg/local-ai-toolkit:UD-Q4_K_XL
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 m15dg/local-ai-toolkit:UD-Q4_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf m15dg/local-ai-toolkit:UD-Q4_K_XL
Use Docker
docker model run hf.co/m15dg/local-ai-toolkit:UD-Q4_K_XL
- LM Studio
- Jan
- vLLM
How to use m15dg/local-ai-toolkit with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "m15dg/local-ai-toolkit" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "m15dg/local-ai-toolkit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/m15dg/local-ai-toolkit:UD-Q4_K_XL
- Ollama
How to use m15dg/local-ai-toolkit with Ollama:
ollama run hf.co/m15dg/local-ai-toolkit:UD-Q4_K_XL
- Unsloth Studio
How to use m15dg/local-ai-toolkit 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 m15dg/local-ai-toolkit 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 m15dg/local-ai-toolkit to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for m15dg/local-ai-toolkit to start chatting
- Pi
How to use m15dg/local-ai-toolkit with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf m15dg/local-ai-toolkit:UD-Q4_K_XL
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": "m15dg/local-ai-toolkit:UD-Q4_K_XL" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use m15dg/local-ai-toolkit with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf m15dg/local-ai-toolkit:UD-Q4_K_XL
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 m15dg/local-ai-toolkit:UD-Q4_K_XL
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use m15dg/local-ai-toolkit with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf m15dg/local-ai-toolkit:UD-Q4_K_XL
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 "m15dg/local-ai-toolkit:UD-Q4_K_XL" \ --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 m15dg/local-ai-toolkit with Docker Model Runner:
docker model run hf.co/m15dg/local-ai-toolkit:UD-Q4_K_XL
- Lemonade
How to use m15dg/local-ai-toolkit with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull m15dg/local-ai-toolkit:UD-Q4_K_XL
Run and chat with the model
lemonade run user.local-ai-toolkit-UD-Q4_K_XL
List all available models
lemonade list
File size: 41,820 Bytes
31baece 47555ea 31baece 47555ea 31baece 47555ea 31baece c404781 31baece c404781 31baece 47555ea 31baece 47555ea 31baece 47555ea 31baece c404781 31baece 47555ea 31baece | 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 | ---
license: other
language:
- en
- fa
tags:
- gguf
- safetensors
- local-llm
- quantized
- rtx-3060
- consumer-hardware
- text-generation
- code
- agent
- agents
- rag
- embeddings
- reranker
- text-to-speech
- speech-to-text
- multimodal
- vision
- voice-cloning
- persian
- farsi
- uncensored
- abliterated
pipeline_tag: text-generation
---
<p align="center">
<img src="https://img.shields.io/badge/README-AI_Generated-FF6B6B?style=flat-square&logo=openai&logoColor=white" alt="AI Generated">
</p>
> โ ๏ธ **Note:** This README was generated and is maintained by AI.
<div align="center">
# ๐ง Local AI Toolkit
### A Curated Collection of Locally-Runnable AI Models
**Optimized for RTX 3060 12GB VRAM + 32GB RAM**
<p>
<img src="https://img.shields.io/badge/GPU-RTX_3060_12GB-76B900?style=for-the-badge&logo=nvidia&logoColor=white" alt="GPU">
<img src="https://img.shields.io/badge/RAM-32GB_DDR4-4A90D9?style=for-the-badge&logo=memory&logoColor=white" alt="RAM">
<img src="https://img.shields.io/badge/Models-37+-FF6B6B?style=for-the-badge&logo=huggingface&logoColor=white" alt="Models">
<img src="https://img.shields.io/badge/Categories-8-F59E0B?style=for-the-badge&logo=databricks&logoColor=white" alt="Categories">
<img src="https://img.shields.io/badge/Format-GGUF_&_SafeTensors-8B5CF6?style=for-the-badge&logo=archive&logoColor=white" alt="Format">
</p>
<p>
<img src="https://img.shields.io/badge/๐ค LLMs-โ
-success" alt="LLMs">
<img src="https://img.shields.io/badge/๐ป Coding-โ
-success" alt="Coding">
<img src="https://img.shields.io/badge/๐ RAG-โ
-success" alt="RAG">
<img src="https://img.shields.io/badge/๐๏ธ TTS-โ
-success" alt="TTS">
<img src="https://img.shields.io/badge/๐ค STT-โ
-success" alt="STT">
<img src="https://img.shields.io/badge/๐๏ธ Multimodal-โ
-success" alt="Multimodal">
<img src="https://img.shields.io/badge/๐ Agents-โ
-success" alt="Agents">
<img src="https://img.shields.io/badge/๐ผ๏ธ Image_Gen-๐-yellow" alt="Image Gen">
<img src="https://img.shields.io/badge/๐ฌ Video_Gen-๐-yellow" alt="Video Gen">
</p>
<i>AI-assisted model selection ยท Quantized for consumer hardware ยท A suggested starting point</i>
</div>
---
## ๐ About This Toolkit
This repository is a **suggested toolkit** of open-source AI models assembled to run entirely locally on consumer-grade hardware โ specifically an **NVIDIA RTX 3060 (12GB VRAM) with 32GB system RAM**. Each model was chosen to fit within these constraints while offering strong output quality for the VRAM budget.
The selection process was **AI-assisted** โ I consulted several AI assistants to weigh benchmarks, quantization trade-offs, and model capabilities, then settled on the common recommendations you see here. This is **not a definitively optimal combination**: better models may already exist, and stronger ones are released regularly. Treat it as a well-reasoned starting point rather than a final answer โ your own testing on your own hardware is the real benchmark.
### ๐ Updates & Longevity
This toolkit is **periodically refreshed** as stronger or more efficient models are released. When a model gets clearly outclassed, it gets swapped out โ so the lineup you see today may differ from a few months down the line.
### ๐ฏ Design Philosophy
Each category follows a dual-tier architecture. Both tiers target the **same 12GB VRAM + 32GB RAM machine** โ the difference is *how* that budget is used:
| Tier | Purpose | What It Means |
|------|---------|---------------|
| ๐ **Quality** | Best achievable quality | The highest-quality model that can still run within the 12GB VRAM + 32GB RAM budget, using **GPU+CPU offload** (some layers spill into system RAM). Slower, but maximizes output quality |
| โก **Speed** | Fastest, no offload | A capable model that fits **entirely within 12GB VRAM** โ leaving room for context too โ so it runs fully on-GPU with no CPU offload overhead. Prioritizes throughput and low latency |
> **Note on Coding models:** The Coding Agents category includes two quality-tier models (Architect & Executor + Detective & Debugger). The "speed" variants in that category, while labeled for speed, are still powerful enough to serve as competent rapid-response code assistants โ they simply trade some reasoning depth for significantly faster token generation.
### โ ๏ธ Work In Progress
This toolkit is **not yet complete**. Notably, **Image Generation** and **Video Generation** models are still missing and will be added in future updates. The current collection focuses on text, speech, and multimodal understanding capabilities. Stay tuned for expansions.
---
## ๐ Repository Structure & Category Guide
```
local-ai-toolkit/
โโโ 1-Universal_Foundation_LLMs/ ๐ง General-purpose language models
โโโ 2-Coding_Agents/ ๐ป Specialized code generation & debugging
โโโ 3-Agent_Orchestration_and_Routing/ ๐ Multi-agent system coordination
โโโ 4-Document_Analysis_and_RAG/ ๐ Embeddings, rerankers, and retrieval
โโโ 5-TTS/ ๐๏ธ Text-to-speech synthesis
โโโ 6-STT/ ๐ค Speech-to-text recognition
โโโ 7-Multimodal/ ๐๏ธ Vision + language understanding
โโโ 8-Uncensored_Models/ ๐ Unfiltered model variants
```
---
## 1๏ธโฃ Universal Foundation LLMs
<div align="center">
<i>The backbone of any local AI setup โ general-purpose models for conversation, analysis, writing, and reasoning.</i>
</div>
These are your **go-to models** for everyday tasks: answering questions, drafting emails, summarizing documents, brainstorming ideas, creative writing, and general knowledge retrieval. They serve as the foundation upon which more specialized workflows are built.
| Tier | Model | Size | Quantization | Key Strengths |
|------|-------|------|-------------|---------------|
| ๐ Quality | [Qwen 3.6-35B-A3B](https://huggingface.co/unsloth/Qwen3.6-35B-A3B-GGUF) | 35B (MoE, 3B active) | Q4_K_XL | Mixture-of-Experts with only 3B active params โ exceptional quality-to-VRAM ratio. Strong multilingual support, excellent reasoning |
| โก Speed | [Qwen 3.5-9B](https://huggingface.co/unsloth/Qwen3.5-9B-GGUF) | 9B | Q5_K_M | Blazing fast inference, still remarkably capable for its size. Perfect for quick Q&A, chat, and real-time interactions |
**Why these models?** The Qwen 3.x series represents a significant leap in efficient architecture. The 35B-A3B MoE variant is particularly special โ it gives you the reasoning depth of a much larger model while only activating 3 billion parameters at a time, making it one of the most VRAM-efficient high-quality models available. The 9B speed variant offers near-instant responses for situations where latency matters more than depth.
<details>
<summary>๐ Folder Structure</summary>
```
1-Universal_Foundation_LLMs/
โโโ Quality/
โ โโโ Qwen3.6-35B-A3B-UD-Q4_K_XL/
โ โโโ Qwen3.6-35B-A3B-UD-Q4_K_XL.gguf
โ โโโ mmproj-BF16.gguf
โโโ Speed/
โโโ Qwen3.5-9B-Q5_K_M/
โโโ Qwen3.5-9B-Q5_K_M.gguf
โโโ mmproj-BF16.gguf
```
</details>
---
## 2๏ธโฃ Coding Agents
<div align="center">
<i>Specialized models for writing, debugging, and architecting code โ the core of any AI-assisted development workflow.</i>
</div>
This category contains models specifically fine-tuned for software engineering tasks. They are organized into five distinct roles that mirror a professional development team structure, from high-level architecture down to real-time inline suggestions.
| Role | Tier | Model | Size | Quantization | Purpose |
|------|------|-------|------|-------------|---------|
| ๐๏ธ Architect & Executor | ๐ Quality | [Qwen3-Coder-30B-A3B](https://huggingface.co/unsloth/Qwen3-Coder-30B-A3B-Instruct-GGUF) | 30B (MoE, 3B active) | Q5_K_M | Plans architecture, writes full implementations, handles complex codebases |
| ๐ Detective & Debugger | ๐ Quality | [DeepSeek-R1-Distill-Qwen-32B](https://huggingface.co/bartowski/DeepSeek-R1-Distill-Qwen-32B-GGUF) | 32B | Q4_K_M | Deep chain-of-thought reasoning for finding and fixing bugs |
| โก Autocomplete | โ | [Qwen2.5-Coder-7B](https://huggingface.co/EasierAI/Qwen-2.5-Coder-7B) | 7B | Q5_K_M | Ultra-fast inline code completion for IDE integration |
| ๐๏ธ Architect (Fast) | โก Speed | [Qwen2.5-Coder-14B](https://huggingface.co/bartowski/Qwen2.5-Coder-14B-GGUF) | 14B | Q4_K_M | Quick code generation and architectural guidance |
| ๐ Debugger (Fast) | โก Speed | [DeepSeek-R1-Distill-Qwen-14B](https://huggingface.co/bartowski/DeepSeek-R1-Distill-Qwen-14B-GGUF) | 14B | Q4_K_M | Rapid debugging with reasoning capabilities |
**Why this structure?** Modern AI-assisted coding works best when you use **specialized models for specialized tasks**. The Qwen3-Coder excels at writing new code and understanding project structure, while the DeepSeek-R1 distill variant uses its chain-of-thought training to methodically trace through bugs. The 7B autocomplete model is lightweight enough to run alongside your IDE for real-time suggestions without competing for VRAM with your main coding model.
> **Pro tip:** Use the "speed" variants for quick prototyping and test-driven development cycles where you need rapid iteration. They're still high-quality coders โ they just generate tokens faster and use less memory, leaving headroom for other tools in your pipeline.
<details>
<summary>๐ Folder Structure</summary>
```
2-Coding_Agents/
โโโ 1-Architect_and_Executor/
โ โโโ Qwen3-Coder-30B-A3B-Instruct-Q5_K_M/
โ โโโ Qwen3-Coder-30B-A3B-Instruct-Q5_K_M.gguf
โโโ 2-Detective_and_Debugger/
โ โโโ DeepSeek-R1-Distill-Qwen-32B-Q4_K_M/
โ โโโ DeepSeek-R1-Distill-Qwen-32B-Q4_K_M.gguf
โโโ 3-Inline_Autocomplete/
โ โโโ qwen2.5-coder-7b-instruct-q5_k_m/
โ โโโ qwen2.5-coder-7b-instruct-q5_k_m.gguf
โโโ 4-Architect_and_Executor_speed/
โ โโโ Qwen2.5_Coder_14B_Instruct_Q4_K_M/
โ โโโ Qwen2.5_Coder_14B_Instruct_Q4_K_M.gguf
โโโ 5-Detective_and_Debugger_speed/
โโโ DeepSeek_R1_Distill_Qwen_14B_Q4_K_M/
โโโ DeepSeek_R1_Distill_Qwen_14B_Q4_K_M.gguf
```
</details>
---
## 3๏ธโฃ Agent Orchestration and Routing
<div align="center">
<i>The nervous system of multi-agent AI systems โ models that coordinate, route, guard, and execute complex agent workflows.</i>
</div>
When you move beyond single-model interactions into **multi-agent architectures** (where different specialized models collaborate on complex tasks), you need orchestrators that can plan, delegate, monitor, and validate. This category provides the complete infrastructure for building sophisticated agentic systems locally.
### ๐ฏ Orchestrators & Managers
The "brains" of your agent network. These models decide which worker to call, when to call it, and how to synthesize results.
| Model | Size | Quantization | Role |
|-------|------|-------------|------|
| [Agents-A1 35B MoE](https://huggingface.co/Chungulus/Agents-A1-IQ4_XS-imatrix-gguf-fable5-calibrated) | 35B (MoE) | IQ4_XS | **CEO Agent** โ high-level autonomous planning and task decomposition. Calibrated with imatrix for superior quantization fidelity |
| [GLM-4.7-Flash](https://huggingface.co/unsloth/GLM-4.7-Flash-GGUF) | Flash | Q4_K_XL | **Router** โ ultra-fast model for routing decisions, intent classification, and dispatching tasks to appropriate workers |
| [Hermes 4.3 36B](https://huggingface.co/NousResearch/Hermes-4.3-36B-GGUF) | 36B | Q4_K_M | **Quality Orchestrator** โ a capable model for complex multi-step reasoning, tool use, and agent coordination. Excellent function calling |
### โ๏ธ Agentic Workers
Models optimized to be **called by orchestrators** โ they receive specific tasks, execute them, and return structured results.
| Model | Size | Quantization | Role |
|-------|------|-------------|------|
| [Gemma 4 12B Agentic Worker v2](https://huggingface.co/yuxinlu1/gemma-4-12B-agentic-fable5-composer2.5-v2-3.5x-tau2-GGUF) | 12B | Q4_K_M | **Worker Agent** โ fine-tuned specifically for agentic task execution with Fable5 and Composer2.5 training. Designed to follow orchestrator instructions reliably |
### ๐ก๏ธ Guardrails & Safety
Models that **monitor and filter** agent inputs/outputs to prevent harmful, off-topic, or undesired behavior.
| Model | Size | Quantization | Role |
|-------|------|-------------|------|
| [Hermes 4 14B](https://huggingface.co/gabriellarson/Hermes-4-14B-GGUF) | 14B | Q4_K_M | **Speed Guardrail** โ fast content moderation and output validation for real-time agent pipelines |
| [Llama Guard 3 8B](https://huggingface.co/mradermacher/Llama-Guard-3-8B-i1-GGUF) | 8B | i1-Q4_K_M | **Firewall** โ Meta's safety-focused model for input/output classification and content policy enforcement |
<details>
<summary>๐ Folder Structure</summary>
```
3-Agent_Orchestration_and_Routing/
โโโ 1-Orchestrators_and_Managers/
โ โโโ Agents_A1_35B_MoE_Calibrated_CEO/
โ โ โโโ Agents-A1-IQ4_XS-imatrix-gguf-fable5-calibrated.gguf
โ โโโ GLM-4.7-Flash-UD-Q4_K_XL/
โ โ โโโ GLM-4.7-Flash-UD-Q4_K_XL.gguf
โ โโโ Hermes_4_3_36B_Quality_Orchestrator/
โ โโโ hermes-4_3_36b-Q4_K_M.gguf
โโโ 2-Agentic_Workers/
โ โโโ Gemma4_12B_Agentic_Worker_v2/
โ โโโ Gemma4_12B_Agentic_Worker_v2.gguf
โโโ 3-Guardrails_and_Safety/
โโโ Hermes_4_14B_Speed_Guardrail/
โ โโโ Hermes-4-14B-Q4_K_M.gguf
โโโ Llama_Guard_3_8B_i1_Firewall/
โโโ Llama-Guard-3-8B.i1-Q4_K_M.gguf
```
</details>
---
## 4๏ธโฃ Document Analysis and RAG
<div align="center">
<i>The complete pipeline for building local Retrieval-Augmented Generation systems โ from embedding to generation.</i>
</div>
RAG (Retrieval-Augmented Generation) is how you give your AI **access to your own documents, knowledge bases, and data**. This category provides every component needed to build a production-quality local RAG pipeline โ no cloud APIs required.
### Pipeline Overview
```
๐ Documents โ ๐ค Embedding โ ๐ Vector Store โ ๐ Reranking โ ๐ง LLM Generation
BGE-M3 (your DB) BGE-Reranker Gemma 4 12B
โ
๐ธ๏ธ GraphRAG Extractor (NuExtract)
โ
๐ Web Distiller (Jina Reader)
```
### ๐ค 1. Embeddings โ [BGE-M3](https://huggingface.co/BAAI/bge-m3)
**The foundation of any RAG system.** BGE-M3 is a state-of-the-art multilingual embedding model that supports three retrieval modes simultaneously:
- **Dense retrieval** โ traditional semantic similarity search
- **Sparse retrieval** โ BM25-style keyword matching (great for exact term matches)
- **ColBERT retrieval** โ late interaction for fine-grained token-level relevance scoring
This multi-modal retrieval approach means you combine semantic understanding and keyword precision in a single model. It supports 100+ languages out of the box.
### ๐ 2. Reranker โ [BGE-Reranker-V2-M3](https://huggingface.co/Heisenberg0314/bge-reranker-v2-m3)
After initial retrieval returns candidate documents, the reranker **re-scores and re-orders** them for maximum relevance. This two-stage approach (retrieve broadly, then rerank precisely) dramatically improves RAG accuracy compared to single-stage retrieval. The M3 variant is specifically designed to complement BGE-M3 embeddings.
### ๐ธ๏ธ 3. GraphRAG Extractor โ [NuExtract v1.5](https://huggingface.co/bartowski/NuExtract-v1.5-GGUF)
Takes unstructured text and **extracts structured knowledge graphs** โ entities, relationships, and attributes. This enables GraphRAG pipelines that can reason over the *connections* between facts, not just individual document chunks. Particularly powerful for research, legal, and technical domains where relationships matter as much as the facts themselves.
### ๐ 4. Web Distiller โ [Jina Reader LM 1.5B](https://huggingface.co/bartowski/reader-lm-1.5b-GGUF)
A tiny but remarkably effective model that **cleans and structures raw web content** into clean, readable text suitable for embedding. Instead of embedding HTML noise, navigation bars, and ads, this model extracts the actual article content. At only 1.5B parameters, it runs almost instantly.
### ๐ง 5. LLM Generator โ [Gemma 4 12B](https://huggingface.co/unsloth/gemma-4-12b-it-GGUF)
The final stage of the RAG pipeline โ a vision-capable LLM that synthesizes retrieved context into coherent, accurate answers. Includes **speculative decoding via MTP (Multi-Token Prediction)** for faster generation, and a multimodal projector for handling documents with images and diagrams.
<details>
<summary>๐ Folder Structure</summary>
```
4-Document_Analysis_and_RAG/
โโโ 1-Embeddings/
โ โโโ BGE_M3_Core_Embedding/
โ โโโ config.json, tokenizer files, model weights...
โ โโโ colbert_linear.pt, sparse_linear.pt
โโโ 2-Rerankers/
โ โโโ BGE_Reranker_V2_M3_Core/
โ โโโ config.json, model.safetensors
โ โโโ tokenizer files
โโโ 3-GraphRAG_Extractors/
โ โโโ NuExtract_1_5_GraphRAG_Extractor/
โ โโโ NuExtract-v1.5-Q8_0.gguf
โโโ 4-Web_Distillers/
โ โโโ Jina_Reader_LM_1_5B_Web_Distiller/
โ โโโ reader-lm-1.5b-Q8_0.gguf
โโโ 5-LLM_Generators/
โโโ gemma-4-12b-it-UD-Q4_K_XL/
โโโ gemma-4-12b-it-UD-Q4_K_XL.gguf
โโโ mmproj-BF16.gguf
โโโ MTP/
โโโ mtp-gemma-4-12b-it-Q8_0.gguf
```
</details>
---
## 5๏ธโฃ Text-to-Speech (TTS)
<div align="center">
<i>Convert text to natural-sounding speech โ from multi-speaker dialogue to voice cloning and custom voice design.</i>
</div>
This category covers four distinct TTS paradigms, each suited to different use cases. Whether you need a single consistent narrator, a full cast of characters, or the ability to clone any voice from a short sample, there's a model here for it.
| Paradigm | Model | Size | Use Case |
|----------|-------|------|----------|
| ๐ญ **Multi-Speaker** | [Dia 2.5 2B](https://huggingface.co/nari-labs/Dia2-2B) | 2B | Generate dialogue with multiple distinct speakers in a single pass โ perfect for audiobooks, podcasts, and conversational AI |
| ๐ฎ๐ท **Persian TTS** | [Chatterbox TTS Persian](https://huggingface.co/Thomcles/Chatterbox-TTS-Persian-Farsi) | โ | High-quality Farsi text-to-speech with natural Persian prosody and pronunciation |
| ๐ฎ๐ท **Persian TTS** | [F5-TTS Persian](https://huggingface.co/Lumos675/F5_TTS_Persian) | โ | Alternative Persian TTS model โ good for A/B testing voice quality on Farsi content |
| ๐จ **Voice Design** | [Qwen3-TTS 12Hz](https://huggingface.co/Jinstudio/Qwen3-TTS-12Hz-1.7B-VoiceDesign) | 1.7B | **Design entirely new voices from text descriptions** โ describe the voice you want ("warm grandmotherly voice") and it generates it |
| ๐ค **Zero-Shot Cloning** | [F5-TTS v1](https://huggingface.co/TopherAU/F5-TTS-v1) | โ | Clone any voice from a short audio reference sample โ no fine-tuning required |
**Why so many TTS models?** Different tasks demand different approaches. Voice Design is perfect for creating brand voices or fictional characters. Zero-shot cloning excels when you need to match an existing voice. Multi-speaker Dia handles scripts with dialogue natively. And the Persian-specific models ensure high-quality Farsi output that general multilingual TTS models often struggle with.
<details>
<summary>๐ Folder Structure</summary>
```
5-TTS/
โโโ MULTI_SPEAKER/
โ โโโ Dia2_2B_Dialogue/
โโโ TTS_PERSIAN/
โ โโโ Chatterbox_TTS_Persian/
โ โ โโโ t3_fa.safetensors
โ โโโ F5_TTS_Persian/
โโโ VOICE_DESIGN/
โ โโโ Qwen3_TTS_12Hz_VoiceDesign/
โ โโโ model.safetensors
โ โโโ speech_tokenizer/
โโโ ZERO_SHOT_CLONING/
โโโ F5_TTS_v1_Base/
โโโ F5TTS_v1_Base/
```
</details>
---
## 6๏ธโฃ Speech-to-Text (STT)
<div align="center">
<i>Transcribe, translate, and preprocess audio โ from studio-quality multi-language recognition to specialized Persian ASR.</i>
</div>
A complete speech understanding pipeline that starts with audio preprocessing (cleaning and segmentation) and ends with either transcription or translation. Like other categories, it follows the Quality vs. Speed dual-tier design.
### ๐ง Audio Preprocessing Filters
| Filter | Model | Purpose |
|--------|-------|---------|
| ๐๏ธ Vocal Isolation | [Demucs V4 (ONNX)](https://huggingface.co/MrCitron/demucs-v4-onnx) | Studio-quality vocal separation โ removes background music, noise, and other speakers. Essential for noisy recordings |
| ๐ Silence/Noise Cutter | [Silero VAD (ONNX)](https://huggingface.co/istupakov/silero-vad-onnx) | Voice Activity Detection โ automatically cuts silence and non-speech segments, reducing processing time and improving transcription accuracy |
### ๐ Quality Tier โ High Accuracy
| Scope | Model | Size | Highlights |
|-------|-------|------|------------|
| ๐ Multi-Language | [Whisper Large V3](https://huggingface.co/openai/whisper-large-v3) | Large | OpenAI's flagship multilingual STT model. Supports 99 languages with state-of-the-art accuracy. The gold standard for transcription |
| ๐ฎ๐ท Persian | [FastConformer Fa Large](https://huggingface.co/nvidia/stt_fa_fastconformer_hybrid_large) | Large | **Anti-hallucination** Persian ASR by NVIDIA. Specifically designed to avoid the common Whisper problem of fabricating text during silence โ critical for Persian content |
| ๐ฎ๐ท Persian | [Whisper Persian V4](https://huggingface.co/nezamisafa/whisper-persian-v4) | Large | Whisper fine-tuned specifically on Persian data for improved Farsi recognition accuracy |
| ๐ Translation | [Seamless M4T V2 Large](https://huggingface.co/facebook/seamless-m4t-v2-large) | Large | Meta's **universal translation** model โ translates speech-to-text across 100+ languages. Not just transcription, but actual cross-lingual translation |
### โก Speed Tier โ Fastest Processing
| Scope | Model | Size | Highlights |
|-------|-------|------|------------|
| ๐ Multi-Language | [Whisper Large V3 Turbo](https://huggingface.co/openai/whisper-large-v3-turbo) | Turbo | 8x faster than Whisper Large with only minimal accuracy loss. The sweet spot for real-time or batch processing |
| ๐ฎ๐ท Persian | [Whisper Turbo Persian](https://huggingface.co/SadeghK/whisper-large-v3-turbo) | Turbo | Turbo-speed Whisper variant for Persian language. Ideal for transcribing long Persian audio files quickly |
<details>
<summary>๐ Folder Structure</summary>
```
6-STT/
โโโ Audio_Preprocessing_Filters/
โ โโโ Studio_Vocal_Isolation_DemucsV4/
โ โ โโโ Studio_Vocal_Isolation_DemucsV4.onnx
โ โโโ Universal_Silence_Noise_Cutter_Silero/
โ โโโ Universal_Silence_Noise_Cutter_Silero.onnx
โโโ Quality/
โ โโโ Multi_Language/
โ โ โโโ Whisper_Large_V3_Global_FP16/
โ โโโ Persian_ASR/
โ โ โโโ Anti_Hallucination_FastConformer_Fa/
โ โ โ โโโ stt_fa_fastconformer_hybrid_large.nemo
โ โ โโโ Whisper_Persian_V4_FP16/
โ โโโ Translation/
โ โโโ Seamless_M4T_V2_Large_Translation/
โโโ Speed/
โโโ Multi_Language/
โ โโโ Whisper_Turbo_Global_Speed/
โโโ Persian_ASR/
โโโ Whisper_Turbo_Persian_Speed/
```
</details>
---
## 7๏ธโฃ Multimodal
<div align="center">
<i>Models that see and hear โ process images, audio, and text together for rich understanding.</i>
</div>
Multimodal models are the frontier of local AI โ they can analyze images, describe screenshots, read documents with visual layouts, and process audio alongside text. This enables workflows like "take a photo of this whiteboard and summarize it" or "analyze this chart and explain the trends."
| Tier | Model | Size | Quantization | Key Capabilities |
|------|-------|------|-------------|------------------|
| ๐ Quality | [Qwen3-Omni 30B-A3B](https://huggingface.co/ggml-org/Qwen3-Omni-30B-A3B-Instruct-GGUF) | 30B (MoE, 3B active) | Q4_K_M | **Full omni-model** โ understands text, images, AND audio natively. The most capable multimodal model in this collection. MoE architecture keeps VRAM usage manageable |
| โก Speed | [Gemma 4 E4B](https://huggingface.co/unsloth/gemma-4-E4B-it-GGUF) | ~4B (effective) | Q4_K_XL | Speculative decoding with MTP draft model for faster generation. Excellent for quick image analysis, screenshot understanding, and visual Q&A. Despite its small effective size, Gemma 4 punches well above its weight |
> โ ๏ธ **CRITICAL โ Read before relying on "multimodal":** The models shipped here are **GGUF quantized** files. In their current state, tooling only supports the **vision (image)** modality from these quantized files โ **audio input does not work** on the quantized versions.
>
> True text + image + audio multimodality is currently only available from the **original, uncompressed (FP16/BF16) models** โ not from the quantized GGUF files in this toolkit. The quantized variants effectively behave as **vision-language models (VLM)**: they can see images and read text, but they **cannot process audio**.
>
> This is a tooling limitation, not a model defect โ current inference engines (llama.cpp, Ollama, LM Studio, etc.) cannot yet route audio through quantized GGUF multimodal pipelines. If you need genuine audio understanding, download and run the **original uncompressed weights** from the source repos linked below.
>
> I learned this the hard way after downloading โ the quantized files simply won't run as full multimodal. Hence this warning.
**Why Qwen3-Omni for quality?** It's one of the very few models that genuinely handles text + image + audio in a unified architecture. Most "multimodal" models only handle text and images โ Qwen3-Omni adds audio understanding, making it a true all-in-one model for multimedia tasks.
<details>
<summary>๐ Folder Structure</summary>
```
7-Multimodal/
โโโ Quality/
โ โโโ Qwen3_Omni_30B_A3B_Quality/
โ โโโ Qwen3-Omni-30B-A3B-Instruct-Q4_K_M.gguf
โ โโโ mmproj-Qwen3-Omni-30B-A3B-Instruct-Q8_0.gguf
โโโ Speed/
โโโ Gemma4_E4B_Speed_Speculative/
โโโ gemma-4-E4B-it-UD-Q4_K_XL.gguf
โโโ mmproj-F16.gguf
โโโ MTP/
โโโ gemma-4-E4B-it-F16-MTP.gguf
```
</details>
---
## 8๏ธโฃ Uncensored Models
<div align="center">
<i>Unfiltered variants for research, creative writing, and use cases requiring unrestricted model outputs.</i>
</div>
These are **abliterated** (uncensored) versions of the models found in other categories. They have had their refusal mechanisms and output filters removed through fine-tuning. They produce the same quality outputs as their censored counterparts but without refusing requests.
> โ ๏ธ **Disclaimer:** These models are provided for legitimate research, creative, and educational purposes. Users are responsible for ensuring their use complies with applicable laws and ethical guidelines.
| Category | Tier | Model | Size | Quantization | Notes |
|----------|------|-------|------|-------------|-------|
| ๐ป Code | ๐ Quality | [Huihui Qwen3-VL 30B (Uncensored)](https://huggingface.co/mradermacher/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF) | 30B (MoE) | Q4_K_M | Uncensored vision-language model โ can analyze code screenshots, diagrams, and visual content without restrictions |
| ๐ง General | ๐ Quality | [Huihui Qwen3.6-35B Claude 4.7 Opus (Uncensored)](https://huggingface.co/huihui-ai/Huihui-Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MTP-GGUF) | 35B (MoE) | Q4_K | Uncensored general-purpose model with MTP support. Tuned with Claude 4.7 Opus data for enhanced instruction following |
| ๐ป Code | โก Speed | [Huihui Qwen3-Coder 30B (Uncensored)](https://huggingface.co/mradermacher/Huihui-Qwen3-Coder-30B-A3B-Instruct-abliterated-i1-GGUF) | 30B (MoE) | i1-Q3_K_M | Uncensored coding specialist โ importance-matrix quantized for better quality at lower bitrates |
| ๐ง General | โก Speed | [Huihui Qwen3-VL 8B (Uncensored)](https://huggingface.co/mradermacher/Huihui-Qwen3-VL-8B-Instruct-abliterated-GGUF) | 8B | Q8_0 | Small, fast uncensored VLM โ great for quick visual analysis tasks where you need unrestricted output |
<details>
<summary>๐ Folder Structure</summary>
```
8-Uncensored_Models/
โโโ Quality/
โ โโโ Code/
โ โ โโโ Huihui_Qwen3_VL_30B_Uncensored_Q4_K_M/
โ โ โโโ Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated.Q4_K_M.gguf
โ โโโ General/
โ โโโ Huihui_Qwen3.6_35B_Claude4.7_Opus_MTP_Uncensored_Q4_K/
โ โโโ Huihui-Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-ggml-model-Q4_K.gguf
โ โโโ mmproj-model-f16.gguf
โโโ Speed/
โโโ Code/
โ โโโ Huihui_Qwen3_Coder_30B_Uncensored_i1_Q3_K_M/
โ โโโ Huihui-Qwen3-Coder-30B-A3B-Instruct-abliterated.i1-Q3_K_M.gguf
โโโ General/
โโโ Huihui_Qwen3_VL_8B_Uncensored_Q8_0/
โโโ Huihui-Qwen3-VL-8B-Instruct-abliterated.Q8_0.gguf
โโโ Huihui-Qwen3-VL-8B-Instruct-abliterated.mmproj-f16.gguf
```
</details>
---
## ๐ Model Source Links
All models in this toolkit are sourced from Hugging Face. During the initial download process, direct URLs were not recorded. The original sources were **recovered by matching SHA-256 hashes** against Hugging Face repositories. While some links may point to slightly different file versions within the same quantization family, the hash-verified content is identical to what is hosted in this toolkit.
### 1 โ Universal Foundation LLMs
| File | Source |
|------|--------|
| Qwen3.6-35B-A3B-UD-Q4_K_XL.gguf | [unsloth/Qwen3.6-35B-A3B-GGUF](https://huggingface.co/unsloth/Qwen3.6-35B-A3B-GGUF/blob/main/Qwen3.6-35B-A3B-UD-Q4_K_XL.gguf) |
| mmproj-BF16.gguf (Qwen3.6) | [unsloth/Qwen3.6-35B-A3B-GGUF](https://huggingface.co/unsloth/Qwen3.6-35B-A3B-GGUF/blob/main/mmproj-BF16.gguf) |
| Qwen3.5-9B-Q5_K_M.gguf | [unsloth/Qwen3.5-9B-GGUF](https://huggingface.co/unsloth/Qwen3.5-9B-GGUF/blob/main/Qwen3.5-9B-Q5_K_M.gguf) |
| mmproj-BF16.gguf (Qwen3.5) | [unsloth/Qwen3.5-9B-GGUF](https://huggingface.co/unsloth/Qwen3.5-9B-GGUF/blob/0b11907b7136445eab40d9c30b737ecf6888ea43/mmproj-BF16.gguf) |
### 2 โ Coding Agents
| File | Source |
|------|--------|
| Qwen3-Coder-30B-A3B-Instruct-Q5_K_M.gguf | [unsloth/Qwen3-Coder-30B-A3B-Instruct-GGUF](https://huggingface.co/unsloth/Qwen3-Coder-30B-A3B-Instruct-GGUF/blob/7ce945e58ed3f09f9cf9c33a2122d86ac979b457/Qwen3-Coder-30B-A3B-Instruct-Q5_K_M.gguf) |
| DeepSeek-R1-Distill-Qwen-32B-Q4_K_M.gguf | [bartowski/DeepSeek-R1-Distill-Qwen-32B-GGUF](https://huggingface.co/bartowski/DeepSeek-R1-Distill-Qwen-32B-GGUF/blob/main/DeepSeek-R1-Distill-Qwen-32B-Q4_K_M.gguf) |
| qwen2.5-coder-7b-instruct-q5_k_m.gguf | [EasierAI/Qwen-2.5-Coder-7B](https://huggingface.co/EasierAI/Qwen-2.5-Coder-7B/blob/930efd5c3de60fde0723f262592f8551aebbd7f2/qwen2.5-coder-7b-instruct-q5_k_m.gguf) |
| Qwen2.5-Coder-14B-Q4_K_M.gguf | [bartowski/Qwen2.5-Coder-14B-GGUF](https://huggingface.co/bartowski/Qwen2.5-Coder-14B-GGUF/blob/main/Qwen2.5-Coder-14B-Q4_K_M.gguf) |
| DeepSeek-R1-Distill-Qwen-14B-Q4_K_M.gguf | [bartowski/DeepSeek-R1-Distill-Qwen-14B-GGUF](https://huggingface.co/bartowski/DeepSeek-R1-Distill-Qwen-14B-GGUF/blob/850859f9d3d93e1d2b19d37d15adf1d7ea7ac493/DeepSeek-R1-Distill-Qwen-14B-Q4_K_M.gguf) |
### 3 โ Agent Orchestration and Routing
| File | Source |
|------|--------|
| Agents-A1-IQ4_XS-imatrix-gguf-fable5-calibrated.gguf | [Chungulus/Agents-A1-IQ4_XS-imatrix-gguf-fable5-calibrated](https://huggingface.co/Chungulus/Agents-A1-IQ4_XS-imatrix-gguf-fable5-calibrated/blob/main/Agents-A1-IQ4_XS-imatrix-gguf-fable5-calibrated.gguf) |
| GLM-4.7-Flash-UD-Q4_K_XL.gguf | [unsloth/GLM-4.7-Flash-GGUF](https://huggingface.co/unsloth/GLM-4.7-Flash-GGUF/blob/main/GLM-4.7-Flash-UD-Q4_K_XL.gguf) |
| hermes-4_3_36b-Q4_K_M.gguf | [NousResearch/Hermes-4.3-36B-GGUF](https://huggingface.co/NousResearch/Hermes-4.3-36B-GGUF/blob/e6cfb17bc2a4287a7b9982df186b8c87b6de445c/hermes-4_3_36b-Q4_K_M.gguf) |
| Gemma4_12B_Agentic_Worker_v2.gguf | [yuxinlu1/gemma-4-12B-agentic-fable5-composer2.5-v2-3.5x-tau2-GGUF](https://huggingface.co/yuxinlu1/gemma-4-12B-agentic-fable5-composer2.5-v2-3.5x-tau2-GGUF/blob/190a31365a6b80a692349be34ccdac730cad4fe4/gemma4-v2-Q4_K_M.gguf) |
| Hermes-4-14B-Q4_K_M.gguf | [gabriellarson/Hermes-4-14B-GGUF](https://huggingface.co/gabriellarson/Hermes-4-14B-GGUF/blob/main/Hermes-4-14B-Q4_K_M.gguf) |
| Llama-Guard-3-8B.i1-Q4_K_M.gguf | [mradermacher/Llama-Guard-3-8B-i1-GGUF](https://huggingface.co/mradermacher/Llama-Guard-3-8B-i1-GGUF/blob/main/Llama-Guard-3-8B.i1-Q4_K_M.gguf) |
### 4 โ Document Analysis and RAG
| File | Source |
|------|--------|
| BGE-M3 Embedding | [BAAI/bge-m3](https://huggingface.co/BAAI/bge-m3/tree/main) |
| BGE-Reranker-V2-M3 | [Heisenberg0314/bge-reranker-v2-m3](https://huggingface.co/Heisenberg0314/bge-reranker-v2-m3/tree/main) |
| NuExtract-v1.5-Q8_0.gguf | [bartowski/NuExtract-v1.5-GGUF](https://huggingface.co/bartowski/NuExtract-v1.5-GGUF/blob/24e96b9346fd75b1b56ef606cba6f42f7cd12f8a/NuExtract-v1.5-Q8_0.gguf) |
| reader-lm-1.5b-Q8_0.gguf | [bartowski/reader-lm-1.5b-GGUF](https://huggingface.co/bartowski/reader-lm-1.5b-GGUF/blob/bd0334641e23f8cb8e1555cc244a91dfeb2ffff7/reader-lm-1.5b-Q8_0.gguf) |
| gemma-4-12b-it-UD-Q4_K_XL.gguf | [unsloth/gemma-4-12b-it-GGUF](https://huggingface.co/unsloth/gemma-4-12b-it-GGUF/blob/c0e396f9ee60d3ad702248f17edc3ec22384c287/gemma-4-12b-it-UD-Q4_K_XL.gguf) |
| mmproj-BF16.gguf (Gemma 4 12B) | [unsloth/gemma-4-12b-it-GGUF](https://huggingface.co/unsloth/gemma-4-12b-it-GGUF/blob/main/mmproj-BF16.gguf) |
| mtp-gemma-4-12b-it-Q8_0.gguf | [unsloth/gemma-4-12b-it-GGUF](https://huggingface.co/unsloth/gemma-4-12b-it-GGUF/blob/main/MTP/mtp-gemma-4-12b-it-Q8_0.gguf) |
### 5 โ Text-to-Speech
| File | Source |
|------|--------|
| Dia2 2B Dialogue | [nari-labs/Dia2-2B](https://huggingface.co/nari-labs/Dia2-2B/tree/main) |
| Chatterbox TTS Persian | [Thomcles/Chatterbox-TTS-Persian-Farsi](https://huggingface.co/Thomcles/Chatterbox-TTS-Persian-Farsi/blob/main/t3_fa.safetensors) |
| F5-TTS Persian | [Lumos675/F5_TTS_Persian](https://huggingface.co/Lumos675/F5_TTS_Persian/tree/main) |
| Qwen3-TTS 12Hz VoiceDesign | [Jinstudio/Qwen3-TTS-12Hz-1.7B-VoiceDesign](https://huggingface.co/Jinstudio/Qwen3-TTS-12Hz-1.7B-VoiceDesign/tree/main) |
| F5-TTS v1 Base | [TopherAU/F5-TTS-v1](https://huggingface.co/TopherAU/F5-TTS-v1/tree/main) |
### 6 โ Speech-to-Text
| File | Source |
|------|--------|
| Demucs V4 ONNX | [MrCitron/demucs-v4-onnx](https://huggingface.co/MrCitron/demucs-v4-onnx/blob/main/htdemucs_ft.onnx) |
| Silero VAD ONNX | [istupakov/silero-vad-onnx](https://huggingface.co/istupakov/silero-vad-onnx/blob/main/silero_vad.onnx) |
| Whisper Large V3 | [openai/whisper-large-v3](https://huggingface.co/openai/whisper-large-v3/tree/main) |
| FastConformer Fa Large | [nvidia/stt_fa_fastconformer_hybrid_large](https://huggingface.co/nvidia/stt_fa_fastconformer_hybrid_large/blob/main/stt_fa_fastconformer_hybrid_large.nemo) |
| Whisper Persian V4 | [nezamisafa/whisper-persian-v4](https://huggingface.co/nezamisafa/whisper-persian-v4/tree/main) |
| Seamless M4T V2 Large | [facebook/seamless-m4t-v2-large](https://huggingface.co/facebook/seamless-m4t-v2-large/tree/main) |
| Whisper Large V3 Turbo | [openai/whisper-large-v3-turbo](https://huggingface.co/openai/whisper-large-v3-turbo/tree/main) |
| Whisper Turbo Persian | [SadeghK/whisper-large-v3-turbo](https://huggingface.co/SadeghK/whisper-large-v3-turbo/tree/main) |
### 7 โ Multimodal
| File | Source |
|------|--------|
| Qwen3-Omni-30B-A3B-Instruct-Q4_K_M.gguf | [ggml-org/Qwen3-Omni-30B-A3B-Instruct-GGUF](https://huggingface.co/ggml-org/Qwen3-Omni-30B-A3B-Instruct-GGUF/blob/main/Qwen3-Omni-30B-A3B-Instruct-Q4_K_M.gguf) |
| mmproj-Qwen3-Omni-30B-A3B-Instruct-Q8_0.gguf | [ggml-org/Qwen3-Omni-30B-A3B-Instruct-GGUF](https://huggingface.co/ggml-org/Qwen3-Omni-30B-A3B-Instruct-GGUF/blob/main/mmproj-Qwen3-Omni-30B-A3B-Instruct-Q8_0.gguf) |
| gemma-4-E4B-it-UD-Q4_K_XL.gguf | [unsloth/gemma-4-E4B-it-GGUF](https://huggingface.co/unsloth/gemma-4-E4B-it-GGUF/blob/0f9c09189de30e8d9a30d09fe5fb9ce9284aa326/gemma-4-E4B-it-UD-Q4_K_XL.gguf) |
| mmproj-F16.gguf (Gemma 4 E4B) | [unsloth/gemma-4-E4B-it-GGUF](https://huggingface.co/unsloth/gemma-4-E4B-it-GGUF/blob/main/mmproj-F16.gguf) |
| gemma-4-E4B-it-F16-MTP.gguf | [unsloth/gemma-4-E4B-it-GGUF](https://huggingface.co/unsloth/gemma-4-E4B-it-GGUF/blob/main/MTP/mtp-gemma-4-E4B-it-F16.gguf) |
### 8 โ Uncensored Models
| File | Source |
|------|--------|
| Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated.Q4_K_M.gguf | [mradermacher/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF](https://huggingface.co/mradermacher/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated-GGUF/blob/main/Huihui-Qwen3-VL-30B-A3B-Instruct-abliterated.Q4_K_M.gguf) |
| Huihui-Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-Q4_K.gguf | [huihui-ai/Huihui-Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MTP-GGUF](https://huggingface.co/huihui-ai/Huihui-Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MTP-GGUF/blob/main/Huihui-Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-ggml-model-Q4_K.gguf) |
| mmproj-model-f16.gguf (Huihui 35B) | [huihui-ai/Huihui-Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MTP-GGUF](https://huggingface.co/huihui-ai/Huihui-Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MTP-GGUF/blob/main/mmproj-model-f16.gguf) |
| Huihui-Qwen3-Coder-30B-A3B-Instruct-abliterated.i1-Q3_K_M.gguf | [mradermacher/Huihui-Qwen3-Coder-30B-A3B-Instruct-abliterated-i1-GGUF](https://huggingface.co/mradermacher/Huihui-Qwen3-Coder-30B-A3B-Instruct-abliterated-i1-GGUF/blob/main/Huihui-Qwen3-Coder-30B-A3B-Instruct-abliterated.i1-Q3_K_M.gguf) |
| Huihui-Qwen3-VL-8B-Instruct-abliterated.Q8_0.gguf | [mradermacher/Huihui-Qwen3-VL-8B-Instruct-abliterated-GGUF](https://huggingface.co/mradermacher/Huihui-Qwen3-VL-8B-Instruct-abliterated-GGUF/blob/main/Huihui-Qwen3-VL-8B-Instruct-abliterated.Q8_0.gguf) |
| Huihui-Qwen3-VL-8B-Instruct-abliterated.mmproj-f16.gguf | [mradermacher/Huihui-Qwen3-VL-8B-Instruct-abliterated-GGUF](https://huggingface.co/mradermacher/Huihui-Qwen3-VL-8B-Instruct-abliterated-GGUF/blob/main/Huihui-Qwen3-VL-8B-Instruct-abliterated.mmproj-f16.gguf) |
---
## ๐ ๏ธ Recommended Tools for Running These Models
| Tool | Best For | Link |
|------|----------|------|
| **Ollama** | Easiest setup, CLI-first, model management | [ollama.com](https://ollama.com) |
| **LM Studio** | GUI-based, beginner-friendly, model browsing | [lmstudio.ai](https://lmstudio.ai) |
| **llama.cpp** | Maximum control, server mode, API compatible | [github.com/ggml-org/llama.cpp](https://github.com/ggml-org/llama.cpp) |
| **vLLM** | High-throughput serving, OpenAI-compatible API | [github.com/vllm-project/vllm](https://github.com/vllm-project/vllm) |
| **Koboldcpp** | One-click launcher, built-in GPU support | [github.com/lostruins/koboldcpp](https://github.com/lostruins/koboldcpp) |
---
## ๐ Hardware Requirements
| Component | Minimum | Recommended | This Toolkit's Target |
|-----------|---------|-------------|-----------------------|
| **GPU VRAM** | 8 GB | 12 GB | **NVIDIA RTX 3060 12GB** |
| **System RAM** | 16 GB | 32 GB | **32 GB DDR4** |
| **Storage** | 100 GB SSD | 500 GB NVMe | SSD strongly recommended |
| **OS** | Windows/Linux/macOS | Linux (Ubuntu) | Any with CUDA support |
> ๐ก **MoE Advantage:** Many models in this toolkit use Mixture-of-Experts (MoE) architecture, which activates only a fraction of total parameters during inference. This means you get the quality of much larger models while staying within 12GB VRAM constraints.
---
<div align="center">
## โญ Acknowledgments
All models in this toolkit are the work of their respective creators and are used in accordance with their original licenses. Special thanks to:
**Model Families:** [Qwen](https://huggingface.co/Qwen) ยท [DeepSeek](https://huggingface.co/deepseek-ai) ยท [Gemma](https://huggingface.co/google) ยท [Hermes/NousResearch](https://huggingface.co/NousResearch) ยท [Whisper/OpenAI](https://huggingface.co/openai) ยท [Llama/Meta](https://huggingface.co/meta-llama) ยท [GLM](https://huggingface.co/THUDM) ยท [BGE/BAAI](https://huggingface.co/BAAI)
**Quantization:** [unsloth](https://huggingface.co/unsloth) ยท [bartowski](https://huggingface.co/bartowski) ยท [mradermacher](https://huggingface.co/mradermacher) ยท [ggml-org](https://huggingface.co/ggml-org) ยท [Chungulus](https://huggingface.co/Chungulus)
**Uncensored Variants:** [huihui-ai](https://huggingface.co/huihui-ai) ยท [mradermacher](https://huggingface.co/mradermacher)
---
<i>Assembled with AI-assisted model selection ยท Curated for RTX 3060 12GB ยท Updated as stronger models arrive</i>
</div> |