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
Get documents from the document store. Under-the-hood, documents are fetched in batches from the
document store and yielded as individual documents. This method can be used to iteratively process
a large number of documents without having to load all documents in memory.
while the implementation is:
for doc in self.get_all_documents(
index, filters, return_embedding, batch_size, headers
):
yield doc
I think NotImplementedError should be raised for this method.
The text was updated successfully, but these errors were encountered:
The method description says:
while the implementation is:
I think
NotImplementedError
should be raised for this method.The text was updated successfully, but these errors were encountered: