[Webhook/Streaming] How to stream real-time progress back to caller in v2.1.4 (Docker/SQLite)?

Hi @life_voluptuous,

You have one of four options:

  1. Callback a webhook on the calling end with status updates
  2. Use a realtime db like Supabase or Firebase/Firestore or Redis to write updates to a table/collection, which your originator listens to.
  3. Use websockets to push messages for updates.
  4. Implement pub/sub or event driven architecture using something like Kafka or RabbitMQ

For option 3, you can have a look at the below post:

PS: The Streaming Response is only compatible with streaming enabled nodes such as the AI Agent

1 Like