Instructions to use XythicK/Plano-Orchestrator-30B-A3B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use XythicK/Plano-Orchestrator-30B-A3B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="XythicK/Plano-Orchestrator-30B-A3B-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("XythicK/Plano-Orchestrator-30B-A3B-GGUF", dtype="auto") - llama-cpp-python
How to use XythicK/Plano-Orchestrator-30B-A3B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="XythicK/Plano-Orchestrator-30B-A3B-GGUF", filename="plano-orchestrator-30b-a3b-q2_k.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use XythicK/Plano-Orchestrator-30B-A3B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf XythicK/Plano-Orchestrator-30B-A3B-GGUF:Q4_K_S # Run inference directly in the terminal: llama-cli -hf XythicK/Plano-Orchestrator-30B-A3B-GGUF:Q4_K_S
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf XythicK/Plano-Orchestrator-30B-A3B-GGUF:Q4_K_S # Run inference directly in the terminal: llama-cli -hf XythicK/Plano-Orchestrator-30B-A3B-GGUF:Q4_K_S
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 XythicK/Plano-Orchestrator-30B-A3B-GGUF:Q4_K_S # Run inference directly in the terminal: ./llama-cli -hf XythicK/Plano-Orchestrator-30B-A3B-GGUF:Q4_K_S
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 XythicK/Plano-Orchestrator-30B-A3B-GGUF:Q4_K_S # Run inference directly in the terminal: ./build/bin/llama-cli -hf XythicK/Plano-Orchestrator-30B-A3B-GGUF:Q4_K_S
Use Docker
docker model run hf.co/XythicK/Plano-Orchestrator-30B-A3B-GGUF:Q4_K_S
- LM Studio
- Jan
- vLLM
How to use XythicK/Plano-Orchestrator-30B-A3B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "XythicK/Plano-Orchestrator-30B-A3B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "XythicK/Plano-Orchestrator-30B-A3B-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/XythicK/Plano-Orchestrator-30B-A3B-GGUF:Q4_K_S
- SGLang
How to use XythicK/Plano-Orchestrator-30B-A3B-GGUF 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 "XythicK/Plano-Orchestrator-30B-A3B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "XythicK/Plano-Orchestrator-30B-A3B-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "XythicK/Plano-Orchestrator-30B-A3B-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "XythicK/Plano-Orchestrator-30B-A3B-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use XythicK/Plano-Orchestrator-30B-A3B-GGUF with Ollama:
ollama run hf.co/XythicK/Plano-Orchestrator-30B-A3B-GGUF:Q4_K_S
- Unsloth Studio
How to use XythicK/Plano-Orchestrator-30B-A3B-GGUF 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 XythicK/Plano-Orchestrator-30B-A3B-GGUF 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 XythicK/Plano-Orchestrator-30B-A3B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for XythicK/Plano-Orchestrator-30B-A3B-GGUF to start chatting
- Docker Model Runner
How to use XythicK/Plano-Orchestrator-30B-A3B-GGUF with Docker Model Runner:
docker model run hf.co/XythicK/Plano-Orchestrator-30B-A3B-GGUF:Q4_K_S
- Lemonade
How to use XythicK/Plano-Orchestrator-30B-A3B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull XythicK/Plano-Orchestrator-30B-A3B-GGUF:Q4_K_S
Run and chat with the model
lemonade run user.Plano-Orchestrator-30B-A3B-GGUF-Q4_K_S
List all available models
lemonade list
Plano-Orchestrator-30B-A3B-GGUF
π§ Model Overview
Plano-Orchestrator-30B-A3B-GGUF is a quantized version of Plano-Orchestrator-30B-A3B-GGUF, optimized for efficient inference with reduced memory usage and faster runtime while preserving as much of the original model quality as possible.
This repository provides multiple quantized variants suitable for:
- Local inference
- Low-VRAM GPUs
- CPU-only environments
π Original Model
- Base model: Plano-Orchestrator-30B-A3B
- Original repository: https://huggingface.co/katanemo/Plano-Orchestrator-30B-A3B
- Original authors: Katanemo
π¦ Quantization Details
- Quantization method: GGUF
- Quantization tool: llama.cpp
- Precision: Mixed (2-8,bit depands in variant)
- Activation aware: No (weight-only quantinization)
- Group size: 256 (K-quant variants)
π¦ Available Quantized Files
| Quant Format | File Name | Approx. Size | VRAM / RAM Needed | Notes |
|---|---|---|---|---|
| Q2_K | plano-orchestrator-q2_k.gguf |
~11.3 GB | ~14 GB | Extreme compression; noticeable quality loss |
| Q3_K_S | plano-orchestrator-q3_k_s.gguf |
~13.3 GB | ~15.4 GB | Smaller, faster, lower quality |
| Q3_K_M | plano-orchestrator-q3_k_m.gguf |
~14.7 GB | ~16 GB | Better balance than Q3_K_S |
| Q3_K_L | plano-orchestrator-q3_k_l.gguf |
~15.9 GB | ~18 GB | Highest-quality 3-bit variant |
| Q4_0 | plano-orchestrator-q4_0.gguf |
~17.3 GB | ~19.3 GB | Legacy format; simpler quantization |
| Q4_K_S | plano-orchestrator-q4_k_s.gguf |
~17.5 GB | ~19.5 GB | Smaller grouped 4-bit |
| Q4_K_M | plano-orchestrator-q4_k_m.gguf |
~ GB | ~ GB | Recommended default |
| Q5_0 | plano-orchestratorq-5_0.gguf |
~21 GB | ~23 GB | Higher quality, larger size |
| Q5_K_S | plano-orchestrator-q5_k_s.gguf |
~21.1 GB | ~23 GB | Efficient high-quality variant |
| Q5_K_M | plano-orchestratorq-5_K_M.gguf |
~X GB | ~ GB | Near-FP16 quality |
| Q6_K | plano-orchestratorq-6_k.gguf |
~25.1 GB | ~27 GB | Minimal quantization loss |
| Q8_0 | plano-orchestrator-q8_0.gguf |
~32.5 GB | ~36 GB | Maximum quality; large memory |
π‘ Recommendation: Start with Q4_K_M for the best quality-to-performance ratio.
π Usage Example
llama.cpp
./main -m plano-orchestrator-30b-a3b-q6_k.gguf -p "Your prompt here" -n 256
Python (llama-cpp-python)
from llama_cpp import Llama
llm = Llama(
model_path="plano-orchestrator-30b-a3b-q6_k.gguf",
n_ctx=4096,
n_threads=8
)
print(llm("Your prompt here"))
π Contact
Maintainer: M Mashhudur Rahim [XythicK]
Role:
Independent Machine Learning Researcher & Model Infrastructure Maintainer
(Focused on model quantization, optimization, and efficient deployment)
For issues, improvement requests, or additional quantization formats, please use the Hugging Face Discussions or Issues tab.
β€οΈ Acknowledgements
Thanks to the original model authors for their ongoing contributions to open AI research, and to Hugging Face and the open-source machine learning community for providing the tools and platforms that make efficient model sharing and deployment possible.
- Downloads last month
- 85
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
Model tree for XythicK/Plano-Orchestrator-30B-A3B-GGUF
Base model
Qwen/Qwen3-30B-A3B-Instruct-2507