Heavyweight Council
The largest models available โ 100B+ parameters up to 1 trillion. Maximum intelligence for the most demanding reasoning, coding, and creative tasks.
๐๏ธ Use case: Maximum intelligence, complex reasoning
8
Models
4
Providers
1T
Max params
Free
Best price
๐ Council Models
| Model | Provider | Params | Speed | โ | Context | Price | Notes |
|---|---|---|---|---|---|---|---|
| kimi-k2:1t | OllamaCloud | 1T | 28 t/s | โ โ โ ยฝโ | 128K | Free | Largest model available |
| deepseek-v3.1:671b | OllamaCloud | 671B | 40 t/s | โ โ โ โ ยฝ | 128K | Free | DeepSeek V3.1 MoE |
| cogito-2.1:671b | OllamaCloud | 671B | 45 t/s | โ โ โ โ โ | 128K | Free | Cogito reasoning model |
| mistral-large-3:675b | OllamaCloud | 675B | 30 t/s | โ โ โ โ โ | 128K | Free | Mistral largest model |
| devstral-2:123b | OllamaCloud | 123B | 36 t/s | โ โ โ ยฝโ | 128K | Free | Mistral code specialist |
| grok-4 (314B) | Venice | 314B | 30 t/s | โ โ โ โ โ | 256K | $30/mo | Uncensored Grok, creative |
| claude-opus-4-6 | Venice | ~200B+ | 33 t/s | โ โ โ โ โ | 200K | $20/mo | Uncensored Opus via Venice |
| claude-opus-4-6 | ORBIT | ~200B+ | 29 t/s | โ โ โ โ โ | 200K | Free | Free Opus (2B tok/mo) |
| meta-llama/llama-3.1-405b | OpenRouter | 405B | 46 t/s | โ โ โ โ โ | 128K | Free | Open-source heavyweight |
โ๏ธ Pros & Cons
โ Pros
- Kimi-K2 at 1T parameters is the largest accessible model
- Multiple free options (OllamaCloud, ORBIT, OpenRouter)
- Claude Opus free via ORBIT (2B tokens/month)
- OllamaCloud offers 4 heavyweight models free
- Great for complex reasoning, research, and deep analysis
โ ๏ธ Cons
- Slow generation speeds (28-46 t/s)
- Longer time-to-first-token for large models
- Venice premium pricing ($20-30/mo)
- Very large models may hit memory limits
- OllamaCloud models may have queue times
๐ Try This Council
Query the largest models for maximum intelligence.
# Heavyweight Council: Claude Opus 4.6 via ORBIT (free, 2B tokens/mo)
curl -X POST https://orbit.api/v1/chat/completions \
-H "Authorization: Bearer $ORBIT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-opus-4-6",
"messages": [{"role": "user", "content": "What are the philosophical implications of artificial general intelligence on human identity?"}],
"max_tokens": 4000,
"temperature": 0.7
}'
# Heavyweight Council: DeepSeek V3.1 671B (free on OllamaCloud)
curl -X POST https://ollama.cloud/v1/chat/completions \
-H "Authorization: Bearer $OLLAMACLOUD_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v3.1:671b",
"messages": [{"role": "user", "content": "Explain the Riemann hypothesis in accessible terms."}],
"max_tokens": 4000
}'