PineconeVectorSpace constructor

const PineconeVectorSpace({
  1. required String namespace,
  2. required String host,
  3. required String apiKey,
  4. bool rerank = false,
  5. int rerankTopK = 5,
  6. String rerankModel = "bge-reranker-v2-m3",
})

Implementation

const PineconeVectorSpace({
  required this.namespace,
  required this.host,
  required this.apiKey,
  this.rerank = false,
  this.rerankTopK = 5,
  this.rerankModel = "bge-reranker-v2-m3",
});