@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
15 lines (14 loc) • 544 B
TypeScript
import type { Attachment } from '@base/stores/agentChatStore';
interface MessageProps {
senderName: string;
senderAvatar?: string;
avatarAltText?: string;
timestamp: number;
content: string;
attachments?: Attachment[];
isSystemMessage?: boolean;
isAgent?: boolean;
isStreaming?: boolean;
}
export declare const Message: ({ senderName, senderAvatar, avatarAltText, timestamp, content, attachments, isSystemMessage, isAgent, isStreaming, }: MessageProps) => import("react/jsx-runtime").JSX.Element;
export {};