getRelevantDocuments method
Get the most relevant documents for a given query.
query
- The query to search for.options
- Retrieval options.
Implementation
@override
Future<List<Document>> getRelevantDocuments(
final String query, {
final RetrieverOptions? options,
}) {
return Future.value(docs);
}