--- 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 ---

AI Generated

> โš ๏ธ **Note:** This README was generated and is maintained by AI.
# ๐Ÿง  Local AI Toolkit ### A Curated Collection of Locally-Runnable AI Models **Optimized for RTX 3060 12GB VRAM + 32GB RAM**

GPU RAM Models Categories Format

LLMs Coding RAG TTS STT Multimodal Agents Image Gen Video Gen

AI-assisted model selection ยท Quantized for consumer hardware ยท A suggested starting point
--- ## ๐Ÿ“– 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
The backbone of any local AI setup โ€” general-purpose models for conversation, analysis, writing, and reasoning.
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.
๐Ÿ“ Folder Structure ``` 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 ```
--- ## 2๏ธโƒฃ Coding Agents
Specialized models for writing, debugging, and architecting code โ€” the core of any AI-assisted development workflow.
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.
๐Ÿ“ Folder Structure ``` 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 ```
--- ## 3๏ธโƒฃ Agent Orchestration and Routing
The nervous system of multi-agent AI systems โ€” models that coordinate, route, guard, and execute complex agent workflows.
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 |
๐Ÿ“ Folder Structure ``` 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 ```
--- ## 4๏ธโƒฃ Document Analysis and RAG
The complete pipeline for building local Retrieval-Augmented Generation systems โ€” from embedding to generation.
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.
๐Ÿ“ Folder Structure ``` 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 ```
--- ## 5๏ธโƒฃ Text-to-Speech (TTS)
Convert text to natural-sounding speech โ€” from multi-speaker dialogue to voice cloning and custom voice design.
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.
๐Ÿ“ Folder Structure ``` 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/ ```
--- ## 6๏ธโƒฃ Speech-to-Text (STT)
Transcribe, translate, and preprocess audio โ€” from studio-quality multi-language recognition to specialized Persian ASR.
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 |
๐Ÿ“ Folder Structure ``` 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/ ```
--- ## 7๏ธโƒฃ Multimodal
Models that see and hear โ€” process images, audio, and text together for rich understanding.
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.
๐Ÿ“ Folder Structure ``` 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 ```
--- ## 8๏ธโƒฃ Uncensored Models
Unfiltered variants for research, creative writing, and use cases requiring unrestricted model outputs.
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 |
๐Ÿ“ Folder Structure ``` 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 ```
--- ## ๐Ÿ”— 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. ---
## โญ 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) --- Assembled with AI-assisted model selection ยท Curated for RTX 3060 12GB ยท Updated as stronger models arrive