sandbox-agent/foundry/packages/frontend/src/lib/workbench-runtime.mock.ts
2026-03-10 22:01:39 -07:00

11 lines
286 B
TypeScript

import {
createTaskWorkbenchClient,
type TaskWorkbenchClient,
} from "@sandbox-agent/foundry-client/workbench";
export function createWorkbenchRuntimeClient(workspaceId: string): TaskWorkbenchClient {
return createTaskWorkbenchClient({
mode: "mock",
workspaceId,
});
}