Skip to content
Discussion options

You must be logged in to vote

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:

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:

  • There is no gpt-6 alias. Use gpt-6-astra.
  • Tool calling needs Responses, not Chat Completions.
  • reasoning.effort cannot be none. Start from low / medium.
  • Drop temperature, top_p, and logprobs. Astra rejects them.

If openai.OpenAI raises NotFoundError for that model, it is almost always project access (Astra rolled out in waves) rather than a miss…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@div002123
Comment options

Answer selected by div002123
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants