# Use any Chat SDK adapter with eve

DevFeed: [Use any Chat SDK adapter with eve](<https://devfeed.tech/articles/use-any-chat-sdk-adapter-with-eve-921.md>)

Original publisher: [Read original article](<https://vercel.com/changelog/eve-chat-sdk-channel>)

Author: Ben Sabic

Published: 2026-07-08T00:00:00Z

Content type: release

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [AI Chat](<https://devfeed.tech/topics/ai-chat.md>)

Tags: [vercel](<https://devfeed.tech/tags/vercel.md>), [whatsapp](<https://devfeed.tech/tags/whatsapp.md>)

## AI overview

eve adds a Chat SDK channel that connects agents to adapter-supported messaging and communication surfaces, including WhatsApp and Resend. It provides webhook routing, typing indicators, human-in-the-loop cards, thread persistence, failure reporting, and handler overrides.

## Source excerpt

eve now supports Chat SDK adapters with the new Chat SDK channel. One channel connects your eve agent to Facebook Messenger, WhatsApp, Resend, Liveblocks, and any other surface with an adapter. You write normal Chat SDK handler code, and calling send inside a handler hands the message to your agent. Register handlers on bot exactly as you would in a standalone Chat SDK app. Out of the box, the channel: Mounts a webhook route for each adapter (e.g., /eve/v1/resend) Shows 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 Supply your own events handlers to override any of these defaults. Read the Chat SDK channel documentation to get started, or learn how to build your own eve agent with Resend. Read more