Would appreciate if anyone could tell me how to check if I have access to the computer use model. Have they rolled it out yet?
You can use the models endpoint, which returns all models an API key can access. Python code:
from openai import OpenAI
client = OpenAI() # assumes OPENAI_API_KEY is set in env
def has_model_starting_with(prefix="computer"):
models = client.models.list().data
return any(model.id.startswith(prefix) for model in models)
print(has_model_starting_with())
Get “True” if it’s there.
Or check your API account’s “limits” page, expanding more models for all model rate limits.
Thanks for the response. I don’t find it. Do you know how I could get access to it? Is it a usage tier thing or how is it determined?
If your account is tier 3+, and you tested with API key, you can generate a new project key and try that.
Otherwise, you’d currently need to have been tier 3 level of past payments, and it might not be granted automatically once reaching that by purchasing more credits after the required time.