Fox1.3 is 88x smaller than Opus 4.6, runs on CPU — and when it doesn't know something, it searches the web in real-time. Opus cannot do that.
🏆 Performance Context
On our custom 10-question benchmark (reasoning focus):
Model
Score
Size
Fox1.3 v9
100% (10/10)
~1 GB
On standardized MMLU benchmark (100 questions, real test):
Model
MMLU Score
Size
GPT-4.5
~95%
~350 GB
Claude Opus 4.6
~95%
~80 GB
Llama 4 Maverick
~90%
~100 GB
Fox1.3
~40%
~1 GB
Estimated Leaderboard Rank: ~#260-300 out of ~400 models
Why so low? MMLU tests broad knowledge across 57 subjects. Fox1.3 is a 900M-1.5B param model — it's not designed to memorize all of human knowledge. LoRA training can't fix this: MMLU needs breadth, and breadth requires scale. This is the honest trade-off for being 100x smaller.
Fox1.3's strength is targeted reasoning + web search — not memorizing encyclopedia entries.
Why Smaller is Better
The AI industry is obsessed with scaling models to hundreds of billions of parameters — requiring massive GPU clusters, hundreds of gigabytes of RAM, and costing millions per month to run. Fox1.3 proves there's a better way.
The Case for Compact Models
🚀 Speed: 52+ tokens/sec on CPU — faster than models 100x its size
💰 Cost: 100% free to run, forever. No API bills, no subscription fees
🔌 Offline: Runs locally on your laptop, Raspberry Pi, or desktop
🌍 Energy: Uses a fraction of the power — better for the environment
🔒 Private: Your data never leaves your machine
⚡ Low Latency: Real-time responses, no waiting for API rate limits
Fox1.3 proves that intelligent AI doesn't need to be massive, expensive, or power-hungry.
🔍 How Fox1.3 Stays Smart While Staying Small
Fox1.3 combines two strategies that eliminate the need for massive model sizes:
Efficient Training — LoRA fine-tuning on targeted reasoning (exception logic, math word problems). Only what's hard gets stored in the weights.
Web Search Integration — For real-time or factual queries, fox1.3 uses OpenClaw's built-in web search. Facts it hasn't memorized? Just look them up.
The result: A 900MB model with effectively unlimited knowledge. It doesn't need to store answers — it knows how to find them.
This is how small models beat big ones: not by memorizing more, but by knowing how to look things up.
✨ Performance
✅ OpenClaw compatible
✅ Runs on CPU (2.5GB RAM minimum)
✅ ~52 tokens/sec inference speed
✅ 16K context window
✅ Fully local — no internet required
✅ Web search via OpenClaw for real-time knowledge
✅ Privacy-first: data never leaves your machine
🚀 Usage
Terminal / Command Line
bash
1# Run the model (single prompt)2ollama run fox1.3 "Your question here"34# Check if model is installed5ollama list
67# Pull the model from HuggingFace8ollama pull teolm30/fox1.3
910# Start interactive chat11ollama run fox1.3
1213# Example prompts to try:14# "If all birds can fly and penguins are birds, can penguins fly?"15# "A bat and ball cost $1.10. The bat costs $1.00 more than the ball. How much is the ball?"16# "Write a Python function to check if a number is even"