vector store stuck with file counts in_progress or vector store is empty
I am trying to upload 2 json files into an assistants vector store using the official openAI python library. I also want to use a specific chunking strategy, and a different one for each files.
There are 2 approaches i found to be possible to upload files into a vector store. The first one would be to create a vector store, then upload the files to it using the client.beta.vector_stores.files functions. The second one would be to upload the files first using client.files.create, then create a vector store and attach the previously uploaded files.