Use any Chat SDK adapter with eve
Eve now supports Chat SDK adapters through a new .eveChat channel, allowing you to connect your eve agent to Facebook Messenger, WhatsApp, Resend, Liveblocks, and other platforms using standard Chat SDK handler code. The channel automatically mounts webhook routes, displays typing indicators, renders interactive cards for human-in-the-loop requests, persists conversation threads, and reports failures.
now supports Chat SDK adapters with the new .eveChat SDK channel
One channel connects your eve agent to Facebook Messenger, WhatsApp, Resend, Liveblocks, and any other surface with an . You write normal Chat SDK handler code, and calling inside a handler hands the message to your agent.adaptersend
Register handlers on exactly as you would in a standalone Chat SDK app.bot
Out of the box, the channel:
Supply your own handlers to override any of these defaults.events
Read the documentation to get started, or learn how to build your own .Chat SDK channeleve agent with Resend
Mounts a webhook route for each adapter (e.g., )
/eve/v1/resendShows a typing indicator while a turn runs, then posts the agent's reply
Renders human-in-the-loop input requests as cards with buttons, and resumes the session when one is clicked
Persists the thread, so later events, including proactive sends from schedules, reach the same conversation
Reports failures in the thread with a readable message
Source: original entry ↗