stream method
Sends a request and yields decoded text chunks as they arrive.
Implementations should throw AiHttpException for non-success responses when a streaming request cannot continue.
Implementation
@override
Stream<String> stream(AiHttpRequest request) {
return inner.stream(request);
}