eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
11 lines (10 loc) • 631 B
TypeScript
import type { CompiledChannelDefinition, CompiledChannelRoutePlan } from "#compiler/manifest.js";
import type { AgentModuleBinding, AgentSourceDescriptor } from "#compiler/source-graph.js";
import { type CompilerDiagnostic } from "#compiler/diagnostics.js";
export declare function createCompiledChannelRoutePlan(input: {
readonly bindings: Readonly<Record<string, AgentModuleBinding>>;
readonly channels: readonly CompiledChannelDefinition[];
readonly diagnostics?: CompilerDiagnostic[];
readonly nodeId: string;
readonly sources: Readonly<Record<string, AgentSourceDescriptor>>;
}): CompiledChannelRoutePlan;