my project was working perfectly , today the agent was unable to read the books inside the uploaded and linked files to the vector store , after the debugging I find out when I upload the file and create the vector store then try to link the file to the store its not linked the vectors store remain empty , but all returns was success from the open ai sdk .
file = upload_book_to_gpt(book_id)
print(f"[VECTOR STORE][UPLOAD TO VECTOR STORE] vector_store_id {vector_store_id} and book {file.id}")
I’m having the same issue. This was working fine until late yesterday for me. Interestingly, the default chunking strategy (800, 400) results in a Server 500 error (below). My chunking strategy is actually 400, 200. That does not return the error, but the file is not attached. This really causes my users a big problem because there is no error to trap.
@ 800x400 Chunking Strategy:
{‘error’: {‘message’: ‘The server had an error while processing your request. Sorry about that!’, ‘type’: ‘server_error’, ‘param’: None, ‘code’: None}}
Same here, it stopped working since today, I can upload files using the api, I can create the vector store using the api, but attaching the file to the vector store fails.
The Dashboard > Storage interface does not show the file attachment, but if I query the vector store to list files, I see the file in_progress. It just seems to remain in an in_progress status in perpetuity.
Hi, this is happening to me also on three separate OpenAI accounts. I can also reproduce this issue easily by creating a vector store through the OpenAI dashboard and attaching a file through the UI. This is definitely not something with my code.
I have not been able to find any work arounds. I even tried creating the vector store through code and uploading the file to there. It seems that the file will not appear in the vector store until the embeddings are created. So it appears the issue is the embeddings are not getting created.
We are facing same issue, the file uploaded and shows status “Ready” , the vector store created successfully but attaching files is not working as expected!