UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

10 lines (9 loc) 728 B
export declare const WORKFLOW_QUEUE_NAMESPACE_ENV = "WORKFLOW_QUEUE_NAMESPACE"; /** Derives a stable Workflow queue namespace from an eve agent's unique name. */ export declare function deriveEveWorkflowQueueNamespace(agentName: string): string; /** Derives the queue prefix consumed by an eve agent's workflow handler. */ export declare function deriveEveWorkflowQueuePrefix(agentName: string): string; /** Derives the queue topic registered for an eve agent's workflow handler. */ export declare function deriveEveWorkflowQueueTopic(agentName: string): string; /** Installs the agent-scoped namespace used by Workflow runtime operations. */ export declare function installEveWorkflowQueueNamespace(agentName: string): string;