Open
Description
There are cases when code executed in sandbox needs to make something inside the app, e.g. create something in database, and currently it's not easily achievable.
Before switching to E2B we in our product used self hosted Jupyter notebooks and in Jupyter you can use comms to send messages to client, e.g.
comm.send({ "action": "create", "payload": {...} })
It would be nice to have a developer-friendly interface like that in e2b:
sbx = Sandbox()
sbx.on_message(lambda msg_type, payload: ...)
# or
async for msg in sbx.messages():
.....
Currently for lack of better way we are considering 2 options: either use some markers in stdout communication (prints basically) and capture them, or allow HTTP requests from sandbox to our server - but neither of 2 options seem very good for us.