G
gpt-5.6-luna
· Text
gpt-5.6-luna
Pricing
| Input/Output | Price |
|---|---|
| Input | $0.189 / 1M tokens |
| Output | $1.134 / 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-luna",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)