pub trait Source: Stream<Item = Result<TextChunk, SourceError>> + Send { }
A stream source — anything that produces TextChunks. Implemented by: string buffer (WASM/server), file reader (CLI/batch), HTTP body.
TextChunk