๐Ÿ‹

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

ModelProviderParamsSpeedโ˜…ContextPriceNotes
kimi-k2:1tOllamaCloud1T28 t/sโ˜…โ˜…โ˜…ยฝโ˜…128KFreeLargest model available
deepseek-v3.1:671bOllamaCloud671B40 t/sโ˜…โ˜…โ˜…โ˜…ยฝ128KFreeDeepSeek V3.1 MoE
cogito-2.1:671bOllamaCloud671B45 t/sโ˜…โ˜…โ˜…โ˜…โ˜…128KFreeCogito reasoning model
mistral-large-3:675bOllamaCloud675B30 t/sโ˜…โ˜…โ˜…โ˜…โ˜…128KFreeMistral largest model
devstral-2:123bOllamaCloud123B36 t/sโ˜…โ˜…โ˜…ยฝโ˜…128KFreeMistral code specialist
grok-4 (314B)Venice314B30 t/sโ˜…โ˜…โ˜…โ˜…โ˜…256KUncensored Grok, creative
claude-opus-4-6Venice~200B+33 t/sโ˜…โ˜…โ˜…โ˜…โ˜…200KUncensored Opus via Venice
claude-opus-4-6ORBIT~200B+29 t/sโ˜…โ˜…โ˜…โ˜…โ˜…200KFreeFree Opus (2B tok/mo)
meta-llama/llama-3.1-405bOpenRouter405B46 t/sโ˜…โ˜…โ˜…โ˜…โ˜…128KFreeOpen-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
  }'