eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
11 lines (10 loc) • 396 B
TypeScript
import type { RunInput } from "#channel/types.js";
import { ContextContainer } from "#context/container.js";
import { type CompiledBundle } from "#runtime/sessions/runtime-context-keys.js";
/**
* Builds the bootstrap {@link ContextContainer} for one run.
*/
export declare function buildRunContext(input: {
readonly bundle: CompiledBundle;
readonly run: RunInput;
}): ContextContainer;