AAI SDK
    Preparing search index...

    Function ChatView

    • 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.

      Parameters

      • icon: { className?: string; icon?: ReactNode; title?: string }

        Optional element rendered in place of the logo in the header.

      Returns ReactNode

      import { ChatView, StartScreen } from "@alexkroman1/aai-ui";

      function App() {
      return (
      <StartScreen icon="🍕" title="Pizza Palace">
      <ChatView />
      </StartScreen>
      );
      }