These models are not deprecated. I also did a quick test that I can use these models using the latest version of the OpenAi .Net library. The most likely explanations for the HTTP 403 ... Project ... does not have access to model ... error are:
the wrong API key is loaded at runtime
the key belongs to a different OpenAI project
an explicit OpenAI-Project header points to the wrong project
You can check the API keys, permissions and project access via the platform:
You are correct - I retested everything now and it works 100%. Also generated a fresh key to double check. All is good and these models are still available.
The problem is that the API doesn’t allow setting response format to “ddiarized_json” which is needed for this model.
There’s an open issue about this here https://github.com/openai/openai-dotnet/issues/869
Seems like the required “chunking_strategy” is not currently supported by the SDK and we get HTTP 400 (invalid_request_error: invalid_value)
Parameter: chunking_strategy
chunking_strategy is required for diarization models
This shows that there is active work ongoing.
Guess I will wait and watch… If you happen to have any additional news, do not hesitate and let me know.