Trigger.dev Realtime AI [LW24] - Live updates in your app made easy

Realtime keeps your users updated with live progress from your background tasks. Show progress bars, AI/LMM streaming responses, and AI agent observability. Use the Realtime API for live updates and React hooks to easily integrate Trigger.dev into your apps.

Add a comment

Replies

Best
Nice! Is it only LLM responses that can be streamed or can any stream work?
yup any stream works, not just from LLMs responses. For example, you could stream the response.body of a fetch call as it works with any AsyncIterable or ReadableStream:
Love it, thanks for the answer
Realtime has been a game-changer for my project. It was incredibly easy to set up and start showing live progress on my background jobs. The team behind it is fantastic, always quick to offer support whenever I’ve had questions. If you want an easy way to make your app more dynamic and responsive while keeping your users updated on background jobs, Trigger.dev and Realtime are a perfect choice!
that's awesome! Thanks for the support ❤️
Been using the self-hosted Trigger for a while - great product! Excited for the launch week (hope I get what I'm after on Friday 😃)
Nice one ! Also appreciate all your assists on Discord too
Congrats on the launch folks, insane how far the product has come.
Really appreciate that ! More to do...
Congrats on the huge release guys!
TY , we love Loops!
This is sick, streaming updates for AI responses is a game-changer for improving AI flows. Love trigger so much, insane to see the rate of improvement with the product. No-timeouts is also huge - I have specifically been burned by Vercel on this. We'll for sure put this to use - thanks Trigger team
Thanks a lot ! If you need any help getting set up give us a shout
We're happy customers of Trigger — it's such an amazing platform with carefully crafted DX. Can't imagine going back to a world without Trigger and needing to manually figure out how to run a cron job in our server!
Thanks ! 🚀
Awesome tool! We're using Trigger and we're happy with it. :-) Congrats on the launch! Looking forward to what's next.
TY ! 🙌
Huge Trigger.dev fan here. I've deployed 3 production apps which use Trigger. In many ways a career-shaping product for me as its allowed me to quickly and easily build performant apps for clients in a way I never could do on my own. Best of all, for me, is the team behind it. Hands down one of the best customer support experiences I've had across any product category. Love it guys. My clients do, too.
thank you! Glad you (and your clients) are having a good experience
Congrats on the launch! This looks awesome. I'm curious, how does it compare to other realtime update solutions out there?
updating your UI from code that's executing is an annoyingly hard problem still. If you're doing just a single AI call you can stream that from your backend to your app. But anything more complicated than that means you've got to setup web sockets and/or Redis… it's a hassle