# Message A comprehensive suite of components for displaying chat messages, including message rendering, branching, actions, and markdown responses. The `Message` component suite provides a complete set of tools for building chat interfaces. It includes components for displaying messages from users and AI assistants, managing multiple response branches, adding action buttons, and rendering markdown content. See `scripts/message.tsx` for this example. ## Installation ```bash npx ai-elements@latest add message ``` ## Features - Displays messages from both user and AI assistant with distinct styling and automatic alignment - Minimalist flat design with user messages in secondary background and assistant messages full-width - **Response branching** with navigation controls to switch between multiple AI response versions - **Markdown rendering** with GFM support (tables, task lists, strikethrough), math equations, and smart streaming - **Action buttons** for common operations (retry, like, dislike, copy, share) with tooltips and state management - **File attachments** display with support for images and generic files with preview and remove functionality - Code blocks with syntax highlighting and copy-to-clipboard functionality - Keyboard accessible with proper ARIA labels - Responsive design that adapts to different screen sizes - Seamless light/dark theme integration ## Usage with AI SDK Build a simple chat UI where the user can copy or regenerate the most recent message. Add the following component to your frontend: ```tsx title="app/page.tsx" "use client"; import { useState } from "react"; import { MessageActions, MessageAction, } from "@/components/ai-elements/message"; import { Message, MessageContent } from "@/components/ai-elements/message"; import { Conversation, ConversationContent, ConversationScrollButton, } from "@/components/ai-elements/conversation"; import { PromptInput, type PromptInputMessage, PromptInputTextarea, PromptInputSubmit, } from "@/components/ai-elements/prompt-input"; import { MessageResponse } from "@/components/ai-elements/message"; import { RefreshCcwIcon, CopyIcon } from "lucide-react"; import { useChat } from "@ai-sdk/react"; import { Fragment } from "react"; const ActionsDemo = () => { const [input, setInput] = useState(""); const { messages, sendMessage, status, regenerate } = useChat(); const handleSubmit = (message: PromptInputMessage) => { if (message.text.trim()) { sendMessage({ text: message.text }); setInput(""); } }; return (
{messages.map((message, messageIndex) => ( {message.parts.map((part, i) => { switch (part.type) { case "text": const isLastMessage = messageIndex === messages.length - 1; return ( {part.text} {message.role === "assistant" && isLastMessage && ( regenerate()} label="Retry" > navigator.clipboard.writeText(part.text) } label="Copy" > )} ); default: return null; } })} ))} setInput(e.currentTarget.value)} className="pr-12" />
); }; export default ActionsDemo; ``` ## Props ### `` | Prop | Type | Default | Description | |------|------|---------|-------------| | `from` | `UIMessage[` | - | The role of the message sender ( | | `...props` | `React.HTMLAttributes` | - | Any other props are spread to the root div. | ### `` | Prop | Type | Default | Description | |------|------|---------|-------------| | `...props` | `React.HTMLAttributes` | - | Any other props are spread to the content div. | ### `` | Prop | Type | Default | Description | |------|------|---------|-------------| | `children` | `string` | - | The markdown content to render. | | `parseIncompleteMarkdown` | `boolean` | `true` | Whether to parse and fix incomplete markdown syntax (e.g., unclosed code blocks or lists). | | `className` | `string` | - | CSS class names to apply to the wrapper div element. | | `components` | `object` | - | Custom React components to use for rendering markdown elements (e.g., custom heading, paragraph, code block components). | | `allowedImagePrefixes` | `string[]` | `[` | Array of allowed URL prefixes for images. Use [ | | `allowedLinkPrefixes` | `string[]` | `[` | Array of allowed URL prefixes for links. Use [ | | `defaultOrigin` | `string` | - | Default origin to use for relative URLs in links and images. | | `rehypePlugins` | `array` | `[rehypeKatex]` | Array of rehype plugins to use for processing HTML. Includes KaTeX for math rendering by default. | | `remarkPlugins` | `array` | `[remarkGfm, remarkMath]` | Array of remark plugins to use for processing markdown. Includes GitHub Flavored Markdown and math support by default. | | `...props` | `React.HTMLAttributes` | - | Any other props are spread to the root div. | ### `` | Prop | Type | Default | Description | |------|------|---------|-------------| | `...props` | `React.HTMLAttributes` | - | HTML attributes to spread to the root div. | ### `` | Prop | Type | Default | Description | |------|------|---------|-------------| | `tooltip` | `string` | - | Optional tooltip text shown on hover. | | `label` | `string` | - | Accessible label for screen readers. Also used as fallback if tooltip is not provided. | | `...props` | `React.ComponentProps` | - | Any other props are spread to the underlying shadcn/ui Button component. | ### `` | Prop | Type | Default | Description | |------|------|---------|-------------| | `defaultBranch` | `number` | `0` | The index of the branch to show by default. | | `onBranchChange` | `(branchIndex: number) => void` | - | Callback fired when the branch changes. | | `...props` | `React.HTMLAttributes` | - | Any other props are spread to the root div. | ### `` | Prop | Type | Default | Description | |------|------|---------|-------------| | `...props` | `React.HTMLAttributes` | - | Any other props are spread to the root div. | ### `` | Prop | Type | Default | Description | |------|------|---------|-------------| | `...props` | `React.ComponentProps` | - | Any other props are spread to the underlying ButtonGroup component. | ### `` | Prop | Type | Default | Description | |------|------|---------|-------------| | `...props` | `React.ComponentProps` | - | Any other props are spread to the underlying shadcn/ui Button component. | ### `` | Prop | Type | Default | Description | |------|------|---------|-------------| | `...props` | `React.ComponentProps` | - | Any other props are spread to the underlying shadcn/ui Button component. | ### `` | Prop | Type | Default | Description | |------|------|---------|-------------| | `...props` | `React.HTMLAttributes` | - | Any other props are spread to the underlying span element. | ### `` A container for placing actions and branch selectors below a message. Lays out children in a horizontal row with space-between alignment. | Prop | Type | Default | Description | |------|------|---------|-------------| | `...props` | `React.ComponentProps<` | - | Any other props are spread to the root div. | ```