Are GPT 5.6 Sol, Terra and Luna enrolled for complimentary daily tokens?
I don’t see them listed on https://platform.openai.com/settings/organization/data-controls/sharing
Yes. But I’m not sure yet which cluster gpt-5.6-terra belongs to:
1M group - probably gpt-5.6-sol
10M group - probably gpt-5.6-luna
You can check it in the request return, if it says OPENAI it is within the quota.
response = client.responses.create(
model="gpt-5.6-sol",
input = "say hello",
)
print(f"Payer: {response.billing.get('payer','').upper()}")
print(response.output_text)
# Payer: OPENAI
# Hello!
Perhaps I will find out when I exaust group 1 usage, I’ll let you know if the answer hasn’t surfaced until then.
Nevermind, they just updated:
1M token group (250K for usage tiers 1-2):
- gpt-5.6-sol
10M token group (2.5M for usage tiers 1-2):
- gpt-5.6-terra
- gpt-5.6-luna
