GPT 5.5 in SDK
#3191
Replies: 1 comment 2 replies
|
The SDK is usually model-name agnostic. In practice, if a model is available to your account/API, you can call it by passing the model string directly; the Python package normally does not need a special release just to recognize a new model name. So the rule of thumb is:
|
1 reply
|
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. |
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?
All reactions