Skip to content

Sandbox-client communication interface #646

@nkvch

Description

@nkvch

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    featureNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions