/** * Sandbox — Barrel Export * * Zero-Trust Computation Delegation via isolated-vm. * Allows LLMs to send JavaScript functions to be executed * in a sealed V8 isolate on the client's machine. * * The `isolated-vm` package is an optional peerDependency. * The framework works fully without it — sandbox is a power add-on. */ export { SandboxEngine, resetIvmCache } from './SandboxEngine.js'; export type { SandboxConfig, SandboxResult, SandboxErrorCode } from './SandboxEngine.js'; export { validateSandboxCode } from './SandboxGuard.js'; export type { GuardResult } from './SandboxGuard.js'; /** * System instruction auto-injected into the tool description * when `.sandboxed()` is used. Teaches the LLM how to send * JavaScript functions for server-side computation delegation. * * @internal */ export declare const SANDBOX_SYSTEM_INSTRUCTION: string; //# sourceMappingURL=index.d.ts.map