StreamingText
StreamingText is the simplest live text widget for chunk-by-chunk output.
Smallest example
let output = StreamingText::new(self.current_output.clone()).build();Use StreamingText when
- output keeps growing over time
- you are showing an in-progress assistant reply or log stream
- you do not need structured transcript entries yet
Common combinations
StreamingText + ScrollViewStreamingText + SessionTranscript
Last updated on
