pub type TextStream = Pin<Box<dyn Stream<Item = String> + Send>>;
A stream of text chunks from an async source (e.g. an LLM response).
pub struct TextStream { /* private fields */ }