the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use apiKey instead of accessToken for E2B

+3 -2
+3 -2
apps/modal-sandbox/src/providers/e2b/index.ts
··· 132 132 tags: [tag], 133 133 cpuCount: 4, 134 134 memoryMB: 4096, 135 + apiKey: options.e2bApiKey, 135 136 }); 136 137 const sandbox = await Sandbox.create(`${name}:${tag}`, { 137 - accessToken: options.e2bApiKey, 138 + apiKey: options.e2bApiKey, 138 139 }); 139 140 return new E2bSandbox(sandbox); 140 141 } ··· 145 146 throw new Error("E2B API KEY is required to get a sandbox"); 146 147 } 147 148 const sandbox = await Sandbox.connect(id, { 148 - accessToken: options?.e2bApiKey, 149 + apiKey: options?.e2bApiKey, 149 150 }); 150 151 return new E2bSandbox(sandbox); 151 152 } catch {