Views
No views yet
Ministral-3-3B-Instruct-2512-BF16-mmproj.gguf & Ministral-3-3B-Instruct-2512-Q8_0.gguf
.mmproj file alongside the model weight to enable Vision capabilities).NuExtract3-Q4_K_M.gguf || NuExtract3-Q8_0.gguf) && mmproj-NuExtract3-BF16.gguf
llama-3-8b.q4_K_M.gguf
models--BAAI--bge-m3
Qwen3.5-9B-Q5_K_S.bpw.gguf
gemma-4-E2B-it-qat-ud-Q4_K_XL.gguf must be paired with mtp-gemma-4-E2B-it-Q4_0.gguf as its dedicated draft model to accelerate token generation speed.gemma-4-E4B-it-Q4_K_M.gguf (Run independently for deeper cognitive tasks, or pair it with its corresponding 4B MTP draft file).Uncensored-HauhauCS-Aggressive-Q4_K_M.gguf
WhiteRabbitNeo-V3-7B-Q4_K_M.gguf
models--Systran--faster-whisper-large-v3 & models--deepdml--faster-whisper-large-v3-turbo-ct2
models--Qwen--Qwen3-TTS-12Hz-1.7B-CustomVoice
models--nvidia--parakeet-tdt-0.6b-v3 & vosk_models
llama.cpp1./llama-cli -m Ministral-3-3B-Instruct-2512-Q8_0.gguf \
2 --mmproj Ministral-3-3B-Instruct-2512-BF16-mmproj.gguf \
3 --image path/to/your/document.png \
4 -p "Perform a highly accurate OCR transcript of this document."1from langchain_community.llms import LlamaCpp
2from langchain_chains import RetrievalQA
3
4# Load the Llama-3-8B vector database specialist
5llm = LlamaCpp(model_path="./llama-3-8b.q4_K_M.gguf", n_ctx=8192)
6
7# Querying your pre-loaded Vector Store
8retriever = vector_db.as_retriever(search_kwargs={"k": 5})
9qa_chain = RetrievalQA.from_chain_type(llm=llm, chain_type="stuff", retriever=retriever)
10
11response = qa_chain.run("What does the internal database say about our 2026 Q3 policy?")llama-server.exe on Windows. This opens an OpenAI-compatible endpoint that can be plugged into SillyTavern, Open WebUI, or custom apps.1./llama-server.exe -m "Qwen3.5-9B-Q5_K_S-5.10bpw.gguf" \
2 -ngl 99 \
3 -c 32768 \
4 -np 1 \
5 -mg 0 \
6 --host 127.0.0.1 \
7 --port 80011set MAIN_MODEL=.\gemma-4-E2B-it-qat-UD-Q4_K_XL.gguf
2set DRAFT_MODEL=.\mtp-gemma-4-E2B-it-Q4_0.gguf
3
4llama-server.exe -m "%MAIN_MODEL%" --model-draft "%DRAFT_MODEL%" --spec-type draft-mtp -ngl 99 -c 32768 -np 1 -mg 0 --host 127.0.0.1 --port 8001-ngl 99: Offloads 99 layers to the GPU (ensuring full GPU acceleration).-c 32768: Expands the model's context window up to 32k tokens.-np 1: Spawns 1 parallel processing slot.--host 127.0.0.1 --port 8001: Sets up your local endpoint at http://127.0.0.1:8001.💡 Best For Budget GPUs: Every model in this repository is heavily quantized and strictly optimized to run flawlessly with full GPU acceleration on NVIDIA RTX 4060 8GB and below (including RTX 3060, RTX 4050, and 6GB/8GB Laptop GPUs).By utilizing efficient architectures and GGUF/MTP pairings, you will achieve blazing-fast inference speeds without ever hit any out-of-memory (OOM) limitations on 8GB VRAM hardware.
local-ocr • llama-server-gguf • vector-db-querying • rag-llm-gguf • qwen3.5-gguf • standard-llm • ministral-ocr • llama3-rag • gguf-models • faster-whisper • local-ai-hub • uncensored-llm • offline-embeddings • low-vram-rag