You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update: it works now, but after few hours, so there is a significant delay in List action on vector store API, which makes it a bit confusing if you create a new vector store and query the list after that.
Confirm this is an issue with the Python library and not an underlying OpenAI API
Describe the bug
ls = client.vector_stores.list()
print(ls)
gives
SyncCursorPage[VectorStore](data=[], has_more=False, object='list', first_id=None, last_id=None)
but querying by ID gives results back.
vs = client.vector_stores.retrieve(
vector_store_id="vs_123"
)
print(vs)
To Reproduce
ls = client.vector_stores.list()
print(ls)
Code snippets
OS
Windows
Python version
3.12
Library version
1.66.3
The text was updated successfully, but these errors were encountered: