The main chat interface for a voice agent session — the design-system "voice agent console": a 760px column on the cream page with a header (logo + live-status eyebrow), the conversation on a raised white card, and the session controls beneath it.
Must be rendered inside a SessionProvider.
SessionProvider
Optional element rendered in place of the logo in the header.
import { ChatView, StartScreen } from "@alexkroman1/aai-ui";function App() { return ( <StartScreen icon="🍕" title="Pizza Palace"> <ChatView /> </StartScreen> );} Copy
import { ChatView, StartScreen } from "@alexkroman1/aai-ui";function App() { return ( <StartScreen icon="🍕" title="Pizza Palace"> <ChatView /> </StartScreen> );}
The main chat interface for a voice agent session — the design-system "voice agent console": a 760px column on the cream page with a header (logo + live-status eyebrow), the conversation on a raised white card, and the session controls beneath it.
Must be rendered inside a
SessionProvider.