237 lines
8.2 KiB
TypeScript
237 lines
8.2 KiB
TypeScript
import type { Message } from "@langchain/langgraph-sdk";
|
|
import type { UseStream } from "@langchain/langgraph-sdk/react";
|
|
|
|
import {
|
|
Conversation,
|
|
ConversationContent,
|
|
ConversationScrollButton,
|
|
} from "@/components/ai-elements/conversation";
|
|
import { useI18n } from "@/core/i18n/hooks";
|
|
import {
|
|
extractContentFromMessage,
|
|
extractPresentFilesFromMessage,
|
|
extractTextFromMessage,
|
|
groupMessages,
|
|
hasContent,
|
|
hasPresentFiles,
|
|
hasReasoning,
|
|
} from "@/core/messages/utils";
|
|
import { useRehypeSplitWordsIntoSpans } from "@/core/rehype";
|
|
import type { Subtask } from "@/core/tasks";
|
|
import { useUpdateSubtask } from "@/core/tasks/context";
|
|
import type { AgentThreadState } from "@/core/threads";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
import { ArtifactFileList } from "../artifacts/artifact-file-list";
|
|
import { StreamingIndicator } from "../streaming-indicator";
|
|
|
|
import { MarkdownContent } from "./markdown-content";
|
|
import { MessageGroup } from "./message-group";
|
|
import { MessageListItem } from "./message-list-item";
|
|
import { MessageListSkeleton } from "./skeleton";
|
|
import { SubtaskCard } from "./subtask-card";
|
|
|
|
export function MessageList({
|
|
className,
|
|
threadId,
|
|
thread,
|
|
messagesOverride,
|
|
suppressThreadLoading = false,
|
|
paddingBottom = 160,
|
|
showScrollToBottomButton = false,
|
|
scrollButtonClassName,
|
|
}: {
|
|
className?: string;
|
|
threadId: string;
|
|
thread: UseStream<AgentThreadState>;
|
|
/** When set (e.g. from onFinish), use instead of thread.messages so SSE end shows complete state. */
|
|
messagesOverride?: Message[];
|
|
suppressThreadLoading?: boolean;
|
|
paddingBottom?: number;
|
|
showScrollToBottomButton?: boolean;
|
|
scrollButtonClassName?: string;
|
|
}) {
|
|
const { t } = useI18n();
|
|
const rehypePlugins = useRehypeSplitWordsIntoSpans(thread.isLoading);
|
|
const updateSubtask = useUpdateSubtask();
|
|
const messages = messagesOverride ?? thread.messages;
|
|
const firstConversationMessageId = messages.find(
|
|
(message) => message.name !== "todo_reminder",
|
|
)?.id;
|
|
if (thread.isThreadLoading && !suppressThreadLoading) {
|
|
return <MessageListSkeleton />;
|
|
}
|
|
return (
|
|
<Conversation
|
|
className={cn("flex size-full flex-col justify-center", className)}
|
|
>
|
|
<ConversationContent className="w-full gap-8 px-[20px]">
|
|
{groupMessages(messages, (group) => {
|
|
if (group.type === "human" || group.type === "assistant") {
|
|
return (
|
|
<MessageListItem
|
|
key={group.id}
|
|
message={group.messages[0]!}
|
|
isLoading={thread.isLoading}
|
|
threadId={threadId}
|
|
isFirstInSession={
|
|
group.messages[0]?.id === firstConversationMessageId
|
|
}
|
|
/>
|
|
);
|
|
} else if (group.type === "assistant:clarification") {
|
|
const message = group.messages[0];
|
|
if (message && hasContent(message)) {
|
|
return (
|
|
<MarkdownContent
|
|
key={group.id}
|
|
content={extractContentFromMessage(message)}
|
|
isLoading={thread.isLoading}
|
|
rehypePlugins={rehypePlugins}
|
|
/>
|
|
);
|
|
}
|
|
return null;
|
|
} else 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]) && (
|
|
<MarkdownContent
|
|
content={extractContentFromMessage(group.messages[0])}
|
|
isLoading={thread.isLoading}
|
|
rehypePlugins={rehypePlugins}
|
|
className="mb-4"
|
|
/>
|
|
)}
|
|
{threadId ? (
|
|
<ArtifactFileList files={files} threadId={threadId} />
|
|
) : null}
|
|
</div>
|
|
);
|
|
} else if (group.type === "assistant:subagent") {
|
|
const tasks = new Set<Subtask>();
|
|
for (const message of group.messages) {
|
|
if (message.type === "ai") {
|
|
for (const toolCall of message.tool_calls ?? []) {
|
|
if (toolCall.name === "task") {
|
|
const task: Subtask = {
|
|
id: toolCall.id!,
|
|
subagent_type: toolCall.args.subagent_type,
|
|
description: toolCall.args.description,
|
|
prompt: toolCall.args.prompt,
|
|
status: "in_progress",
|
|
};
|
|
updateSubtask(task);
|
|
tasks.add(task);
|
|
}
|
|
}
|
|
} else if (message.type === "tool") {
|
|
const taskId = message.tool_call_id;
|
|
if (taskId) {
|
|
const result = extractTextFromMessage(message);
|
|
if (result.startsWith("Task Succeeded. Result:")) {
|
|
updateSubtask({
|
|
id: taskId,
|
|
status: "completed",
|
|
result: result
|
|
.split("Task Succeeded. Result:")[1]
|
|
?.trim(),
|
|
});
|
|
} else if (result.startsWith("Task failed.")) {
|
|
updateSubtask({
|
|
id: taskId,
|
|
status: "failed",
|
|
error: result.split("Task failed.")[1]?.trim(),
|
|
});
|
|
} else if (result.startsWith("Task timed out")) {
|
|
updateSubtask({
|
|
id: taskId,
|
|
status: "failed",
|
|
error: result,
|
|
});
|
|
} else {
|
|
updateSubtask({
|
|
id: taskId,
|
|
status: "in_progress",
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
const results: React.ReactNode[] = [];
|
|
for (const message of group.messages.filter(
|
|
(message) => message.type === "ai",
|
|
)) {
|
|
if (hasReasoning(message)) {
|
|
results.push(
|
|
<MessageGroup
|
|
key={"thinking-group-" + message.id}
|
|
messages={[message]}
|
|
isLoading={thread.isLoading}
|
|
/>,
|
|
);
|
|
}
|
|
results.push(
|
|
<div
|
|
key="subtask-count"
|
|
className="text-muted-foreground font-norma pt-2 text-sm"
|
|
>
|
|
{t.subtasks.executing(tasks.size)}
|
|
</div>,
|
|
);
|
|
const taskIds = message.tool_calls?.map(
|
|
(toolCall) => toolCall.id,
|
|
);
|
|
for (const taskId of taskIds ?? []) {
|
|
results.push(
|
|
<SubtaskCard
|
|
key={"task-group-" + taskId}
|
|
taskId={taskId!}
|
|
isLoading={thread.isLoading}
|
|
/>,
|
|
);
|
|
}
|
|
}
|
|
return (
|
|
<div
|
|
key={"subtask-group-" + group.id}
|
|
className="relative z-1 flex flex-col gap-2"
|
|
>
|
|
{results}
|
|
</div>
|
|
);
|
|
}
|
|
return (
|
|
<MessageGroup
|
|
key={"group-" + group.id}
|
|
messages={group.messages}
|
|
isLoading={thread.isLoading}
|
|
/>
|
|
);
|
|
})}
|
|
{thread.isLoading && messages.length > 0 && (
|
|
<StreamingIndicator className="my-4" />
|
|
)}
|
|
<div style={{ height: `${paddingBottom}px` }} />
|
|
</ConversationContent>
|
|
{/* showScrollToBottomButton */}
|
|
{showScrollToBottomButton && (
|
|
<ConversationScrollButton
|
|
className={cn(
|
|
"z-20 rounded-full border bg-ws-ffffff/90 shadow-sm backdrop-blur-sm",
|
|
scrollButtonClassName,
|
|
)}
|
|
title={t.chats.scrollToBottom}
|
|
/>
|
|
)}
|
|
</Conversation>
|
|
);
|
|
}
|