O1 not available despite build tier 5

I have a built tier 5 account, but when I make a request to the chat completions api with the o1 model alias, I get back a response saying I don’t have access to the model:

curl https://api.openai.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -d '{
    "model": "o1",
    "messages": [
      {
        "role": "developer",
        "content": "You are a helpful assistant."
      },
      {
        "role": "user",
        "content": "Help me create a bash script that outputs the contents of all .go files recursively in the current folder"
      }
    ]
  }'

{
    "error": {
        "message": "The model `o1` does not exist or you do not have access to it.",
        "type": "invalid_request_error",
        "param": null,
        "code": "model_not_found"
    }
}

I wish I had an answer to this as well. I would have put off adding a ton of credits just to get to T5 :joy:

I guess I missed the post, but it looks like the rollout is paused, and developers are onboarded in random batches

Ah. I guess I missed that too. Thanks.