Instructions to use manvadariya1/Zynthos-Reasoning-4B-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 manvadariya1/Zynthos-Reasoning-4B-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 manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf manvadariya1/Zynthos-Reasoning-4B-GGUF: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 manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf manvadariya1/Zynthos-Reasoning-4B-GGUF: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 manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use manvadariya1/Zynthos-Reasoning-4B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "manvadariya1/Zynthos-Reasoning-4B-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": "manvadariya1/Zynthos-Reasoning-4B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M
- Ollama
How to use manvadariya1/Zynthos-Reasoning-4B-GGUF with Ollama:
ollama run hf.co/manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M
- Unsloth Studio
How to use manvadariya1/Zynthos-Reasoning-4B-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 manvadariya1/Zynthos-Reasoning-4B-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 manvadariya1/Zynthos-Reasoning-4B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for manvadariya1/Zynthos-Reasoning-4B-GGUF to start chatting
- Pi
How to use manvadariya1/Zynthos-Reasoning-4B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M
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": "manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use manvadariya1/Zynthos-Reasoning-4B-GGUF with Docker Model Runner:
docker model run hf.co/manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M
- Lemonade
How to use manvadariya1/Zynthos-Reasoning-4B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Zynthos-Reasoning-4B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use manvadariya1/Zynthos-Reasoning-4B-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 manvadariya1/Zynthos-Reasoning-4B-GGUF: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 manvadariya1/Zynthos-Reasoning-4B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use manvadariya1/Zynthos-Reasoning-4B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf manvadariya1/Zynthos-Reasoning-4B-GGUF: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 "manvadariya1/Zynthos-Reasoning-4B-GGUF: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"
๐ Zynthos-Reasoning-4B (The Edge Reasoning Revolution)
Zynthos-Reasoning-4B is a highly specialized, compute-optimized local reasoning model engineered to execute complex multi-step logical chain-of-thought operations directly at the edge.
By taking the raw architectural foundation of Qwen3-4B-Base and applying an intensive, dual-stage training blueprint (Supervised Fine-Tuning + Group Relative Policy Optimization), Zynthos introduces an incredibly agile, low-overhead intelligence layer that matches the thinking depth of models many times its size.
๐ True Local Sovereignty: The Multi-Agent & RAG Edge Engine
Large reasoning engines are too slow and expensive to act as real-time workers. Zynthos-Reasoning-4B bridges this gap perfectly, acting as an efficient local processor designed for modern AI architectures:
- โก Agentic AI Ecosystems: Natively executes autonomous agent loops. It easily maps out complex, multi-layered action plans before calling local programmatic tools or executing tool pathways.
- ๐ Advanced Local RAG Sorting: Rather than blindly extracting vector chunks, Zynthos reads retrieved context pipelines with adaptive reasoningโfiltering out noise, evaluating facts, and synthesizing accurate answers without hallucinating.
- ๐ Native MCP Architecture Integration: Ideal for driving Model Context Protocol (MCP) setups. It acts as the local brain that translates raw server signals, constructs valid infrastructure connections, and safely manages automated software workflows.
- ๐ข Adaptive Mathematical Reasoning: Features an activated
<think>loop that dynamically scales its cognitive effort based on problem complexityโeffortlessly tackling advanced algebra, code logic bugs, and structural derivations.
๐ ๏ธ The Paradigm-Shifting Training Pipeline
Zynthos proves that ultra-curated data mixtures can break through the brute-force compute bottleneck. The model was aligned using a specialized asset pipeline:
- Stage I: High-Fidelity SFT Alignment: Instilled command-following structures and rigorous multi-turn code dialogue styles using
deepmath_15k_hard_sft.jsonl,codefeedback_sft_15k.jsonl, and high-densityclaude_traces_sft.jsonldata sets. - Stage II: Accelerated GRPO Reinforcement Learning: Rather than running an unguided 100,000-iteration cluster run, Zynthos underwent a highly targeted 450-iteration GRPO reinforcement learning trajectory across specialized mathematical and programming corpora (
deepmath_grpo_60k,code_reasoning_grpo_43k,stratos_grpo_17k,taco_only_grpo_35k, andcodefeedback_grpo_18k).
๐ก The Efficiency Breakthrough: This accelerated 450-iteration training setup demonstrates that precision data curation enables a 4B parameter model to achieve deep logical self-correction capabilities at a fraction of standard industry compute costs.
๐ Quantization & Hardware Deployment Matrix
Every GGUF block in this lineup has been meticulously compiled to safeguard tensor values, providing predictable memory tracking and sub-millisecond execution loops across your graphics layers.
โญ Target Deployment Recommendation
- For Absolute Peak Precision:
Zynthos-Reasoning-4B-F16.ggufis the highly recommended choice. It retains 100% of the raw, unquantized model weights, providing the ultimate logical depth, perfect tool-calling syntax, and total resistance to token regression.- For Resource-Constrained Hardware: Use
Zynthos-Reasoning-4B-Q4_K_M.gguf. At just 2.4 GB, it runs flawlessly at maximum execution speeds on low-end consumer hardware or budget machines with as little as 4 GB of total system RAM.
| File Name | Precision Weights | File Size | Recommended System RAM | Core Deployment Target |
|---|---|---|---|---|
Zynthos-Reasoning-4B-F16.gguf |
Full FP16 Master | ~7.5 GB | 12 GB RAM | ๐ Recommended Tier: Sovereign server automation, deep math, & production agent pipelines |
Zynthos-Reasoning-4B-Q8_0.gguf |
8-bit Standard | ~4.0 GB | 8 GB RAM | Balanced Tier: Scalable local RAG scanning and heavy contextual extraction |
Zynthos-Reasoning-4B-Q4_K_M.gguf |
4-bit Medium | ~2.4 GB | 4 GB RAM | Ultra-Fast Tier: Agile on-device agents, low-end laptop setups, and ultra-budget edge containers |
๐ป Quickstart Implementation Playbook
1. Drag-and-Drop Local Runtime (LM Studio)
- Download the recommended
Zynthos-Reasoning-4B-F16.ggufvariant directly from the files menu. - Drop the asset file into your dedicated local model paths directory.
- Select the model from your dashboard dropdown, maximize GPU Offload settings, and start chatting locally with full chain-of-thought support.
2. Programmatic Agentic Orchestration (llama-cpp-python)
Build local background agent tools, automated MCP systems, or RAG processors using this direct Python automation layout:
from llama_cpp import Llama
# Initialize the recommended pristine FP16 engine lane
llm = Llama(
model_path="./Zynthos-Reasoning-4B-F16.gguf",
n_ctx=8192, # Expanded context window for deep chain-of-thought trace paths
n_gpu_layers=-1 # Fully offload model weight processing layers to your local GPU
)
prompt = """<|im_start|>system
You are Zynthos-Reasoning, a model that thinks carefully before responding. Show your step-by-step thinking inside a <think> block, and output your final answer outside.
<|im_end|>
<|im_start|>user
Write an optimized Python function to securely manage incoming Model Context Protocol (MCP) data payloads, then verify its time complexity.<|im_end|>
<|im_start|>assistant
<think>"""
output = llm(prompt, max_tokens=1024, stop=["<|im_end|>"])
print(output['choices'][0]['text'])
- Downloads last month
- 67
4-bit
8-bit
16-bit
Model tree for manvadariya1/Zynthos-Reasoning-4B-GGUF
Base model
Qwen/Qwen3-4B-Base