Instructions to use MohitML10/qwen2.5-32b-agentic-orchestrator with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MohitML10/qwen2.5-32b-agentic-orchestrator with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="MohitML10/qwen2.5-32b-agentic-orchestrator") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("MohitML10/qwen2.5-32b-agentic-orchestrator") model = AutoModelForCausalLM.from_pretrained("MohitML10/qwen2.5-32b-agentic-orchestrator", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use MohitML10/qwen2.5-32b-agentic-orchestrator with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M # Run inference directly in the terminal: llama cli -hf MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M # Run inference directly in the terminal: llama cli -hf MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M
Use Docker
docker model run hf.co/MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use MohitML10/qwen2.5-32b-agentic-orchestrator with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "MohitML10/qwen2.5-32b-agentic-orchestrator" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MohitML10/qwen2.5-32b-agentic-orchestrator", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M
- SGLang
How to use MohitML10/qwen2.5-32b-agentic-orchestrator 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 "MohitML10/qwen2.5-32b-agentic-orchestrator" \ --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": "MohitML10/qwen2.5-32b-agentic-orchestrator", "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 "MohitML10/qwen2.5-32b-agentic-orchestrator" \ --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": "MohitML10/qwen2.5-32b-agentic-orchestrator", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use MohitML10/qwen2.5-32b-agentic-orchestrator with Ollama:
ollama run hf.co/MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M
- Unsloth Studio
How to use MohitML10/qwen2.5-32b-agentic-orchestrator with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for MohitML10/qwen2.5-32b-agentic-orchestrator to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for MohitML10/qwen2.5-32b-agentic-orchestrator to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for MohitML10/qwen2.5-32b-agentic-orchestrator to start chatting
- Pi
How to use MohitML10/qwen2.5-32b-agentic-orchestrator with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use MohitML10/qwen2.5-32b-agentic-orchestrator with Docker Model Runner:
docker model run hf.co/MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M
- Lemonade
How to use MohitML10/qwen2.5-32b-agentic-orchestrator with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M
Run and chat with the model
lemonade run user.qwen2.5-32b-agentic-orchestrator-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use MohitML10/qwen2.5-32b-agentic-orchestrator with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use MohitML10/qwen2.5-32b-agentic-orchestrator with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "MohitML10/qwen2.5-32b-agentic-orchestrator:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Qwen2.5-32B Agentic Orchestrator
A 32B parameter model fine-tuned for agentic tool-calling workflows — trained on AMD Instinct MI300X (192GB VRAM).
Fine-tuned from Qwen/Qwen2.5-32B-Instruct using LoRA on 22,000 multi-turn agentic conversations covering tool call chaining, structured function calling, and orchestrator decision-making.
Why This Model Exists
Most LLMs are trained to answer questions. This model is trained to act.
The gap this fills: base Qwen2.5-32B-Instruct is a strong reasoner, but it wasn't specifically trained on the behavioral patterns that make agents actually work in production — when to call a tool vs respond directly, how to chain tool calls across multiple turns, how to handle tool failures and escalate correctly, and how to format structured tool calls consistently.
This fine-tune addresses exactly that. Trained on 22,000 real multi-turn agentic trajectories, the model learns:
- Tool call decision-making — when to act vs when to respond
- Structured tool call formatting — consistent
<tool_call>/<tool_response>patterns - Multi-turn chaining — maintaining context across 9+ turn agentic conversations
- Escalation and handoff patterns — knowing when to transfer to a human or a different agent
- Constraint awareness — following system-level policies while serving user goals
The MI300X was the enabling hardware. Running a 32B model at full BF16 precision with LoRA adapters requires ~80GB+ VRAM minimum. 192GB gave full headroom without quantization tricks during training — meaning the fine-tune captures the full expressiveness of the 32B model.
Files in This Repository
| File | Description |
|---|---|
model-q4_k_m.gguf |
Start here. Q4_K_M quantized — runs on 24GB RAM, Mac M2 Pro+, single A100 |
model-00001-of-00002.safetensors |
Full BF16 merged model shard 1 |
model-00002-of-00002.safetensors |
Full BF16 merged model shard 2 |
tokenizer.json |
Tokenizer |
config.json |
Model config |
Quickstart
Ollama (easiest)
ollama run hf.co/MohitML10/qwen2.5-32b-agentic-orchestrator
llama.cpp
wget https://huggingface.co/MohitML10/qwen2.5-32b-agentic-orchestrator/resolve/main/model-q4_k_m.gguf
./llama-cli -m model-q4_k_m.gguf \
--chat-template qwen2 \
-p "You are an agentic orchestrator. You have access to tools and decide when to use them."
Transformers
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
tokenizer = AutoTokenizer.from_pretrained("MohitML10/qwen2.5-32b-agentic-orchestrator")
model = AutoModelForCausalLM.from_pretrained(
"MohitML10/qwen2.5-32b-agentic-orchestrator",
torch_dtype=torch.bfloat16,
device_map="auto"
)
messages = [
{
"role": "system",
"content": "You are an agentic orchestrator with access to tools. Decide when to call a tool and when to respond directly."
},
{
"role": "user",
"content": "Search for the latest news on LLM benchmarks and summarize the top 3 findings."
}
]
inputs = tokenizer.apply_chat_template(
messages,
return_tensors="pt",
add_generation_prompt=True
).to(model.device)
outputs = model.generate(**inputs, max_new_tokens=512, temperature=0.7)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
vLLM (for serving)
vllm serve MohitML10/qwen2.5-32b-agentic-orchestrator \
--dtype bfloat16 \
--max-model-len 32768 \
--enable-auto-tool-choice \
--tool-call-parser hermes
Training Details
| Parameter | Value |
|---|---|
| Base model | Qwen/Qwen2.5-32B-Instruct |
| Hardware | AMD Instinct MI300X (192GB VRAM) |
| Training method | Supervised Fine-Tuning (SFT) with LoRA |
| LoRA rank | 16 |
| LoRA alpha | 32 |
| LoRA dropout | 0.05 |
| Target modules | q_proj, k_proj, v_proj, o_proj |
| Trainable parameters | 33.5M / 32.8B (0.10%) |
| Dataset | WaltonFuture/agentic-sft-new |
| Training samples | 22,000 |
| Epochs | 1 |
| Batch size | 1 (gradient accumulation 16, effective batch 16) |
| Learning rate | 2e-4 |
| LR scheduler | Cosine with warmup |
| Precision | BF16 |
| Max sequence length | 2048 tokens |
| Framework | HuggingFace TRL + PEFT |
Dataset
Trained on a filtered subset of WaltonFuture/agentic-sft-new — specifically the multi-turn agentic conversation subset (None split label), which contains real customer service and workflow agent trajectories with structured tool calls.
Conversation format uses <tool_call> and <tool_response> blocks in standard chat format, directly compatible with Qwen2.5's chat template.
Intended Use
- Agentic orchestrators — the decision layer that decides what tool to call next
- Multi-agent systems — as the planning layer above specialized worker agents
- Tool-calling pipelines — structured JSON tool call generation
- AI infrastructure research — studying agentic behavior at 32B scale
Out of Scope
- General question answering (use base Qwen2.5-32B-Instruct)
- Image or multimodal tasks (text only)
- Tasks requiring >32k context
Hardware Requirements
| Format | Minimum | Recommended |
|---|---|---|
| GGUF Q4_K_M | 24 GB RAM | 32 GB RAM |
| BF16 safetensors | 64 GB VRAM | 80 GB VRAM (A100/H100) |
Runs locally on Mac M2 Pro / M3 Pro or better using the GGUF file.
Limitations
- Trained for 1 epoch on 22k samples — robust on tool-calling patterns but may benefit from further fine-tuning on domain-specific agentic data
- No benchmark evaluation yet — before/after comparison on Berkeley Function Calling Leaderboard is a planned next step
- Training data is customer service heavy — performance on other agentic domains (code, research, SWE) may vary
Developed By
Trained on AMD Developer Cloud — AMD Instinct MI300X (192GB VRAM) instance.
- Downloads last month
- 52