eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
12 lines (11 loc) • 496 B
TypeScript
/** Derives the one deterministic identity shared by subagent receipts and dispatch. */
export declare function createSubagentReceiptIdentity(input: {
readonly callId: string;
readonly parentSessionId: string;
readonly parentTurnId: string;
readonly subagentName: string;
readonly nodeId: string;
}): {
readonly identity: import("../../../subagents/handles/store.ts").AgentIdentity;
readonly operation: import("../../../subagents/handles/store.ts").StartOperation;
};