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"
}
}