Spaces:
Sleeping
Sleeping
File size: 7,283 Bytes
05c5ed5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | "use client";
import {
ToolNodeData,
UINode,
WorkflowToolKey,
} from "lib/ai/workflow/workflow.interface";
import { memo, useEffect, useMemo } from "react";
import { InfoIcon, VariableIcon, WrenchIcon } from "lucide-react";
import { useEdges, useNodes, useReactFlow } from "@xyflow/react";
import { appStore } from "@/app/store";
import { WorkflowToolSelect } from "../workflow-tool-select";
import { isString, toAny } from "lib/utils";
import { Separator } from "ui/separator";
import { SelectModel } from "@/components/select-model";
import { OutputSchemaMentionInput } from "../output-schema-mention-input";
import { useWorkflowStore } from "@/app/store/workflow.store";
import { MCPIcon } from "ui/mcp-icon";
import { useTranslations } from "next-intl";
import { Tooltip, TooltipContent, TooltipTrigger } from "ui/tooltip";
import { useMcpList } from "@/hooks/queries/use-mcp-list";
import {
exaSearchSchema,
exaSearchTool,
exaContentsSchema,
exaContentsTool,
} from "lib/ai/tools/web/web-search";
import { DefaultToolName } from "lib/ai/tools";
export const ToolNodeDataConfig = memo(function ({
data,
}: {
data: ToolNodeData;
}) {
const t = useTranslations();
const { updateNodeData } = useReactFlow();
const nodes = useNodes() as UINode[];
const edges = useEdges();
const editable = useWorkflowStore((state) => {
return (
state.processIds.length === 0 &&
state.hasEditAccess &&
!state.workflow?.isPublished
);
});
const { data: mcpList } = useMcpList();
const toolList = useMemo<WorkflowToolKey[]>(() => {
const mcpTools: WorkflowToolKey[] = (mcpList || []).flatMap((mcp) => {
return mcp.toolInfo.map((tool) => {
return {
type: "mcp-tool",
serverId: mcp.id,
serverName: mcp.name,
id: tool.name,
description: tool.description,
parameterSchema: tool.inputSchema,
};
});
});
const defaultTools: WorkflowToolKey[] = [
{
type: "app-tool",
id: DefaultToolName.WebSearch,
description: exaSearchTool.description!,
parameterSchema: exaSearchSchema,
},
{
type: "app-tool",
id: DefaultToolName.WebContent,
description: exaContentsTool.description!,
parameterSchema: exaContentsSchema,
},
];
return [...mcpTools, ...defaultTools];
}, [mcpList]);
useEffect(() => {
if (!data.model) {
updateNodeData(data.id, {
model: appStore.getState().chatModel!,
});
}
}, []);
return (
<div className="flex flex-col gap-2 text-sm px-4">
<p className="text-sm font-semibold">{t("Common.tool")}</p>
<WorkflowToolSelect
tools={toolList}
onChange={(tool) => {
updateNodeData(data.id, { tool });
}}
tool={data.tool}
/>
<p className="text-sm font-semibold my-2">
{t("Workflow.descriptionAndSchema")}
</p>
{data.tool?.description ||
Object.keys(data.tool?.parameterSchema?.properties || {}).length > 0 ? (
<div className="text-xs p-2 bg-background border rounded-md">
<p>{data.tool?.description}</p>
{Object.keys(data.tool?.parameterSchema?.properties || {}).length >
0 && (
<div className="flex items-center flex-wrap gap-1 mt-2">
{Object.keys(data.tool?.parameterSchema?.properties || {}).map(
(key) => {
const isRequired =
data.tool?.parameterSchema?.required?.includes(key);
return (
<div
key={key}
className="mb-0.5 flex items-center text-xs px-1.5 py-0.5 bg-secondary rounded-md"
>
<VariableIcon className="size-3.5 text-blue-500" />
{isRequired && (
<span className="text-destructive">*</span>
)}
<span className="font-semibold">{key}</span>
<span className="text-muted-foreground ml-2">
{isString(data.tool?.parameterSchema?.properties?.[key])
? data.tool?.parameterSchema?.properties?.[key]
: toAny(data.tool?.parameterSchema?.properties?.[key])
?.type || "unknown"}
</span>
</div>
);
},
)}
</div>
)}
</div>
) : (
<div className="text-xs text-muted-foreground text-center py-2 border rounded-md">
{t("Workflow.noDescriptionAndSchema")}
</div>
)}
<Separator className="my-4" />
<div className="flex items-center gap-2">
<p className="text-sm font-semibold my-2">Message</p>
<SelectModel
currentModel={data.model}
onSelect={(model) => {
updateNodeData(data.id, {
model,
});
}}
/>
<Tooltip>
<TooltipTrigger asChild>
<div className="p-1 hover:bg-secondary rounded cursor-pointer">
<InfoIcon className="size-3" />
</div>
</TooltipTrigger>
<TooltipContent className="p-4 whitespace-pre-wrap">
{t("Workflow.toolDescription")}
</TooltipContent>
</Tooltip>
</div>
<div className="w-full bg-secondary rounded-md p-2 min-h-20">
<OutputSchemaMentionInput
currentNodeId={data.id}
nodes={nodes}
edges={edges}
content={data.message}
editable={editable}
onChange={(content) => {
updateNodeData(data.id, {
message: content,
});
}}
/>
</div>
</div>
);
});
ToolNodeDataConfig.displayName = "ToolNodeDataConfig";
export const ToolNodeStack = memo(function ({ data }: { data: ToolNodeData }) {
const t = useTranslations();
const selectedToolLabel = useMemo(() => {
if (!data.tool)
return (
<>
<WrenchIcon className="size-3" />
<span className="text-muted-foreground">
{t("Common.selectTool")}
</span>
</>
);
if (data.tool.type == "mcp-tool") {
return (
<>
<MCPIcon className="size-3" />
<span className="font-bold">{data.tool.serverName}</span>
<div className="bg-primary text-primary-foreground px-2 rounded-md truncate">
{data.tool.id}
</div>
</>
);
}
return (
<>
<WrenchIcon className="size-3" />
<span className="font-semibold truncate">{data.tool.id}</span>
</>
);
}, [data.tool]);
return (
<div className="flex flex-col gap-1 px-4 mt-4">
{!data.tool ? (
<div className="text-xs text-muted-foreground text-center py-2 border rounded-md">
{t("Common.noResults")}
</div>
) : (
<div className="border bg-input text-[10px] rounded px-2 py-1 flex items-center gap-1">
{selectedToolLabel}
</div>
)}
</div>
);
});
ToolNodeStack.displayName = "ToolNodeStack";
|