Text Generation
Transformers
Safetensors
GGUF
English
code-generation
code-assistant
agentic
tool-calling
function-calling
rag
llama.cpp
ollama
conversational
Eval Results (legacy)
Instructions to use my-ai-stack/Stack-4.0-Qwen-3B-Agentic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use my-ai-stack/Stack-4.0-Qwen-3B-Agentic with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="my-ai-stack/Stack-4.0-Qwen-3B-Agentic") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("my-ai-stack/Stack-4.0-Qwen-3B-Agentic", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use my-ai-stack/Stack-4.0-Qwen-3B-Agentic with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "my-ai-stack/Stack-4.0-Qwen-3B-Agentic" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "my-ai-stack/Stack-4.0-Qwen-3B-Agentic", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/my-ai-stack/Stack-4.0-Qwen-3B-Agentic
- SGLang
How to use my-ai-stack/Stack-4.0-Qwen-3B-Agentic with 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 "my-ai-stack/Stack-4.0-Qwen-3B-Agentic" \ --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": "my-ai-stack/Stack-4.0-Qwen-3B-Agentic", "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 "my-ai-stack/Stack-4.0-Qwen-3B-Agentic" \ --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": "my-ai-stack/Stack-4.0-Qwen-3B-Agentic", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use my-ai-stack/Stack-4.0-Qwen-3B-Agentic with Docker Model Runner:
docker model run hf.co/my-ai-stack/Stack-4.0-Qwen-3B-Agentic
File size: 11,151 Bytes
f09ad8d 005ef57 9e718d0 005ef57 f09ad8d 9e718d0 f09ad8d 9e718d0 713d1da 9e718d0 89eee74 9e718d0 89eee74 9e718d0 89eee74 9e718d0 89eee74 9e718d0 f09ad8d 9e718d0 f09ad8d 9e718d0 f09ad8d 9e718d0 f09ad8d 9e718d0 f09ad8d 9e718d0 f09ad8d 9e718d0 d238244 9e718d0 d238244 9e718d0 d238244 9e718d0 d238244 9e718d0 d238244 9e718d0 d238244 9e718d0 f09ad8d 9e718d0 f09ad8d 9e718d0 f09ad8d 9e718d0 005ef57 9e718d0 005ef57 9e718d0 005ef57 9e718d0 005ef57 9e718d0 005ef57 9e718d0 005ef57 9e718d0 005ef57 9e718d0 005ef57 9e718d0 005ef57 9e718d0 005ef57 9e718d0 005ef57 9e718d0 005ef57 9e718d0 005ef57 9e718d0 005ef57 9e718d0 005ef57 9e718d0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 | ---
language:
- en
license: apache-2.0
library_name: transformers
pipeline_tag: text-generation
base_model: Qwen/Qwen2.5-Coder-3B
tags:
- code-generation
- code-assistant
- agentic
- tool-calling
- function-calling
- rag
- gguf
- llama.cpp
- ollama
model-index:
- name: Stack-4.0-Qwen-3B-Agentic
results:
- task:
type: text-generation
metrics:
- type: pass@k
value: 0.85
- type: tool_call_accuracy
value: 0.92
---
<p align="center">
<a href="https://github.com/my-ai-stack/stack-4.0">
<img src="https://img.shields.io/github/stars/my-ai-stack/stack-4.0?style=flat-square" alt="GitHub stars"/>
</a>
<a href="https://github.com/my-ai-stack/stack-4.0/blob/main/LICENSE">
<img src="https://img.shields.io/badge/License-Apache%202.0-blue?style=flat-square" alt="License"/>
</a>
<a href="https://huggingface.co/my-ai-stack/Stack-4.0-Qwen-3B-Agentic">
<img src="https://img.shields.io/badge/dynamic/json?color=green&label=Downloads&query=downloads&url=https://huggingface.co/api/models/my-ai-stack/Stack-4.0-Qwen-3B-Agentic" alt="Downloads"/>
</a>
<img src="https://img.shields.io/badge/Parameters-3B-blue?style=flat-square" alt="Parameters"/>
<img src="https://img.shields.io/badge/Context-128K-green?style=flat-square" alt="Context"/>
<img src="https://img.shields.io/badge/Tools-72+-orange?style=flat-square&logo=robot" alt="Tools"/>
<img src="https://img.shields.io/badge/Agentic-Enabled-purple?style=flat-square" alt="Agentic"/>
<img src="https://img.shields.io/badge/Python-3.10+-blue?style=flat-square&logo=python" alt="Python 3.10+"/>
</p>
# Stack 4.0 Qwen 3B Agentic
> Fine-tuned 3B parameter model optimized for tool-calling, RAG, and multi-step agentic workflows
Stack 4.0 Qwen 3B Agentic is a specialized fine-tuned version of Qwen2.5-Coder-3B, optimized specifically for agentic AI workflows. It excels at function calling, tool use, multi-turn conversations, and autonomous task execution. Designed for regulated environments requiring sovereign AI deployment.
---
## Hardware Requirements
| Quantization | GPU Required | VRAM | Total Model Size |
|-------------|--------------|------|------------------|
| FP16 (full precision) | RTX 3060+ | ~6 GB | ~6 GB |
| Q8_0 | RTX 3060 | ~3 GB | ~3 GB |
| Q4_K_M | Any modern GPU | ~1.8 GB | ~1.8 GB |
| Q3_K_M | Integrated GPU | ~1.2 GB | ~1.2 GB |
| Q2_K | CPU + 8GB RAM | ~900 MB | ~900 MB |
### Minimum Requirements (Q3_K and below)
- **GPU**: None required (CPU inference supported)
- **RAM**: 8GB system RAM
- **Storage**: 2GB+ free space
### Recommended Requirements
- **GPU**: NVIDIA RTX 3060 (12GB) or better
- **RAM**: 16GB system RAM
- **Storage**: 4GB+ free space for multiple quantizations
---
## File Sizes
| Quantization | File Size | Download |
|-------------|-----------|----------|
| FP16 | ~6.0 GB | [Download](https://huggingface.co/my-ai-stack/Stack-4.0-Qwen-3B-Agentic/tree/main) |
| Q8_0 | ~3.0 GB | [Download](https://huggingface.co/my-ai-stack/Stack-4.0-Qwen-3B-Agentic/tree/main) |
| Q4_K_M | ~1.8 GB | [Download](https://huggingface.co/my-ai-stack/Stack-4.0-Qwen-3B-Agentic/tree/main) |
| Q3_K_M | ~1.2 GB | [Download](https://huggingface.co/my-ai-stack/Stack-4.0-Qwen-3B-Agentic/tree/main) |
| Q2_K | ~900 MB | [Download](https://huggingface.co/my-ai-stack/Stack-4.0-Qwen-3B-Agentic/tree/main) |
---
## Use Cases
### Best Suited Tasks
- **Tool-Calling Agents**: Autonomous agents that call external functions and APIs
- **RAG Systems**: Retrieval-augmented generation with context-aware tool selection
- **Multi-Step Reasoning**: Complex tasks requiring planning and sequential execution
- **Code Assistance**: Code generation, debugging, and refactoring
- **Conversation Agents**: Multi-turn dialog with state management
- **Workflow Automation**: Task orchestration and process automation
### Industries & Domains
| Industry | Use Case |
|----------|----------|
| Software Development | AI coding assistants, automated code review |
| Customer Support | Autonomous support agents, ticket routing |
| Data Analysis | Data pipeline automation, report generation |
| DevOps | Infrastructure automation, CI/CD optimization |
| Legal | Document automation, case research |
| Healthcare | Clinical decision support, appointment scheduling |
| Finance | Portfolio management, fraud detection |
---
## Quick Start
### Python (Transformers)
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
# Load model and tokenizer
model_name = "my-ai-stack/Stack-4.0-Qwen-3B-Agentic"
tokenizer = AutoTokenizer.from_pretrained(
model_name,
trust_remote_code=True
)
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype=torch.float16,
device_map="auto",
trust_remote_code=True
)
# Example tool call format
tool_schema = [
{
"type": "function",
"function": {
"name": "search_code",
"description": "Search for code patterns in the repository",
"parameters": {
"type": "object",
"properties": {
"pattern": {"type": "string", "description": "Regex pattern to search"},
"path": {"type": "string", "description": "Directory path to search"}
},
"required": ["pattern"]
}
}
}
]
# Generate with tool calling
prompt = """Search for all functions containing 'async' in the src directory."""
messages = [
{"role": "system", "content": "You are Stack 4.0, an agentic AI assistant with tool-calling capabilities."},
{"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
inputs = tokenizer([text], return_tensors="pt").to(model.device)
with torch.no_grad():
outputs = model.generate(
**inputs,
max_new_tokens=512,
temperature=0.2,
top_p=0.95,
do_sample=True,
)
response = tokenizer.decode(
outputs[0][inputs.input_ids.shape[1]:],
skip_special_tokens=True
)
print(response)
```
### llama.cpp
```bash
# Download the GGUF model file
# Visit: https://huggingface.co/my-ai-stack/Stack-4.0-Qwen-3B-Agentic/tree/main
# Run with llama.cpp
./main -m stack-4.0-qwen-3b-agentic-q4_k_m.gguf \
-n 512 \
-t 8 \
-c 131072 \
--temp 0.2 \
--top-p 0.95 \
-p "Write a Python function that searches for code patterns using regex."
# Or use with tool schema (JSON mode)
./main -m stack-4.0-qwen-3b-agentic-q4_k_m.gguf \
--json-schema '{
"type": "object",
"properties": {
"search": {
"type": "object",
"properties": {
"pattern": {"type": "string"},
"path": {"type": "string"}
}
}
}
}'
```
### Ollama
```bash
# Pull the model
ollama pull stack-4.0-qwen-3b-agentic
# Run interactively with agentic mode
ollama run stack-4.0-qwen-3b-agentic "Search for all async functions in the src directory."
# Or use with custom parameters for agentic workflows
ollama run stack-4.0-qwen-3b-agentic \
--temperature 0.1 \
--top-p 0.9 \
--num-ctx 131072 \
--num-gpu 1 \
"Create a Python script that implements a multi-step data pipeline with error handling."
# Use with Ollama's function calling (if available in your version)
ollama function call stack-4.0-qwen-3b-agentic \
--function search_code \
--args '{"pattern": "def.*", "path": "./src"}'
```
---
## Agentic Capabilities
Stack 4.0 Qwen 3B Agentic is specifically trained for autonomous agent workflows:
### Tool Calling
- Native function calling with structured JSON output
- Support for tool schemas in OpenAI format
- Multi-tool selection and chaining
### Multi-Step Reasoning
- Plan-and-execute workflows
- Intermediate step tracking
- Self-correction on failure
### Available Tools (72+ Built-in)
| Category | Tools |
|----------|-------|
| File Operations | file_read, file_write, file_edit, file_delete |
| Code Search | grep, glob, grep_count |
| Task Management | task_create, task_list, task_update, task_delete |
| Agent Orchestration | agent_spawn, team_create, team_assign |
| Web Operations | web_search, web_fetch |
| Scheduling | cron_create, cron_list |
| Skills | skill_execute, skill_chain |
| Messaging | message_send, message_channel |
| MCP Integration | mcp_call, mcp_list_servers |
---
## Model Architecture
| Attribute | Value |
|-----------|-------|
| Base Model | Qwen/Qwen2.5-Coder-3B |
| Parameters | 3B |
| Fine-tuning | LoRA (Rank 8) |
| Context Length | 131,072 tokens (128K) |
| Vocabulary Size | 151,936 tokens |
| Hidden Size | 1,536 |
| Attention Heads | 12 |
| Num Key Value Heads | 2 |
| Transformer Layers | 28 |
| Activation Function | SiLU |
| RoPE Scaling | NTK (factor: 4.0) |
---
## Training Details
- **Base Model**: Qwen2.5-Coder-3B
- **Training Method**: LoRA (Low-Rank Adaptation)
- **LoRA Rank**: 8
- **LoRA Alpha**: 16
- **Target Modules**: All linear layers (q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj)
- **Training Data**: Multi-turn tool conversations, function-calling examples, enterprise workflow patterns
- **Focus Areas**: Tool selection, function arguments, multi-step planning
- **Context Length**: 128K tokens
- **License**: Apache 2.0
- **Release Date**: April 2026
---
## Performance Notes
### Inference Speed (Q4_K_M)
| GPU | Tokens/sec |
|-----|------------|
| RTX 4090 | ~45 |
| RTX 3090 | ~35 |
| RTX 3060 | ~20 |
| CPU (i9-13900K) | ~8 |
### Memory Usage During Inference
```python
# Optimal settings for inference
config = {
"batch_size": 1,
"use_kv_cache": True,
"max_new_tokens": 512,
"torch_dtype": torch.float16, # Use float16 on GPU
# For CPU inference:
# "torch_dtype": torch.float32,
# "device_map": "cpu",
}
```
---
## Limitations
- **Model Size**: At 3B parameters, less capable than larger models for complex reasoning
- **Training Data**: Optimized for English; other languages may have reduced quality
- **Tool Accuracy**: May occasionally call incorrect tools; verification recommended
- **Long Context**: Performance may degrade beyond 64K tokens in some scenarios
---
## Quick Links
- [GitHub Repository](https://github.com/my-ai-stack/stack-4.0)
- [HuggingFace Organization](https://huggingface.co/my-ai-stack)
- [Model Hub](https://huggingface.co/my-ai-stack/Stack-4.0-Qwen-3B-Agentic)
- [Training Dataset](https://huggingface.co/my-ai-stack/Stack-4.0-Dataset)
- [Documentation](https://docs.stackai.dev)
- [Discord Community](https://discord.gg/clawd)
---
## Citation
```bibtex
@misc{my-ai-stack/stack-4-0-qwen-3b-agentic,
author = {Walid Sobhi},
title = {Stack 4.0 Qwen 3B Agentic: Fine-tuned for Tool-Calling and Agentic Workflows},
year = {2026},
publisher = {HuggingFace},
url = {https://huggingface.co/my-ai-stack/Stack-4.0-Qwen-3B-Agentic}
}
```
---
<p align="center">
Built with love for developers<br/>
<a href="https://discord.gg/clawd">Discord</a> · <a href="https://github.com/my-ai-stack/stack-4.0">GitHub</a> · <a href="https://huggingface.co/my-ai-stack">HuggingFace</a>
</p> |