mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-22 05:34:45 +08:00
Simplify clarification message handling by having the frontend detect and display ask_clarification tool messages directly, instead of relying on backend to add an extra AIMessage. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
103 lines
3.3 KiB
TypeScript
103 lines
3.3 KiB
TypeScript
import type { UseStream } from "@langchain/langgraph-sdk/react";
|
|
|
|
import {
|
|
Conversation,
|
|
ConversationContent,
|
|
} from "@/components/ai-elements/conversation";
|
|
import { MessageResponse } from "@/components/ai-elements/message";
|
|
import {
|
|
extractContentFromMessage,
|
|
extractPresentFilesFromMessage,
|
|
groupMessages,
|
|
hasContent,
|
|
hasPresentFiles,
|
|
} from "@/core/messages/utils";
|
|
import { useRehypeSplitWordsIntoSpans } from "@/core/rehype";
|
|
import type { AgentThreadState } from "@/core/threads";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
import { ArtifactFileList } from "../artifacts/artifact-file-list";
|
|
import { StreamingIndicator } from "../streaming-indicator";
|
|
|
|
import { MessageGroup } from "./message-group";
|
|
import { MessageListItem } from "./message-list-item";
|
|
import { MessageListSkeleton } from "./skeleton";
|
|
|
|
export function MessageList({
|
|
className,
|
|
threadId,
|
|
thread,
|
|
paddingBottom = 160,
|
|
}: {
|
|
className?: string;
|
|
threadId: string;
|
|
thread: UseStream<AgentThreadState>;
|
|
paddingBottom?: number;
|
|
}) {
|
|
const rehypePlugins = useRehypeSplitWordsIntoSpans(thread.isLoading);
|
|
if (thread.isThreadLoading) {
|
|
return <MessageListSkeleton />;
|
|
}
|
|
return (
|
|
<Conversation
|
|
className={cn("flex size-full flex-col justify-center", className)}
|
|
>
|
|
<ConversationContent className="mx-auto w-full max-w-(--container-width-md) gap-10 pt-12">
|
|
{groupMessages(thread.messages, (group) => {
|
|
if (group.type === "human" || group.type === "assistant") {
|
|
return (
|
|
<MessageListItem
|
|
key={group.id}
|
|
message={group.messages[0]!}
|
|
isLoading={thread.isLoading}
|
|
/>
|
|
);
|
|
}
|
|
if (group.type === "assistant:clarification") {
|
|
const message = group.messages[0];
|
|
if (message && hasContent(message)) {
|
|
return (
|
|
<MessageResponse key={group.id} rehypePlugins={rehypePlugins}>
|
|
{extractContentFromMessage(message)}
|
|
</MessageResponse>
|
|
);
|
|
}
|
|
return null;
|
|
}
|
|
if (group.type === "assistant:present-files") {
|
|
const files: string[] = [];
|
|
for (const message of group.messages) {
|
|
if (hasPresentFiles(message)) {
|
|
const presentFiles = extractPresentFilesFromMessage(message);
|
|
files.push(...presentFiles);
|
|
}
|
|
}
|
|
return (
|
|
<div className="w-full" key={group.id}>
|
|
{group.messages[0] && hasContent(group.messages[0]) && (
|
|
<MessageResponse
|
|
className="mb-4"
|
|
rehypePlugins={rehypePlugins}
|
|
>
|
|
{extractContentFromMessage(group.messages[0])}
|
|
</MessageResponse>
|
|
)}
|
|
<ArtifactFileList files={files} threadId={threadId} />
|
|
</div>
|
|
);
|
|
}
|
|
return (
|
|
<MessageGroup
|
|
key={"group-" + group.id}
|
|
messages={group.messages}
|
|
isLoading={thread.isLoading}
|
|
/>
|
|
);
|
|
})}
|
|
{thread.isLoading && <StreamingIndicator className="my-4" />}
|
|
<div style={{ height: `${paddingBottom}px` }} />
|
|
</ConversationContent>
|
|
</Conversation>
|
|
);
|
|
}
|