G
gpt-5.6-sol
· Text
gpt-5.6-sol
Pricing
| Input/Output | Price |
|---|---|
| Input | $0.315 / 1M tokens |
| Output | $1.575 / 1M tokens |
How to call
from openai import OpenAI
client = OpenAI(base_url="https://getmodel.ai/v1", api_key="$GETMODEL_API_KEY")
resp = client.chat.completions.create(
model="gpt-5.6-sol",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)