@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
13 lines (12 loc) • 429 B
TypeScript
import * as React from 'react';
import { ChatUsersProps } from '../../core/useChatProps';
type Props = {
text: string;
inProgress: boolean;
processAssistantText?: (text: string) => string;
customMarkdownComponents?: ChatUsersProps<any, any>['customMarkdownComponents'];
typingSpeed?: number;
stagger?: number;
};
declare const MessageMarkdown: React.FC<Props>;
export default MessageMarkdown;