You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Is it possible to stream streaming tool responses back?
If the tool sends back streaming chunks like
const res = await client.fetch(...)
for await (const chunk of res.body) {...}
is it possible to stream the chunks back immediately?
Describe the solution you'd like
Please provide a guidance on how to do this kind of streaming, or implement a new feature for that.