interface VectorStoreRetrieverInterfaceDefault implementation of batch, which calls invoke N times.
Method to invoke the document transformation. This method calls the
Stream output in chunks.
Default implementation of transform, which buffers input and then calls stream.
The instance of VectorStore used for storing and retrieving document embeddings.
This vector store must implement the VectorStoreInterface to be compatible
with the retriever’s operations.
Interface for a retriever that uses a vector store to store and retrieve document embeddings. This retriever interface allows for adding documents to the underlying vector store and conducting retrieval operations.
VectorStoreRetrieverInterface extends BaseRetrieverInterface to provide
document retrieval capabilities based on vector similarity.
VectorStoreRetrieverInterface