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.

Remove hardcoded region and log error

+1 -2
+1 -2
apps/modal-sandbox/src/providers/hopx/index.ts
··· 135 135 const sandbox = await Sandbox.create({ 136 136 template: templateName, 137 137 apiKey: options.hopxApiKey, 138 - region: "us-east", 139 138 }); 140 139 return new HopxSandbox(sandbox); 141 140 } catch (error) { 142 141 consola.warn( 143 142 `Sandbox with template ${templateName} not found, creating a new one...`, 143 + error, 144 144 ); 145 145 146 146 template.runCmd( ··· 157 157 const sandbox = await Sandbox.create({ 158 158 template: templateName, 159 159 apiKey: options.hopxApiKey, 160 - region: "us-east", 161 160 }); 162 161 return new HopxSandbox(sandbox); 163 162 }