DocsReact UIui-componentsMessageBubbleProps
Package: @hexos/react-ui

Props for the MessageBubble component.

interface MessageBubbleProps {
    message: AgentMessage;
    showAvatar?: boolean;
    showTimestamp?: boolean;
    showAgentName?: boolean;
    showToolCalls?: boolean;
    showReasoning?: boolean;
    isStreaming?: boolean;
    toolRenderers?: Record<string, React.ComponentType<ToolCallRenderProps>>;
    actions?: React.ReactNode;
    className?: string;
}

message

showAvatar

boolean

showTimestamp

boolean

showAgentName

boolean

showToolCalls

boolean

showReasoning

boolean

isStreaming

boolean

toolRenderers

RecordToolCallRenderProps>>

actions

React.ReactNode

className

string