eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
6 lines (5 loc) • 395 B
TypeScript
import type { JsonValue } from "#shared/json.js";
import type { WorkflowToolContext } from "#tools/workflow-definition.js";
import type { AgentRouterInput } from "#execution/tools/agent-router.js";
/** Routes one task through the complete workflow agent metadata snapshot. */
export declare function executeAgentRouterTool(input: AgentRouterInput, ctx: WorkflowToolContext): Promise<JsonValue>;