stream method
Streams the output of invoking the Runnable on the given input
.
Implementation
@override
Stream<List<ParsedToolCall>> stream(
final ChatResult input, {
final OutputParserOptions? options,
}) async* {
yield await _parseStream(input, options: options);
}