Issue with accessing the text-embedding-ada-002 model

Hello,

I am trying to use the text-embedding-ada-002 model through the OpenAI API, but I am encountering the following error:
openai.error.PermissionError: Project ‘proj_aKCC5YTLz9zl3AHA4BvATMhe’ does not have access to model ‘text-embedding-ada-002’.

I have already followed all the recommendations, such as updating the API key and checking the balance, but the issue persists. Could you please help me resolve this problem?

Thank you!


Translated by ChatGPT


Original message:

Здравствуйте,

Я пытаюсь использовать модель text-embedding-ada-002 через OpenAI API, но получаю следующую ошибку:
openai.error.PermissionError: Project proj_aKCC5YTLz9zl3AHA4BvATMhe does not have access to model text-embedding-ada-002.

Я уже выполнил все рекомендации по обновлению API-ключа и проверке баланса, но проблема сохраняется. Пожалуйста, помогите решить эту проблему.

Спасибо!

I would try a legacy user key, located in billing as a tab.

That will let you determine that the error is not related to key permissions or endpoint permissions that can be set within a project.

Then, you can also employ text-embeddings-3-small, or 3-large, and see if they are working. The latter, 3-large, and specifying dimensions:1536 will let you use existing vector db solutions for likely higher quality, (re-embedding everything, though).

1 Like