All integrations

eve Web Chat

Channel

Embed a first-party web chat UI backed by your agent.

Read the full channel docs

Install

The eve CLI scaffolds the full Next.js web chat app alongside agent/channels/eve.ts:

bash
eve channels add web

To wire it up by hand instead, install the framework:

bash
npm install eve@latest

Quick start

The eve channel is on by default. Add agent/channels/eve.ts only when you want to override the default session routes or auth:

ts
// agent/channels/eve.tsimport { eveChannel } from "eve/channels/eve";
export default eveChannel();

Point your frontend at the session routes eve serves (/eve/v1/session) and stream responses with the eve web client.

Configure

The eve channel is the lowest-friction way to talk to your agent, with no third-party provisioning required. Layer in auth and route protection as needed. See the and the .