pipeline.run(...) — fetch by name, then call await pipeline.arun(input_data) so it composes with other awaitable work.
You’ll end up with. The same result dict you’d get from pipeline.run(...), printed once the awaited call completes.
Expected output
arun(...) returns the same shape as run(...); only the execution path differs.
See also
Background runs (async)
Start a run in the background instead of awaiting it.
Streaming (async)
async for chunk in pipeline.astream(...).Pipeline reference
Full method surface.
