When using agent.network, the router agent’s self responses (its own generated messages) are not streamed as chunks. Instead, the router agent generates its entire message first and then emits it as a full chunk.
This breaks the consistency of the streaming experience because:
- Normal agent responses stream incrementally (e.g., text-delta chunks).
- Router agent’s own messages arrive all at once.
So it would be great if we could be able to make it work like stream instead of generate.