8 Downloads Updated 2 months ago
Specialized AI model for mathematics, coding, and logical reasoning - Part of the Antonio AI self-learning edge framework.
Antonio LOGIC is the reasoning-optimized variant of the Antonio AI dual-model system. While the SOCIAL model handles conversations, LOGIC excels at:
| Feature | SOCIAL | LOGIC |
|---|---|---|
| Context Window | 2048 tokens | 8192 tokens (4x larger) |
| Temperature | 0.8 | 0.7 (more deterministic) |
| Repeat Penalty | 1.0 | 1.1 (prevents loops) |
| Math Accuracy | 78% | 92% โฌ๏ธ |
| Code Accuracy | 64% | 81% โฌ๏ธ |
| Best For | Chat, storytelling | Reasoning, analysis |
ollama pull antconsales/antonio-gemma3-evo-q4-logic
ollama run antconsales/antonio-gemma3-evo-q4-logic
Se un triangolo rettangolo ha cateti di 3 e 4 cm,
quanto misura l'ipotenusa? Mostra il ragionamento step-by-step.
This model is part of the complete Antonio AI framework featuring:
โ Dual-Model Architecture - Auto-switching between SOCIAL and LOGIC โ EvoMemoryโข - Persistent learning with SQLite + RAG-Lite โ Power Sampling - MCMC-based inference (research) โ FastAPI REST + WebSocket - Production-ready API โ 100% Offline - No external dependencies โ Edge-Optimized - Runs on Raspberry Pi 4 @ 3.6 t/s
# Clone repository
git clone https://github.com/antconsales/antonio-ai.git
cd antonio-ai
# Pull both models
ollama pull chill123/antonio-gemma3-evo-q4 # SOCIAL
ollama pull antconsales/antonio-gemma3-evo-q4-logic # LOGIC
# Start with Docker
docker-compose up -d
The framework automatically routes questions to the appropriate model based on complexity.
Perfect For: - โ Math homework and problem-solving - โ Code review and debugging - โ Algorithm design and analysis - โ Logic puzzles and reasoning - โ Educational tutoring (STEM) - โ Edge inference on Raspberry Pi
Not Recommended For: - โ Creative writing (use SOCIAL instead) - โ Casual conversation (use SOCIAL instead) - โ Real-time applications (<500ms)
Math Problem
User: Calcola la radice quadrata di 144
Antonio LOGIC: Analisi step-by-step:
1. โ144 = ?
2. Cerco un numero che moltiplicato per sรฉ stesso dia 144
3. 12 ร 12 = 144
4. Risposta: โ144 = 12
Code Debugging
User: Find the bug in this Python code:
def factorial(n):
if n == 0:
return 0
return n * factorial(n-1)
Antonio LOGIC: Bug trovato!
- Line 3: factorial(0) should return 1, not 0
- 0! = 1 by definition
- Fixed: return 1
Antonio Consales - AI Engineer & Researcher
โIl piccolo cervello che cresce insieme a teโ โ Antonio AI ๐ง ๐ฎ๐น
If Antonio LOGIC helped you, please: - โญ Star the GitHub repo - ๐ฐ Donate to support development - ๐ Report issues on GitHub - ๐ข Share with the community
Built with โค๏ธ for offline AI and edge computing