VectorStoreRetrieverOptions constructor

const VectorStoreRetrieverOptions({
  1. VectorStoreSearchType searchType = const VectorStoreSimilaritySearch(),
  2. int concurrencyLimit = 1000,
})

Options for VectorStoreRetriever.

Implementation

const VectorStoreRetrieverOptions({
  this.searchType = const VectorStoreSimilaritySearch(),
  super.concurrencyLimit,
});