getSourceDocument method

Future<String?> getSourceDocument(
  1. int sourceId
)

Get the original source document content by ID.

Returns null if the source doesn't exist.

Implementation

Future<String?> getSourceDocument(int sourceId) =>
    _ragService.getSourceDocument(sourceId: sourceId);