Instructions to use ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF 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 ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K # Run inference directly in the terminal: llama cli -hf ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K # Run inference directly in the terminal: llama cli -hf ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K
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 ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K # Run inference directly in the terminal: ./llama-cli -hf ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K
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 ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K
Use Docker
docker model run hf.co/ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K
- LM Studio
- Jan
- vLLM
How to use ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K
- Ollama
How to use ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF with Ollama:
ollama run hf.co/ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K
- Unsloth Studio
How to use ekrtprsnsp/typhoon2.5-qwen3-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 ekrtprsnsp/typhoon2.5-qwen3-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 ekrtprsnsp/typhoon2.5-qwen3-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 ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF to start chatting
- Pi
How to use ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K
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 "ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K" \ --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"
- Docker Model Runner
How to use ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF with Docker Model Runner:
docker model run hf.co/ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K
- Lemonade
How to use ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K
Run and chat with the model
lemonade run user.typhoon2.5-qwen3-30b-a3b-GGUF-Q6_K
List all available models
lemonade list
- Hermes Agent
How to use ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K
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 ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF:Q6_K
Run Hermes
hermes
- Atomic Chat
Typhoon 2.5 Qwen3 30B-A3B โ GGUF (Q6_K)
GGUF quantization (Q6_K) of typhoon-ai/typhoon2.5-qwen3-30b-a3b,
a Thai-focused Mixture-of-Experts language model by SCB 10X built on the Qwen3 MoE architecture
(31B total parameters, ~3B active).
This repository provides a Q6_K build for running the model locally with llama.cpp. At the time of upload, no Q6_K GGUF of this model was publicly available, so this is shared to fill that gap.
Note on quantization: This is a standard Q6_K quant produced with
llama-quantize. It does not use an importance matrix (imatrix). At the 6-bit level the quality difference between plain Q6_K and imatrix-based variants is small, and a generic/incorrect calibration set can do more harm than good โ so plain Q6_K was chosen deliberately for reliability.
Files
| File | Quant | Bits | Size | Notes |
|---|---|---|---|---|
typhoon2.5-qwen3-30b-a3b-Q6_K.gguf |
Q6_K | 6 | 24 GB | No imatrix. Good balance of quality and size. |
Fits comfortably on 32 GB+ unified/VRAM setups; runs well on systems like the NVIDIA DGX Spark / GB10 with 128 GB unified memory.
How to run (llama.cpp)
./llama.cpp/build/bin/llama-server \
-m typhoon2.5-qwen3-30b-a3b-Q6_K.gguf \
--host 0.0.0.0 --port 8000 \
-ngl 999 -fa on \
-c 8192 \
--temp 0.6 --top-p 0.95 --repeat-penalty 1.05 \
--jinja
Then query the OpenAI-compatible endpoint at http://localhost:8000/v1.
Sampling โ follow the base model's official recommendation. SCB 10X recommends a low temperature and
repetition_penalty = 1.05to improve performance and reduce repetition. The example above usestemp=0.6, top_p=0.95, repeat-penalty=1.05, matching the base model card. Please refer to the original model card for the authoritative usage guidance.
Context length: the base model supports up to 256K context. Set
-cto suit your task and available memory (the example uses a modest8192; increase as needed).
Quantization details
Produced from the original safetensors using llama.cpp:
# 1) Convert HF model -> GGUF F16
python convert_hf_to_gguf.py typhoon2.5-qwen3-30b-a3b/ \
--outfile typhoon2.5-f16.gguf --outtype f16
# 2) Quantize F16 -> Q6_K
./llama.cpp/build/bin/llama-quantize \
typhoon2.5-f16.gguf \
typhoon2.5-qwen3-30b-a3b-Q6_K.gguf \
Q6_K
- Architecture:
qwen3moe - Method: standard Q6_K (no importance matrix)
- llama.cpp: built with CUDA; please use a recent build that supports the
qwen3moearchitecture.
Credits & license
- Base model:
typhoon-ai/typhoon2.5-qwen3-30b-a3bby SCB 10X โ all model capabilities and training credit belong to them. - License: Apache 2.0 (inherited from the base model). Please review the base model's card for the full terms and any usage notes.
- This repository only redistributes a quantized format; it does not modify the model's weights beyond quantization.
If you use this model, please cite and credit the original Typhoon / SCB 10X work.
- Downloads last month
- 10
6-bit
Model tree for ekrtprsnsp/typhoon2.5-qwen3-30b-a3b-GGUF
Base model
typhoon-ai/typhoon2.5-qwen3-30b-a3b