CoolFace
Modelpublic

SoarAILabs/breeze-3b

sourceHugging Faceapache-2.0updated 11mo agoView on Hugging Face
4likes127downloads
Model Card

๐ŸŒฌ๏ธ Breeze-3B: AI-Powered Git Merge Conflict Resolution

Breeze-3B is a specialized coding model fine-tuned on Qwen/Qwen2.5-Coder-3B-Instruct to automatically resolve Git merge conflicts with reasoning and context awareness.

๐Ÿš€ Key Features

  • โ€”Intelligent Resolution: Analyzes merge conflicts and provides reasoned solutions
  • โ€”Multi-Language Support: Works across Python, JavaScript, Java, C++, and more
  • โ€”Preserves Code Quality: Maintains general coding capabilities while specializing in conflict resolution
  • โ€”Multiple Deployment Options: Cloud inference, local GGUF, and Ollama support
  • โ€”Lightweight: Only 3B parameters - runs efficiently on consumer hardware

๐Ÿ“Š Model Details

PropertyValue
Base ModelQwen/Qwen2.5-Coder-3B-Instruct
Training Data7,165 curated merge conflicts from ConGra dataset
Fine-tuning MethodLoRA (rank-8 adapters)
Parameters3B
QuantizationQ4KM GGUF available
LicenseApache 2.0

Local Inference

python
from llama_cpp import Llama

llm = Llama(model_path="breeze-3b.Q4_K_M.gguf")
response = llm(f"Resolve this merge conflict:\n\n{conflict}")
print(response["choices"][0]["text"])

Ollama Inference

bash
ollama run hf.co/SoarAILabs/breeze-3b

Features

  • โ€”Resolves merge conflicts with reasoning
  • โ€”Supports multiple programming languages
  • โ€”No catastrophic forgetting of general coding skills
  • โ€”Works with both cloud and local inference