mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-17 12:04:15 +00:00
11 lines
286 B
TypeScript
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,
|
|
});
|
|
}
|