eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
9 lines (8 loc) • 487 B
TypeScript
import type { RuntimeDiskCompiledArtifactsSource } from "#runtime/compiled-artifacts-source.js";
interface DevelopmentGenerationContext {
readonly generationId: string;
readonly source: RuntimeDiskCompiledArtifactsSource;
}
export declare function getDevelopmentWorkflowGeneration(): DevelopmentGenerationContext | undefined;
export declare function withDevelopmentWorkflowGeneration<T>(context: DevelopmentGenerationContext, operation: () => Promise<T>): Promise<T>;
export {};