| gpt-5.6 | gpt-5.6-sol | |
|---|---|---|
| Providers | OpenAI | OpenAI |
| Input $/M | $5.00 | $5.00 |
| Output $/M | $30.00 | $30.00 |
| Output multiplier | ×6.00 | ×6.00 |
| Context window | — | 1.05M tokens |
| Intelligence index | — | 51.3 |
| Coding index | — | 77.4 |
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.
Tags: gpt-5.6 — Chat, Reasoning, Coding, Vision · gpt-5.6-sol — Chat, Reasoning, Coding, Vision
from openai import OpenAI
client = OpenAI(base_url="https://starseaapi.com/v1", api_key="sk-...")
# gpt-5.6
client.chat.completions.create(model="gpt-5.6", messages=[{"role":"user","content":"Hi"}])
# gpt-5.6-sol
client.chat.completions.create(model="gpt-5.6-sol", messages=[{"role": "user", "content": "Hi"}])