getRelevantDocuments abstract method

Future<List<Document>> getRelevantDocuments(
  1. String query, {
  2. Options? options,
})

Get the most relevant documents for a given query.

  • query - The query to search for.
  • options - Retrieval options.

Implementation

Future<List<Document>> getRelevantDocuments(
  final String query, {
  final Options? options,
});