import _React from "react"; import Marked from "../general/Marked"; interface StreamingMessageProps { content: string; sessionId?: string; } export function StreamingMessage({ content }: StreamingMessageProps) { return (
Assistant 正在生成中...
|
); }