Spaces:
Sleeping
Sleeping
File size: 14,485 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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 | import { customModelProvider } from "lib/ai/models";
import {
ConditionNodeData,
OutputNodeData,
LLMNodeData,
InputNodeData,
WorkflowNodeData,
ToolNodeData,
HttpNodeData,
TemplateNodeData,
OutputSchemaSourceKey,
} from "../workflow.interface";
import { WorkflowRuntimeState } from "./graph-store";
import {
convertToModelMessages,
generateObject,
generateText,
UIMessage,
} from "ai";
import { checkConditionBranch } from "../condition";
import {
convertTiptapJsonToAiMessage,
convertTiptapJsonToText,
} from "../shared.workflow";
import { jsonSchemaToZod } from "lib/json-schema-to-zod";
import { toAny } from "lib/utils";
import { AppError } from "lib/errors";
import { DefaultToolName } from "lib/ai/tools";
import {
exaSearchToolForWorkflow,
exaContentsToolForWorkflow,
} from "lib/ai/tools/web/web-search";
import { mcpClientsManager } from "lib/ai/mcp/mcp-manager";
/**
* Interface for node executor functions.
* Each node type implements this interface to define its execution behavior.
*
* @param input - Contains the node data and current workflow state
* @returns Object with optional input and output data to be stored in workflow state
*/
export type NodeExecutor<T extends WorkflowNodeData = any> = (input: {
node: T;
state: WorkflowRuntimeState;
}) =>
| Promise<{
input?: any; // Input data used by this node (for debugging/history)
output?: any; // Output data produced by this node (available to subsequent nodes)
}>
| {
input?: any;
output?: any;
};
/**
* Input Node Executor
* Entry point of the workflow - passes the initial query data to subsequent nodes
*/
export const inputNodeExecutor: NodeExecutor<InputNodeData> = ({ state }) => {
return {
output: state.query, // Pass through the initial workflow input
};
};
/**
* Output Node Executor
* Exit point of the workflow - collects data from specified source nodes
* and combines them into the final workflow result
*/
export const outputNodeExecutor: NodeExecutor<OutputNodeData> = ({
node,
state,
}) => {
return {
output: node.outputData.reduce((acc, cur) => {
// Collect data from each configured source node
acc[cur.key] = state.getOutput(cur.source!);
return acc;
}, {} as object),
};
};
/**
* LLM Node Executor
* Executes Large Language Model interactions with support for:
* - Multiple messages (system, user, assistant)
* - References to previous node outputs via mentions
* - Configurable model selection
*/
export const llmNodeExecutor: NodeExecutor<LLMNodeData> = async ({
node,
state,
}) => {
const { getUserId } = await import("@/app/api/chat/actions");
const { getUserPreferences } = await import("@/lib/user/server");
let userPreferences;
try {
const userId = await getUserId();
userPreferences = (await getUserPreferences(userId)) || undefined;
} catch (e) {
// If not in a request context, userPreferences will be undefined
}
const model = customModelProvider.getDynamicModel(node.model, userPreferences);
// Convert TipTap JSON messages to AI SDK format, resolving mentions to actual data
const messages: Omit<UIMessage, "id">[] = node.messages.map((message) =>
convertTiptapJsonToAiMessage({
role: message.role,
getOutput: state.getOutput, // Provides access to previous node outputs
json: message.content,
}),
);
const isTextResponse =
node.outputSchema.properties?.answer?.type === "string";
state.setInput(node.id, {
chatModel: node.model,
messages,
responseFormat: isTextResponse ? "text" : "object",
});
if (isTextResponse) {
const response = await generateText({
model,
messages: convertToModelMessages(messages),
});
return {
output: {
totalTokens: response.usage.totalTokens,
answer: response.text,
},
};
}
const response = await generateObject({
model,
messages: convertToModelMessages(messages),
schema: jsonSchemaToZod(node.outputSchema.properties.answer),
maxRetries: 3,
});
return {
output: {
totalTokens: response.usage.totalTokens,
answer: response.object,
},
};
};
/**
* Condition Node Executor
* Evaluates conditional logic and determines which branch(es) to execute next.
* Supports if-elseIf-else structure with AND/OR logical operators.
*/
export const conditionNodeExecutor: NodeExecutor<ConditionNodeData> = async ({
node,
state,
}) => {
// Evaluate conditions in order: if, then elseIf branches, finally else
const okBranch =
[node.branches.if, ...(node.branches.elseIf || [])].find((branch) => {
return checkConditionBranch(branch, state.getOutput);
}) || node.branches.else;
// Find the target nodes for the selected branch
const nextNodes = state.edges
.filter(
(edge) =>
edge.uiConfig.sourceHandle === okBranch.id && edge.source == node.id,
)
.map((edge) => state.nodes.find((node) => node.id === edge.target)!)
.filter(Boolean);
return {
output: {
type: okBranch.type, // Which branch was taken
branch: okBranch.id, // Branch identifier
nextNodes, // Nodes to execute next (used by dynamic edge resolution)
},
};
};
/**
* Tool Node Executor
* Executes external tools (primarily MCP tools) with optional LLM-generated parameters.
*
* Workflow:
* 1. If tool has parameter schema, use LLM to generate parameters from message
* 2. Execute the tool with generated or empty parameters
* 3. Return the tool execution result
*/
export const toolNodeExecutor: NodeExecutor<ToolNodeData> = async ({
node,
state,
}) => {
const result: {
input: any;
output: any;
} = {
input: undefined,
output: undefined,
};
if (!node.tool) throw new Error("Tool not found");
// Handle parameter generation
if (!node.tool?.parameterSchema) {
// Tool doesn't need parameters
result.input = {
parameter: undefined,
};
} else {
// Use LLM to generate tool parameters from the provided message
const prompt: string | undefined = node.message
? toAny(
convertTiptapJsonToAiMessage({
role: "user",
getOutput: state.getOutput, // Access to previous node outputs
json: node.message,
}),
).parts[0]?.text
: undefined;
const { getUserId } = await import("@/app/api/chat/actions");
const { getUserPreferences } = await import("@/lib/user/server");
let userPreferences;
try {
const userId = await getUserId();
userPreferences = (await getUserPreferences(userId)) || undefined;
} catch (e) {
// Ignore
}
const response = await generateText({
model: customModelProvider.getDynamicModel(node.model, userPreferences),
toolChoice: "required", // Force the model to call the tool
prompt: prompt || "",
tools: {
[node.tool.id]: {
description: node.tool.description,
inputSchema: jsonSchemaToZod(node.tool.parameterSchema),
},
},
});
result.input = {
parameter: response.toolCalls.find((call) => call.input)?.input,
prompt,
};
}
// Execute the tool based on its type
if (node.tool.type == "mcp-tool") {
const toolResult = (await mcpClientsManager.toolCall(
node.tool.serverId,
node.tool.id,
result.input.parameter,
)) as any;
if (toolResult.isError) {
throw new Error(
toolResult.error?.message ||
toolResult.error?.name ||
JSON.stringify(toolResult),
);
}
result.output = {
tool_result: toolResult,
};
} else if (node.tool.type == "app-tool") {
const executor =
node.tool.id == DefaultToolName.WebContent
? exaContentsToolForWorkflow.execute
: node.tool.id == DefaultToolName.WebSearch
? exaSearchToolForWorkflow.execute
: () => "Unknown tool";
const toolResult = await executor?.(result.input.parameter, {
messages: [],
toolCallId: "",
});
result.output = {
tool_result: toolResult,
};
} else {
// Placeholder for future tool types
result.output = {
tool_result: {
error: `Not implemented "${toAny(node.tool)?.type}"`,
},
};
}
return result;
};
/**
* Resolves HttpValue to actual string value
* Handles string literals and references to other node outputs
*/
function resolveHttpValue(
value: string | OutputSchemaSourceKey | undefined,
getOutput: WorkflowRuntimeState["getOutput"],
): string {
if (value === undefined) return "";
if (typeof value === "string") return value;
// It's an OutputSchemaSourceKey - resolve from node output
const output = getOutput(value);
if (output === undefined || output === null) return "";
if (typeof output === "string" || typeof output === "number") {
return output.toString();
}
// For objects/arrays, stringify them
return JSON.stringify(output);
}
/**
* HTTP Node Executor
* Performs HTTP requests to external services with configurable parameters.
*
* Features:
* - Support for all standard HTTP methods (GET, POST, PUT, DELETE, PATCH, HEAD)
* - Dynamic URL, headers, query parameters, and body with variable substitution
* - Configurable timeout
* - Comprehensive response data including status, headers, and body
*/
export const httpNodeExecutor: NodeExecutor<HttpNodeData> = async ({
node,
state,
}) => {
// Default timeout of 30 seconds
const timeout = node.timeout || 30000;
// Resolve URL with variable substitution
const url = resolveHttpValue(node.url, state.getOutput);
if (!url) {
throw new Error("HTTP node requires a URL");
}
// Build query parameters
const searchParams = new URLSearchParams();
for (const queryParam of node.query || []) {
if (queryParam.key && queryParam.value !== undefined) {
const value = resolveHttpValue(queryParam.value, state.getOutput);
if (value) {
searchParams.append(queryParam.key, value);
}
}
}
// Construct final URL with query parameters
const finalUrl = searchParams.toString()
? `${url}${url.includes("?") ? "&" : "?"}${searchParams.toString()}`
: url;
// Build headers
const headers: Record<string, string> = {};
for (const header of node.headers || []) {
if (header.key && header.value !== undefined) {
const value = resolveHttpValue(header.value, state.getOutput);
if (value) {
headers[header.key] = value;
}
}
}
// Build request body
let body: string | undefined;
if (node.body && ["POST", "PUT", "PATCH"].includes(node.method)) {
body = resolveHttpValue(node.body, state.getOutput);
// Set default content-type if not specified and body is present
if (body && !headers["Content-Type"] && !headers["content-type"]) {
// Try to detect JSON format
try {
JSON.parse(body);
headers["Content-Type"] = "application/json";
} catch {
headers["Content-Type"] = "text/plain";
}
}
}
const startTime = Date.now();
try {
// Create AbortController for timeout
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), timeout);
const response = await fetch(finalUrl, {
method: node.method,
headers,
body,
signal: controller.signal,
});
clearTimeout(timeoutId);
// Parse response body as string
let responseBody: string;
try {
responseBody = await response.text();
} catch {
// If parsing fails, return empty string
responseBody = "";
}
// Convert response headers to object
const responseHeaders: Record<string, string> = {};
response.headers.forEach((value, key) => {
responseHeaders[key] = value;
});
const duration = Date.now() - startTime;
const request = {
url: finalUrl,
method: node.method,
headers,
body,
timeout,
};
const responseData = {
status: response.status,
statusText: response.statusText,
ok: response.ok,
headers: responseHeaders,
body: responseBody,
duration,
size: response.headers.get("content-length")
? parseInt(response.headers.get("content-length")!)
: undefined,
};
if (!response.ok) {
state.setInput(node.id, {
request,
response: responseData,
});
throw new AppError(response.status.toString(), response.statusText);
}
return {
input: {
request,
},
output: {
response: responseData,
},
};
} catch (error: any) {
if (error instanceof AppError) {
throw error;
}
const duration = Date.now() - startTime;
// Handle different types of errors
let errorMessage = error.message;
let errorType = "unknown";
if (error.name === "AbortError") {
errorMessage = `Request timeout after ${timeout}ms`;
errorType = "timeout";
} else if (error.code === "ENOTFOUND") {
errorMessage = `DNS resolution failed for ${finalUrl}`;
errorType = "dns";
} else if (error.code === "ECONNREFUSED") {
errorMessage = `Connection refused to ${finalUrl}`;
errorType = "connection";
}
state.setInput(node.id, {
request: { url: finalUrl, method: node.method, headers, body, timeout },
response: {
status: 0,
statusText: errorMessage,
ok: false,
headers: {},
body: "",
duration,
error: {
type: errorType,
message: errorMessage,
},
},
});
throw error;
}
};
/**
* Template Node Executor
* Processes text templates with variable substitution using TipTap content.
*
* Features:
* - Variable substitution from previous node outputs
* - Support for mentions in template content
* - Simple text output for easy consumption by other nodes
*/
export const templateNodeExecutor: NodeExecutor<TemplateNodeData> = ({
node,
state,
}) => {
let text: string = "";
// Convert TipTap template content to text with variable substitution
if (node.template.type == "tiptap") {
text = convertTiptapJsonToText({
getOutput: state.getOutput, // Access to previous node outputs for variable substitution
json: node.template.tiptap,
});
}
return {
output: {
template: text,
},
};
};
|