Const
Scrollable list of all chat messages, tool-call blocks, live transcript, streaming agent utterance, and a thinking indicator.
Messages and tool calls are interleaved in the correct order. The list auto-scrolls to the latest content.
Must be rendered inside a SessionProvider.
SessionProvider
import { MessageList } from "@alexkroman1/aai-ui";function Conversation() { return <MessageList className="flex-1" />;} Copy
import { MessageList } from "@alexkroman1/aai-ui";function Conversation() { return <MessageList className="flex-1" />;}
Additional CSS class names applied to the outer list container.
Scrollable list of all chat messages, tool-call blocks, live transcript, streaming agent utterance, and a thinking indicator.
Messages and tool calls are interleaved in the correct order. The list auto-scrolls to the latest content.
Must be rendered inside a
SessionProvider.