eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
8 lines (7 loc) • 329 B
TypeScript
import type { DockerCli } from "#execution/sandbox/bindings/docker-cli.js";
import type { InternalSandboxSession } from "#shared/sandbox-session.js";
export declare function createDockerInternalSession(input: {
readonly cli: DockerCli;
readonly containerName: string;
readonly id: string;
}): InternalSandboxSession;