vamazing/Koa-AI-Code-3B-GGUF overview
Koa AI Code 3B Debug GGUF Koa AI Code 3B GGUF is a fine tuned 3B parameter language model built on the Ministral 3B architecture. It is optimized for lightweig…
Runs locally from ~2.00 GB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| Koa AI - ministral-3-3b-instruct-2512.Q4_K_M.gguf | GGUF | GGUF | 2.00 GB | Download |
Model Details
| Model ID | vamazing/Koa-AI-Code-3B-GGUF |
|---|---|
| Author | vamazing |
| Pipeline | text-generation |
| License | apache-2.0 |
| Base model | mistralai/Ministral-3b-instruct |
| Last modified | 2026-08-03T20:02:16.000Z |
Model README
---
license: apache-2.0
base_model: mistralai/Ministral-3b-instruct
tags:
- ministral
- ministral3
- gguf
- text-generation
- code
pipeline_tag: text-generation
library_name: transformers
language:
- en
datasets:
- greghavens/fable-5-coding-and-debugging-traces
---
Koa-AI Code 3B (Debug GGUF)
Koa-AI-Code-3B-GGUF is a fine-tuned 3B parameter language model built on the Ministral 3B architecture. It is optimized for lightweight text generation, instruction following, and coding tasks.
---
Model Details
- Developed by: vamazing
- Model Type: Causal Language Model / Conditional Generation
- Architecture: Ministral 3 (3B parameters)
- Language(s): English
- License: Apache 2.0
- Finetuned from:
mistralai/Ministral-3b-instruct
---
Quickstart & Usage
1. Running with transformers (Python)
To run the model using Hugging Face transformers (v5.5.0 or compatible):
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
model_id = "vamazing/Koa-AI-Code-3B-GGUF"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype=torch.float16,
device_map="auto",
trust_remote_code=True
)
prompt = "Write a Python function to check if a number is prime."
messages = [{"role": "user", "content": prompt}]
formatted_prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(formatted_prompt, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=256, do_sample=True, temperature=0.7)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))Run vamazing/Koa-AI-Code-3B-GGUF with guIDE
Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.
Source: Hugging Face · Compare models