How to use from
SGLang
Install from pip and serve model
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
    --model-path "SoarAILabs/breeze-3b" \
    --host 0.0.0.0 \
    --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "SoarAILabs/breeze-3b",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker images
docker run --gpus all \
    --shm-size 32g \
    -p 30000:30000 \
    -v ~/.cache/huggingface:/root/.cache/huggingface \
    --env "HF_TOKEN=<secret>" \
    --ipc=host \
    lmsysorg/sglang:latest \
    python3 -m sglang.launch_server \
        --model-path "SoarAILabs/breeze-3b" \
        --host 0.0.0.0 \
        --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "SoarAILabs/breeze-3b",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

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

Property Value
Base Model Qwen/Qwen2.5-Coder-3B-Instruct
Training Data 7,165 curated merge conflicts from ConGra dataset
Fine-tuning Method LoRA (rank-8 adapters)
Parameters 3B
Quantization Q4_K_M GGUF available
License Apache 2.0

Local Inference

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

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
Downloads last month
98
Safetensors
Model size
3B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with SoarAILabs/breeze-3b.

Model tree for SoarAILabs/breeze-3b

Base model

Qwen/Qwen2.5-3B
Quantized
(129)
this model
Quantizations
2 models