Hi, we are a tier 5 usage organization but we don’t have access to o1-preview or o1-mini. Do we need to apply anywhere? My understanding from the announcement was that the models are accessible to all tier 5 organizations
I am in the same boat, hopefully they can help us out!
same, have been using the API since 2021
Hi!
OpenAI confirmed that we should have access this afternoon, Pacific time.
Just wanted to update to say I got access to o1-mini now, but not o1-preview.
Came here to check since it didn’t work for me even after I updated my openai package. I’ll just have to wait until the afternoon.
It can simply be used on chat completions if you don’t send prohibited parameters, message roles, or message contents, but:
Read docs first
While reasoning tokens are not visible via the API, they still occupy space in the model’s context window and are billed as output tokens.
You get billed tokens of multiple internal turns of growing context (up to several minutes) and no apparent auditing of that by examination after delegating.
It is billed at 15/60 vs GPT-4o at 5/15.
It cannot be guided by a supervising system message.
More output length is unlocked than anything so far.
## check every minute for o1 joy
import openai, time
starts_with = "o"
for _ in range(60):
client = openai.OpenAI()
model_obj = client.models.list()
model_dict = model_obj.model_dump().get('data', [])
model_list = sorted([model['id'] for model in model_dict])
filtered = [model for model in model_list
if model.startswith(starts_with)]
if len(filtered) > 0:
print(f"{starts_with} has arrived! -- " * 40, end="")
print("\n" + "\n".join(filtered))
break
else:
print("no 'o' models yet")
time.sleep(60)
A cheeky conversation starter, BTW:
I just successfully made a first API call to o1-preview
We are in the same situation with tier 5 and no access. We would really enjoy the chance to explore this awesome product.
I also am Tier 5 Usage and unable to see o1 models. API Calls result in error code 400 - "Your organization must qualify for at least usage tier 5 to access " o1 models
You must be using an API key generated by an org within your account that does not have Tier-5 access.
Try generating a new key under the org that has the Tier-5 and try that.
if the parent org has tier 5 access, other lower hierarchy orgs should have the same, yes? Ok will try that
To the best of my knowledge, no. Only the specific org-id that has been granted tier-5 can generate keys with tier-5 access.
Just double checked and no, not the case for me, I only have 1 org (and it’s Tier 5). Still no access
if you go to the playground, is it listed in the models there?
o1 models not available in the playground for me
If you wish, you can DM me your org-id and I can pass that on to OpenAI to be checked.
Not in the public forum though.
thanks for the help here!
Very welcome!
Enjoy!
(extra words for the bot)