QdrantVectorSpace constructor
QdrantVectorSpace({})
Implementation
QdrantVectorSpace({
required super.embedder,
required this.host,
this.quantizedSuperSampleFactor = 2,
this.prefetchSuperSampleFactor = 2,
required this.chunkSize,
required this.organization,
required this.apiKey,
required this.dimension,
required this.port,
}) : channel = ClientChannel(
host,
port: port,
options: const ChannelOptions(
credentials: ChannelCredentials.secure(),
),
);