@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
11 lines (10 loc) • 379 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'];
};
declare const MessageMarkdown: React.FC<Props>;
export default MessageMarkdown;