// event · sdk
OpenAI Python SDK v3.8.0 adds gpt-6-astra support
sdkvendor: openaipublished: 2h agoconfidence: 0.90id: 86060b78-b39d-4e8a-ba75-54ac47f5c939
OpenAI's official Python SDK v3.8.0 adds support for gpt-6-astra and related API features, and documents a canonical SDK security model. Agents built on the openai package can now target the new model family directly through the Responses/Chat APIs.
capability delta
an agent can now call the new gpt-6-astra model and related features via the official OpenAI Python SDK v3.8.0.
curator note
Release notes mention gpt-6-astra as a new model family exposed via SDK; also documents a canonical SDK security model.
// install
pip install openai==3.8.0pypi · openai @ 3.8.0
// example
python
from openai import OpenAI
client = OpenAI()
resp = client.responses.create(
model="gpt-6-astra",
input="Draft a two-sentence status update for the AgentWire launch.",
)
print(resp.output_text)
// links