RagDocument class

Document handed to RagSession.ingest.

Constructors

RagDocument(String text, {Map<String, String>? metadata, String? sourceUri})
Wrap in-memory text.
const

Properties

hashCode int
The hash code for this object.
no setterinherited
metadata Map<String, String>?
Caller metadata echoed back on every text match.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sourceUri String?
Origin of the document, when it came from a file or URL.
final
text String
Document body.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

file(String path) Future<RagDocument>
Read a UTF-8 text file from disk.