mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-22 20:01:46 +00:00
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import { ChatContext } from '@/app/chat-context';
|
|
import { IChatDialogueMessageSchema } from '@/types/chat';
|
|
import { GPTVis } from '@antv/gpt-vis';
|
|
import classNames from 'classnames';
|
|
import { memo, useContext } from 'react';
|
|
import markdownComponents, { markdownPlugins, preprocessLaTeX } from './chat-content/config';
|
|
|
|
interface Props {
|
|
content: IChatDialogueMessageSchema;
|
|
}
|
|
|
|
function formatMarkdownVal(val: string) {
|
|
return val?.replace(/<table(\w*=[^>]+)>/gi, '<table $1>').replace(/<tr(\w*=[^>]+)>/gi, '<tr $1>');
|
|
}
|
|
|
|
function AgentContent({ content }: Props) {
|
|
const { scene } = useContext(ChatContext);
|
|
|
|
const isView = content.role === 'view';
|
|
|
|
return (
|
|
<div
|
|
className={classNames('relative w-full p-2 md:p-4 rounded-xl break-words', {
|
|
'bg-white dark:bg-[#232734]': isView,
|
|
'lg:w-full xl:w-full pl-0': ['chat_with_db_execute', 'chat_dashboard'].includes(scene),
|
|
})}
|
|
>
|
|
{isView ? (
|
|
<GPTVis components={markdownComponents} {...markdownPlugins}>
|
|
{preprocessLaTeX(formatMarkdownVal(content.context))}
|
|
</GPTVis>
|
|
) : (
|
|
<div className=''>{content.context}</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default memo(AgentContent);
|