Delete this sandbox.
Call this when you're done using the sandbox to clean up resources.
delete(): Promise<void>const sandbox = await client.createSandbox("python-sandbox");
try {
await sandbox.run("echo hello");
} finally {
await sandbox.delete();
}