showcase/shell-docs/src/content/reference/components/CopilotChatView.mdx
CopilotChatView is a layout component that combines a scrollable message transcript with the chat input area, suggestion pills, a scroll-to-bottom button, and an optional welcome screen. It is the visual core of the chat interface and is used internally by CopilotChat, CopilotPopup, and CopilotSidebar.
Every visual piece of CopilotChatView is exposed as a slot, so you can replace, style, or extend any part without rewriting the entire layout.
import CopilotChatView from "@copilotkit/react-core/v2";
import "@copilotkit/react-core/v2/styles.css";
CopilotChatView uses the WithSlots pattern. Each slot prop accepts one of three value types:
| Value | Behavior |
|---|---|
| Component | Replaces the default component entirely. Receives the same props the default would. |
className string | Merged into the default component's class list via twMerge. |
| Partial props object | Spread into the default component as additional or overriding props. |
Passing a children render-prop gives you access to all composed slot elements plus data props, letting you arrange them in a fully custom layout.
<PropertyReference name="messageView" type="SlotValue<typeof CopilotChatMessageView>"
The message list component that renders the conversation transcript. The default displays assistant messages, user messages, and a typing cursor. Replace it to add custom message types or modify the message layout. </PropertyReference>
<PropertyReference name="scrollView" type="SlotValue<React.FC<React.HTMLAttributes<HTMLDivElement>>>"
The scrollable container wrapping the message list. The default handles auto-scroll behavior and scroll position tracking. Replace it to implement custom scroll mechanics. </PropertyReference>
<PropertyReference name="scrollToBottomButton" type="SlotValue<React.FC<React.ButtonHTMLAttributes<HTMLButtonElement>>>"
A button that appears when the user has scrolled up from the bottom of the transcript. Clicking it scrolls the view back to the latest message. </PropertyReference>
<PropertyReference name="input" type="SlotValue<typeof CopilotChatInput>"> The message input component. The default provides a text area with send button, transcription controls, file upload, and a tools menu. Replace it to build a fully custom input experience. </PropertyReference><PropertyReference name="inputContainer" type="SlotValue<React.FC<React.HTMLAttributes<HTMLDivElement> & { children: React.ReactNode }>>"
The container that wraps the input and disclaimer at the bottom of the chat. Positioned absolutely to remain fixed at the bottom as content scrolls. </PropertyReference>
<PropertyReference name="feather" type="SlotValue<React.FC<React.HTMLAttributes<HTMLDivElement>>>"
A decorative gradient overlay that appears above the input container, creating a smooth visual transition between the message area and the input. </PropertyReference>
<PropertyReference name="disclaimer" type="SlotValue<React.FC<React.HTMLAttributes<HTMLDivElement>>>"
A disclaimer text line displayed below the input (e.g. "AI can make mistakes. Please verify important information."). Override or hide it with a replacement component. </PropertyReference>
<PropertyReference name="suggestionView" type="SlotValue<typeof CopilotChatSuggestionView>"
The component that renders suggestion pills. Replace it to change how suggestions are displayed or animated. </PropertyReference>
<PropertyReference name="inputProps" type="Partial<Omit<CopilotChatInputProps, 'children'>>"
Additional props forwarded to the inner CopilotChatInput component. Use this
to configure auto-focus, custom submission handlers, transcription callbacks,
or tools menus without replacing the input slot entirely.
</PropertyReference>
<PropertyReference name="onSelectSuggestion" type="(suggestion: Suggestion, index: number) => void"
Callback invoked when the user clicks a suggestion pill. Receives the selected suggestion object and its index. </PropertyReference>
<PropertyReference name="welcomeScreen" type='SlotValue<React.FC<WelcomeScreenProps>> | boolean'> Controls the welcome screen shown when the `messages` array is empty.true -- show the default welcome screenfalse -- disable the welcome screenclassName string -- style the default welcome screenThe welcome screen component receives input and suggestionView as React elements, plus a welcomeMessage slot, so you can compose them in any layout.
CopilotChatView exposes its default slot implementations as static properties for use in custom compositions:
CopilotChatView.ScrollView -- default scroll container with auto-scroll supportCopilotChatView.ScrollToBottomButton -- default scroll-to-bottom buttonCopilotChatView.Feather -- default gradient overlayCopilotChatView.InputContainer -- default input containerCopilotChatView.Disclaimer -- default disclaimer textCopilotChatView.WelcomeMessage -- default welcome messageCopilotChatView.WelcomeScreen -- default welcome screen layoutfunction CustomChat({ messages, isRunning }) {
return (
<CopilotChatView
messages={messages}
isRunning={isRunning}
autoScroll={true}
/>
);
}
function CustomDisclaimer(props) {
return (
<div {...props}>Powered by CopilotKit. Responses may contain errors.</div>
);
}
function Chat({ messages, isRunning }) {
return (
<CopilotChatView
messages={messages}
isRunning={isRunning}
disclaimer={CustomDisclaimer}
/>
);
}
function Chat({ messages, isRunning }) {
return (
<CopilotChatView
messages={messages}
isRunning={isRunning}
scrollView="bg-gray-50"
inputContainer="border-t border-gray-200"
/>
);
}
function Chat({ messages, isRunning }) {
return (
<CopilotChatView messages={messages} isRunning={isRunning}>
{({
scrollView,
input,
inputContainer,
feather,
disclaimer,
suggestionView,
}) => (
<div className="flex flex-col h-full">
<div className="flex-1 overflow-hidden">{scrollView}</div>
{feather}
{suggestionView}
{inputContainer}
</div>
)}
</CopilotChatView>
);
}
autoScroll is true, the view uses a stick-to-bottom strategy that keeps the latest message visible. A scroll-to-bottom button appears when the user scrolls up.messages is empty and welcomeScreen is not false, a welcome screen is rendered in place of the transcript. The welcome screen receives the input and suggestionView elements so they can be placed within the welcome layout.CopilotChat -- high-level component that wires an agent into CopilotChatViewCopilotPopup -- popup variant that uses CopilotPopupView (extends CopilotChatView)CopilotSidebar -- sidebar variant that uses CopilotSidebarView (extends CopilotChatView)