searchMeta method
Implementation
Future<SearchMetaResult> searchMeta(
String query, {
int topK = 10,
double vectorWeight = kDefaultVectorWeight,
double bm25Weight = kDefaultBm25Weight,
List<int>? sourceIds,
int adjacentChunks = 0,
}) =>
_engine.searchMeta(
query,
topK: topK,
vectorWeight: vectorWeight,
bm25Weight: bm25Weight,
sourceIds: sourceIds,
adjacentChunks: adjacentChunks,
collectionId: _collectionId,
);