Cannot access through API any vector stores created in the web interface

I created through the web interface a vector store that I wanted to add to a assistant created using the API. When I use the store ID in the API I get a error message saying that the store id isn’t found. Am I doing something wrong, or is this something that is not implemented?

1 Like

Something similar has happened to me, in my case specifying the project id has worked:

from openai import OpenAI
client = OpenAI(api_key=API_KEY, project=PROJECT_ID)

It is also good to know that each project has its own API key