ragib01/Qwen3-4B-customer-support-gguf
0199
Qwen3 4B Customer Support - GGUF
This repository contains GGUF quantized versions of ragib01/Qwen3-4B-customer-support for efficient inference with llama.cpp and compatible tools.
Model Description
A fine-tuned Qwen3-4B model optimized for customer support tasks, converted to GGUF format for efficient CPU and GPU inference.
Available Quantization Formats
Recommendation: Start with Qwen3-4B-customer-support-Q4_K_M.gguf for the best balance of quality and size.
Usage
LM Studio
- Open LM Studio
- Go to the "Search" tab
- Search for
ragib01/Qwen3-4B-customer-support - Download your preferred quantization
- Load and start chatting!
llama.cpp (Command Line)
# Download a model
huggingface-cli download ragib01/Qwen3-4B-customer-support-gguf Qwen3-4B-customer-support-Q4_K_M.gguf --local-dir ./models
# Run inference
./llama-cli -m ./models/Qwen3-4B-customer-support-Q4_K_M.gguf -p "How do I track my order?" -n 256Python (llama-cpp-python)
from llama_cpp import Llama
# Load model
llm = Llama(
model_path="./models/Qwen3-4B-customer-support-Q4_K_M.gguf",
n_ctx=2048,
n_threads=8,
n_gpu_layers=35 # Adjust based on your GPU
)
# Generate response
output = llm(
"How do I track my order?",
max_tokens=256,
temperature=0.7,
top_p=0.9,
)
print(output['choices'][0]['text'])Ollama
# Create a Modelfile
cat > Modelfile << EOF
FROM ./Qwen3-4B-customer-support-Q4_K_M.gguf
PARAMETER temperature 0.7
PARAMETER top_p 0.9
EOF
# Create the model
ollama create qwen3-customer-support -f Modelfile
# Run it
ollama run qwen3-customer-support "How do I track my order?"Prompt Format
This model uses the Qwen chat format:
<|im_start|>system
You are a helpful customer support assistant.<|im_end|>
<|im_start|>user
How do I track my order?<|im_end|>
<|im_start|>assistantPerformance Notes
- CPU: Q4KM works well on modern CPUs with 8GB+ RAM
- GPU: Use higher quantizations (Q6K, Q80) if you have VRAM available
- Mobile: Q3KM or Q2_K for resource-constrained devices
Original Model
This is a quantized version of unsloth/Qwen3-4B-Instruct-2507.
License
Apache 2.0
Citation
@misc{{qwen3-customer-support-gguf,
author = {{ragib01}},
title = {{Qwen3 4B Customer Support - GGUF}},
year = {{2025}},
publisher = {{HuggingFace}},
url = {{https://huggingface.co/ragib01/Qwen3-4B-customer-support-gguf}}
}}