GPT 5.5 in SDK
#3191
Replies: 1 comment 2 replies
-
|
GPT-5.5 is not currently available in the API or SDK. Available models include gpt-4o, gpt-4o-mini, gpt-4-turbo, o1, o3, o4-mini. Check available models: from openai import OpenAI
client = OpenAI()
for model in client.models.list().data:
print(model.id)When new models are released, OpenAI announces them at platform.openai.com/docs/models — no SDK update needed, just pass the new model name string. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is GPT 5.5 available in the SDK?
Beta Was this translation helpful? Give feedback.
All reactions