import { Sandbox } from '@e2b/code-interpreter'
// or import { Sandbox } from 'e2b'
// or import { Sandbox } from '@e2b/desktop'
const sbx = await Sandbox.create()
const execution = await sbx.commands.run('ls -l')
console.log(execution)
await sbx.kill()