namespace AIStudio.Tools;
///
/// Where a source points in the file system, and where inside the document it was found.
///
/// The document in the file system, spelled the way this system spells a path.
/// The page the passage stands on, counted from one, or null when no page is known.
public readonly record struct SourceDocumentLocation(string Path, int? PageNumber);