UNPKG

@tanstack/ai-sandbox

Version:

Provider-agnostic sandbox layer for TanStack AI — run harness adapters inside isolated sandboxes (defineSandbox, defineWorkspace, withSandbox) with a uniform SandboxHandle, workspace bootstrap, policy, and resumable lifecycle.

5 lines (4 loc) 288 B
import { RunStore } from '@tanstack/ai'; /** Factory for the store under test. A fresh one per case keeps them isolated. */ export type MakeRunStore = () => RunStore | Promise<RunStore>; export declare function runDurableRunFieldsConformance(name: string, makeStore: MakeRunStore): void;