| gpt-5.6-terra | grok-4.6 | |
|---|---|---|
| Providers | OpenAI | xAI |
| Input $/M | $2.00 | $2.00 |
| Output $/M | $12.00 | $6.00 |
| Output multiplier | ×6.00 | ×3.00 |
| Context window | 1.05M tokens | 500K tokens |
| Intelligence index | 46.8 | 50.6 |
| Coding index | 76.7 | 76.8 |
Input pricing is close — 1.00× apart — so the decision should come down to measured quality on your own evaluation set rather than headline cost.
Measured intelligence index differs by only 3.8 points, which in practice means the two models are interchangeable on most tasks — pick on price and latency.
Tags: gpt-5.6-terra — Chat, Reasoning, Coding, Vision · grok-4.6 — Chat, Reasoning, Coding, Vision
from openai import OpenAI
client = OpenAI(base_url="https://starseaapi.com/v1", api_key="sk-...")
# gpt-5.6-terra
client.chat.completions.create(model="gpt-5.6-terra", messages=[{"role":"user","content":"Hi"}])
# grok-4.6
client.chat.completions.create(model="grok-4.6", messages=[{"role": "user", "content": "Hi"}])