|
It looks like GPT-6 isn't supported right now — when will support be added? Or am I misunderstanding and it's already supported? I haven't been able to find any related discussions/issues. |
Answered by
gyanu2507
Sep 10, 2026
Replies: 1 comment 1 reply
|
Yes. GPT-6 Astra shipped on 3 Sep 2026. The API model id is Use the Responses API: from openai import OpenAI
client = OpenAI()
resp = client.responses.create(
model="gpt-6-astra",
input="ping",
)
print(resp.output_text)A few gotchas from the current model guide:
If Docs: Using GPT-6 Astra and the 3 Sep changelog. |
1 reply
Answer selected by
div002123
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes. GPT-6 Astra shipped on 3 Sep 2026. The API model id is
gpt-6-astra. The Python SDK does not need a special enum. Pass that string.Use the Responses API:
A few gotchas from the current model guide:
gpt-6alias. Usegpt-6-astra.reasoning.effortcannot benone. Start fromlow/medium.temperature,top_p, andlogprobs. Astra rejects them.If
openai.OpenAIraisesNotFoundErrorfor that model, it is almost always project access (Astra rolled out in waves) rather than a miss…