E2B Changelog

E2B Changelog

E2B Changelog

May 10, 2024

Week #41

New example: Anthropic code interpreter in JS/TS

We gave Claude a full code interpreter capabilities with just a few lines of code, using our Code Interpreter SDK. Features:

  • Streaming

  • Internet access

  • Python & JS SDK.

See the complete code in our Cookbook and if you have an idea for your own project with E2B, please open an issue.

Fixed bugs and improvements


See the public roadmap with planned features here.

May 3, 2024

Code Interpreter SDK

We released the Code Interpreter SDK. It was made as a building block for AI engineers:

  • Works with any LLM and AI framework

  • Supports streaming content like charts and stdout, stderr

  • Python & JS SDK.

The SDK is 100% open source.


See our Cookbook for the examples of what to build with the Code Interpreter SDK.

Fixed bugs and improvements

See the public roadmap with planned features here.

April 28, 2024

Hello world examples

We added "Hello World" guides to our documentation showing how to add code interpreting to LLMs using our Code Interpreter SDK.

You can find the complete list of examples in our Cookbook.

Fixed bugs and improvements

See the public roadmap with planned features here.

April 12, 2024

Week #37

April 7, 2024

Anthropic tool calling with code interpreter

New example: Anthropic tool calling with code interpreter 💻

We gave the new Anthropic tool calling support a full code interpreter capabilities. We created a Python notebook showing how to use E2B to give Claude model a code interpreter with just a few lines of code. Features:

  • Code runs in Jupyter notebook

  • Streaming

  • Customize libraries

  • Internet access

  • Python & JS SDK.

See the complete code in our Cookbook and if you have an idea for your own project with E2B, please e-mail us at hello@e2b.dev.

Other fixed bugs and improvements

Product roadmap

See the public roadmap with planned features here.

March 30, 2024

Local sandbox template builds

Build of docker image for a new template is now done on user's local machine instead of E2B's cloud. Here's how this new approach improves the DX:

  • Allows referencing private docker images

  • Manages build cache

  • Higher iteration speed

  • Prevents uploading node_modules or venv by accident

  • Option to use a 3rd party service like GitHub Actions to build the sandbox template.

To build a new template users have to upgrade their CLI to the newest version:

npm install -g @e2b/cli@latest

Find more about building your custom templates here.

Other fixed bugs and improvements

Product roadmap

See the public roadmap with planned features here.

March 17, 2024

Releasing public roadmap on GitHub

Product roadmap

We released a public roadmap on GitHub to share features and bugs that we are working on. If there is anything you would like to see us add, please open an issue on our GitHub.

Multiple consul and nomad servers

We added an option to manage multiple Consul and Nomad servers simultaneously.

Other fixed bugs and improvements

March 8, 2024

Week #32

This week we were working on a new CodeInterpreter API. It's still in its experimental phase, but we love to hear your feedback. We added support for multiple Nomad and Consul servers.

Other fixed bugs and improvements

March 3, 2024

Faster sandboxes and custom CPU and RAM

Up to 5x faster sandboxes

We implemented huge pages - a feature that allows customers to use 2 MiB chunks of memory instead of 4 KiB chunks, which are the default.

Huge pages are now enabled by default in all newly created custom sandboxes. If a user has an existing custom sandbox, they must rebuild it by calling e2b build in the directory with the e2b.toml file.

Custom CPU And RAM

We allowed Pro users to customize the number of vCPUs and RAM size for the sandboxes. The sandbox compute now also has a dedicated page in our documentation.

Pro users can now choose:

  • 1 - 8 vCPUs

  • 128 MiB - 8 GiB RAM

Other fixed bugs and improvements

Getting started with sandboxes

If you want to try the sandboxes, start here and let us know at hello@e2b.dev if you need any support.

February 23, 2024

Week #30

We enabled billing on E2B. Read more here about what we charge for and how to monitor your usage. We added the Your Usage page to our Docs to monitor your spending.

Fixed bugs and improvements

February 16, 2024

Connect cloud storage

You can now connect your storage buckets to the sandbox. Connecting your cloud buckets is useful for filesystem persistence or giving the sandbox access to your data. This is achieved via the FUSE protocol which is supported by all popular cloud buckets: Amazon S3, Google Cloud Storage, and Cloudfare R2.

Get started here.

Fixed bugs and improvements

February 9, 2024

Week #28

February 3, 2024

Week #27

January 19, 2024

Week #25

This week, we've been working on improving the SDK performance.

We completed the necessary steps towards open-sourcing our infrastructure.

One of our contributors finished the JS/TS version of the AI GitHub Developer.

January 12, 2024

Week #24

We've been working on a major update of our SDKs, and improving our infrastructure.

We also fixed the following issues reported by users:

January 5, 2023

Week #23

Product

We were implementing the billing system, and improving the performance of our sandboxes.

New bounties

New bounties (contributions for a financial reward) were opened this week:

See the complete info on the bounty program here. If you to discuss anything, contact us in the Bounties channel on our Discord.

Blog post about AI agents

In the newest blog post, we interviewed AI founders and developers. They shared their predictions for AI agents in 2024, their favorite AI product of 2023, and a new year's AI resolution.

December 29, 2023

Week #22

This week, we opened a new bounty for our developer community.

The bounty is offered for a JavaScript/TypeScript version of our existing Python AI GitHub developer. The developer serves as a simple demonstration of using E2B sandboxes.

To apply for this bounty or other bounties, write us in the Bounties channel on our Discord.

December 24, 2023

AI GitHub Developer demo

This further worked on our SDK and built a cookbook example of an AI developer to demonstrate the power of E2B sandboxes “in terrain”.

Improvements

We fixed bugs and improved the following:

  • Accelerated the sandbox spawning time

  • Fixed Python code output buffering.

  • Moved start command handling in Python SDK to a thread.

AI GitHub Developer demo

We released an open-source AI assistant that can create pull requests on any repository. It is built with OpenAI’s Assistants API and E2B sandboxes.
The developer Can clone the repo, edit, read & write files, and is controllable from the terminal.

See the complete code and demo video. The AI developer is not meant as a full product, but rather as an example that can inspire other developers.
We published a step-by-step guide, so check it out if you want to build something similar.


December 16, 2023

Week #20

We dedicated this week to further improvements in the E2B SDK and infrastructure.

December 9, 2023

Week #19

This week we continued working on the E2B SDK and infrastructure.

December 1, 2023

Week #18

This week we worked on fixing bugs in the E2B SDK and improving reliability.

We changed the default disk space to 1 GB for free users.


Support 

Please reach out to us if you need help with E2B.

If you are on X (Twitter), we would appreciate if you support our work there.

November 24, 2023

Week #17

This week we made improvements in our SDK, added new features for sandboxes, and fixed bugs.

Start command

Custom sandboxes now allow you to specify a command that will be running when a sandbox is spawned. This way you can run a command that will start your app or any specific process.

When building a sandbox template, you can specify the start command using the -c option.

e2b build -c "npm start"

Delete sandbox template

We released an option for deleting sandbox templates.

e2b delete

November 17, 2023

Sandbox for OpenAI's Assistants

This week we are announcing native support for the new OpenAI's Assistants API. That means you can now define actions for the AI assistant and we will automatically execute them inside the E2B Sandbox.

Combined with the custom sandboxes feature, this allows you to create powerful AI assistants with tools completely predefined by you.

To try the OpenAI Assistants with E2B, start here. You can follow our guide in Python or JavaScript.

See the complete code in the E2B Cookbook.

New feature: Reconnect to running sandbox

This week we launched a new experimental SDK feature. If you want to keep the sandbox alive after disconnecting from it, you can now explicitly say how long you want to keep it alive. You can then reconnect to the sandbox later.

Read more here.

This feature is available in versions:

  • JS: 0.10.0

  • Python: 0.11.0

For implementation assistance or feedback, contact us at hello@e2b.dev or on our Discord.

Docs and SDK improvements

We also made a few updates to our SDK and documentation.

Docs
  • Shorter time for code snippets to be ready for running (using custom sandbox)

JS SDK
  • Pass sandbox id directly

  • Pass command directly to process

Both SDKs
  • Add StartAndWait for process.

November 12, 2023

Custom Sandboxes

This week we released the Custom Sandboxes for AI-powered apps and agents.

The E2B Sandbox is an isolated long-running cloud environment where you can let any LLM use tools exactly like you would do locally.

You can now create a Custom Sandbox for any use case, e.g. your own AI coding copilot, data analyst, or Al Browser. The Custom Sandbox allows you to spawn a sandbox with an environment predefined by you and then control it with the E2B SDK.

We also offer two premade sandboxes (Default Sandbox and Code Interpreter Sandbox).

Example of running Python code with the E2B Sandbox


How to start with Custom Sandboxes:

  1. Sign in with your GitHub account to get your free E2B API key.

  2. Install the E2B SDK, either in JS or Python.

  3. Create your custom sandbox (you can follow our guide) or try out one of our premade sandboxes.


Support 

If you are on X (Twitter), we would appreciate if you support our work there.

November 4, 2023

Week #14

We’re releasing a private beta of E2B Custom Sandbox

If you want to test them, please contact vasek@e2b.dev or the @e2b-team on our Discord.

Custom Sandboxes in private beta

LLM Sandbox is an isolated cloud environment for LLMs with support for long-running sessions.

You can customize sandboxes by creating a Sandbox Template, which is just a simple Dockerfile. This way, you can preinstall any needed libraries and packages, or prepare any files you need. Then you can simply control your Custom Sandbox with the E2B SDK.





October 27, 2023

LangChain Integration of Data Analysis Sandbox

This week, we announced the official E2B integration into LangChain and created a guide for trying out the E2B Data Analysis Sandbox with LangChain.

LangChain integration

E2B is now available as a tool on LangChain. The E2B LLM Sandbox is ideal for building your own AI Data Analysts and Code Interpreters.

A big advantage of the E2B Sandbox is a safe code execution - allowing for example installing packages dynamically, generating charts, or file upload & download.

Bug fixes

  • Fix SDK browser compatibility

  • Fix installing system packages inside Sandbox

Guides and examples

We wrote a tutorial for using E2B with LangChain to build your own AI data analyst.

We put together more examples of using E2B, which are now shared within the E2B Discord community. 

🎃 Happy Halloween hacking!

October 20, 2023

Week #12

This week, we fixed various bugs in our SDK and worked on our infrastructure.

New design and communication

We made our docs a bit nicer and better structured. See how to get started with E2B, a useful step-by-step example,  or an overview of the sandbox API. Check out our updated landing page. How do you like the new E2B logo?

Read about AI agents’ SDKs and frameworks

We shared an update on key topics of developing LLM agents and apps, covering for example security, privacy, memory management, frameworks, and developers' perspectives.

You can read it also on Medium or go through the frameworks and SDKs here.


October 13, 2023

Week #11

This week, we continued improving the E2B sandboxed environments and the Superagent integration of E2B. To try Superagent with E2B, create a Code interpreter API and then select it for your agent to use.

Additionally, we worked on the backend for building your custom Advanced Data Analysis/Code Interpreter, so stay tuned.

We published more content and expanded our blog to Medium. You can read the newest AutoGen tutorial for code-executing agents.


If you haven’t done it, try out our SDK here and tell us how you liked it via Discord or by tagging @e2b_dev on Twitter. 

October 6, 2023

Superagent integration

  • E2B is now integrated into Superagent, meaning there is added support for a Code Execution feature. You can try it here.

  • This integration allows the AI agents to actually run code in a sandboxed environment, which helps for example with creating charts, doing requests, or analyzing files.

  • Join the Superagent Discord to stay updated and discuss your creations.

The code execution API in Superagent is still in its alpha version, as we are still working on improvements. We are very grateful for your feedback - let us know on Discord or contact our CEO at vasek@e2b.dev if you have any questions.

More E2B updates

  • We updated the E2B SDK - you can now set it on stdout, on stderr, and on exit for the whole session.

September 29, 2023

A way to run LLM-generated code in sandboxed environments

This week, we released a simple way to run code generated by LLMs in the cloud:

  1. Import e2b

  2. Select runtime and pass LLM-generated code

  3. Run code in a sandboxed environment

  4. Get stdout and stderr

This way, developers of AI agents and apps don’t need to handle any infrastructure.

Read more in our documentation and let us know on Discord or contact our CEO at vasek@e2b.dev if you have any questions.

SDK Bug Fixes & Improvements

  • You don’t have to pass API key when starting session if you have the E2B_API_KEY env variable set

  • Python SDK now supports both Pydantic v1 and v2

  • You can use ~ and relative paths in the filesystem module

  • You can set the working directory for the whole playground session via the cwd argument

  • You can pass environment variables to the playground via the envVars and env_vars arguments for each SDK respectively

  • Users can now use sudo in the playground properly

  • Fixed user permissions inside the playground

  • Fixed .bashrc/.profile not being loaded inside the playground

  • Fixed the incorrect user’s home directory in the playground

September 22, 2023

Week #08

This week we released a new version of our SDK, added examples of use cases, and continued working on the infrastructure and custom environments.

New methods

  1. Write bytes

    • Writing bytes to a file in our playground allows you to upload binary files like images, audio files, or video files

  2. Read bytes

    • Reading bytes from a file inside our playground allows you to download binary files like images, audio files, or video files

Added examples

We added runnable code snippets for the use case examples for AI agents to our documentation:

  1. Executing code

  2. Cloning GitHub repo & installing deps

  3. Running shell commands

All use cases are available in Python and JS.

September 15, 2023

Week #07

We continued working on the E2B infrastructure and made several smaller improvements in our docs. If you want to stay in touch, please join our Discord, where we publish updates in real time.

Documentation updates

  • You can now run code samples in Python and JS directly in the docs 



  • We added an example of how to run multiple processes with the SDK to our docs

  • We made our docs easier to use by highlighting relevant parts

New insights about agents

September 10, 2023

Week #06

This week we updated our infrastructure and SDK and worked on the E2B docs.

Infrastructure

  • Worked on the custom playgrounds and CLI for managing the AI playgrounds

Updates in SDK

  • Improved speed of starting playgrounds in the Python SDK

  • Allowed users to set timeouts when using playgrounds in JS SDK to limit the maximum time playground methods can run

  • Added logging to the JS SDK

Documentation

  • Worked on improving user experience in the documentation, so users can quickly try E2B SDK right from their browser

September 1, 2023

Cloud playgrounds for AI copilots

This week we launched AI Playgrounds, supporting Python and JS/TS. 

It is a sandboxed cloud environment where an AI agent or copilot can freely run code, use a filesystem, use a headless browser, and more.

Try the AI playgrounds here: https://e2b.dev/docs.

Every playground has its own URL, which allows your agent for example to start a web app. AI playgrounds are especially useful for coding copilots and agents. They can easily run linters, formatters, or debug code and feed all this information back to LLM to make the next iteration better.

Quality of life improvements

  • An API key is now required for our SDK (get your API key here)

  • Added timeouts to asynchronous methods in our SDK

  • Improved Python SDK debug logging

  • Improved internal overview of the usage of our infrastructure

  • Added periodic end to end test of our infra via calling SDKs

August 25, 2023

Improved SDK & UX

This week, we worked on the following:

SDK

  • Improved the reliability of our SDK and fixed bugs regarding thread and WebSocket communication

  • Brought both the JavaScript SDK and Python SDK to parity

  • We improved our release process in our monorepo

Documentation

UX improvement

Docs, changelog, and blog are now accessible through e2b.dev/docs, e2b.dev/blog, and e2b.dev/changelog instead of subdomains. 

Community

We talked with the founders of Superagent and Aomni about LLM agents' orchestration, debugging, tracing, and monitoring. Read the published interviews on our blog.

We hosted a community event in Prague where local startups talked about developer tools and AI.

August 18, 2023

Documentation & bug fixes in SDK

We released new documentation for the E2B SDK that helps you with getting started.

With a single line of our SDK, you can give your AI agent a sandboxed cloud environment where your agent can do any of the following (and more!):

  • Run any code

  • Run any terminal command

  • Install dependencies and programs

  • Use filesystem

  • Upload and download files

  • Access the internet

  • Start a web server that's accessible from the internet

  • Clone git repositories

  • Start any process (even long-running such as a database)

The new docs help you with installation and basic usage and examples are to be added soon. We have fixed reliability-related issues in the SDK.

We’ve been iterating with our early users and fixed a bunch of critical bugs.

If you want early access to the SDK, join our Discord and send us a message!

Agent Protocol Documentation

We put the Agent Protocol on a dedicated website with a nice domain and proper documentation. 

The documentation goes deeper into the incentives of the protocol, guides for adoption, and the details of how the protocol works.


Discuss the updates on our Discord, and if you want to appreciate our work, star our repositories on GitHub.

August 11, 2023

E2B SDK

This week, we have for you an early access version of the E2B SDK.

The E2B REST API gives AI agents their own sandboxed cloud environment. Agents can use these environments to run code, terminal commands, long-running tasks like databases, start servers, and upload and download files.

You can run pip install e2b to get our SDK.

The E2B SDK is available in Python and we are finalizing a JavaScript/TypeScript version. See the Python SDK also in PyPi or go through the examples.

We recently tried out our API in the e2b plugin for ChatGPT which you can check out if you have developer access to ChatGPT plugins.

Next on our roadmap

  • Make the API generally available

  • Integrate the API and the protocol into popular agent-building frameworks

Contributors our welcome, so in case you are interested, just do a pull request on our GitHub, or discuss more info on our Discord.

August 4, 2023

ChatGPT plugin

The e2b ChatGPT Plugin gives your ChatGPT access to a full cloud environment that is sandboxed and running on e2b infrastructure.

We’ve built these cloud environments to be used specifically by AI Agents. With the plugin, you can accomplish for instance deploying websites, managing databases, executing shell commands, or installing programs via the terminal.

Try out the Plugin here and tell us how you liked it via Discord or by tagging @e2b_dev on Twitter. Contributors and beta testers are welcome.

Agent Protocol Update

We did an overhaul of the Agent Protocol repository. Main updates include:

  • Better communication of incentives, roadmap, and usage

  • RFC template

  • Better code examples 

  • New JS SDK

  • New agent-protocol CLI to check compliance with the spec.

The protocol serves as a common interface for interacting with any agent. It is techstack-agnostic and open-source.

July 2, 2023

Agents in cloud

We're now a few months into building e2b, which means we will be sharing weekly updates. Here's some news we think you'll love in this release.

Get your own instance of smol developer

This week, we have launched a smol developer - your own personal junior developer which you can deploy via e2b. You can connect the developer with three simple steps.

Let us know how you like the smol developer.


June 16, 2023

Protocol and smol updates

Agent Protocol

We have made first steps in developing the Agent Protocol.

The protocol defines an interface for interacting with your agent. Adopting the protocol makes your agent automatically deployable to the e2b platform.

Our goal is to make this protocol open and usable in the whole agent field. This is a collaborative project. We're working on it with the most popular open-source agents, e.g., Auto-GPT, smol developer, or babyagi.

Objectives:

  • Common endpoints to communicate with an agent - "start", "step", "stop" for starters. More will come, especially around debugging, tracing, and monitoring

  • Tech-stack agnostic - no specific framework required - you can adopt this without using the rest of SDK

  • Great DX - easy to adopt and implement - no need to rewrite your existing agent

  • Open - any agent builder can implement this and instantly become compatible with any platform supporting this protocol

If you like the protocol, please appreciate the GitHub repo with a star. Contributors are welcome.

Smol Developer Update

With more than 1500 smol developer pull requests, we hit OpenAI API rate limits. We consequently added an option to pass your own OpenAI key in case e2b is hitting OpenAI's rate limits.

Additionally, you can now select which OpenAI model you want to use with smol developer when using your own OpenAI key. Try the updated smol developer here.


May 10, 2024

Week #41

New example: Anthropic code interpreter in JS/TS

We gave Claude a full code interpreter capabilities with just a few lines of code, using our Code Interpreter SDK. Features:

  • Streaming

  • Internet access

  • Python & JS SDK.

See the complete code in our Cookbook and if you have an idea for your own project with E2B, please open an issue.

Fixed bugs and improvements


See the public roadmap with planned features here.

May 3, 2024

Code Interpreter SDK

We released the Code Interpreter SDK. It was made as a building block for AI engineers:

  • Works with any LLM and AI framework

  • Supports streaming content like charts and stdout, stderr

  • Python & JS SDK.

The SDK is 100% open source.


See our Cookbook for the examples of what to build with the Code Interpreter SDK.

Fixed bugs and improvements

See the public roadmap with planned features here.

April 28, 2024

Hello world examples

We added "Hello World" guides to our documentation showing how to add code interpreting to LLMs using our Code Interpreter SDK.

You can find the complete list of examples in our Cookbook.

Fixed bugs and improvements

See the public roadmap with planned features here.

April 12, 2024

Week #37

April 7, 2024

Anthropic tool calling with code interpreter

New example: Anthropic tool calling with code interpreter 💻

We gave the new Anthropic tool calling support a full code interpreter capabilities. We created a Python notebook showing how to use E2B to give Claude model a code interpreter with just a few lines of code. Features:

  • Code runs in Jupyter notebook

  • Streaming

  • Customize libraries

  • Internet access

  • Python & JS SDK.

See the complete code in our Cookbook and if you have an idea for your own project with E2B, please e-mail us at hello@e2b.dev.

Other fixed bugs and improvements

Product roadmap

See the public roadmap with planned features here.

March 30, 2024

Local sandbox template builds

Build of docker image for a new template is now done on user's local machine instead of E2B's cloud. Here's how this new approach improves the DX:

  • Allows referencing private docker images

  • Manages build cache

  • Higher iteration speed

  • Prevents uploading node_modules or venv by accident

  • Option to use a 3rd party service like GitHub Actions to build the sandbox template.

To build a new template users have to upgrade their CLI to the newest version:

npm install -g @e2b/cli@latest

Find more about building your custom templates here.

Other fixed bugs and improvements

Product roadmap

See the public roadmap with planned features here.

March 17, 2024

Releasing public roadmap on GitHub

Product roadmap

We released a public roadmap on GitHub to share features and bugs that we are working on. If there is anything you would like to see us add, please open an issue on our GitHub.

Multiple consul and nomad servers

We added an option to manage multiple Consul and Nomad servers simultaneously.

Other fixed bugs and improvements

March 8, 2024

Week #32

This week we were working on a new CodeInterpreter API. It's still in its experimental phase, but we love to hear your feedback. We added support for multiple Nomad and Consul servers.

Other fixed bugs and improvements

March 3, 2024

Faster sandboxes and custom CPU and RAM

Up to 5x faster sandboxes

We implemented huge pages - a feature that allows customers to use 2 MiB chunks of memory instead of 4 KiB chunks, which are the default.

Huge pages are now enabled by default in all newly created custom sandboxes. If a user has an existing custom sandbox, they must rebuild it by calling e2b build in the directory with the e2b.toml file.

Custom CPU And RAM

We allowed Pro users to customize the number of vCPUs and RAM size for the sandboxes. The sandbox compute now also has a dedicated page in our documentation.

Pro users can now choose:

  • 1 - 8 vCPUs

  • 128 MiB - 8 GiB RAM

Other fixed bugs and improvements

Getting started with sandboxes

If you want to try the sandboxes, start here and let us know at hello@e2b.dev if you need any support.

February 23, 2024

Week #30

We enabled billing on E2B. Read more here about what we charge for and how to monitor your usage. We added the Your Usage page to our Docs to monitor your spending.

Fixed bugs and improvements

February 16, 2024

Connect cloud storage

You can now connect your storage buckets to the sandbox. Connecting your cloud buckets is useful for filesystem persistence or giving the sandbox access to your data. This is achieved via the FUSE protocol which is supported by all popular cloud buckets: Amazon S3, Google Cloud Storage, and Cloudfare R2.

Get started here.

Fixed bugs and improvements

February 9, 2024

Week #28

February 3, 2024

Week #27

January 19, 2024

Week #25

This week, we've been working on improving the SDK performance.

We completed the necessary steps towards open-sourcing our infrastructure.

One of our contributors finished the JS/TS version of the AI GitHub Developer.

January 12, 2024

Week #24

We've been working on a major update of our SDKs, and improving our infrastructure.

We also fixed the following issues reported by users:

January 5, 2023

Week #23

Product

We were implementing the billing system, and improving the performance of our sandboxes.

New bounties

New bounties (contributions for a financial reward) were opened this week:

See the complete info on the bounty program here. If you to discuss anything, contact us in the Bounties channel on our Discord.

Blog post about AI agents

In the newest blog post, we interviewed AI founders and developers. They shared their predictions for AI agents in 2024, their favorite AI product of 2023, and a new year's AI resolution.

December 29, 2023

Week #22

This week, we opened a new bounty for our developer community.

The bounty is offered for a JavaScript/TypeScript version of our existing Python AI GitHub developer. The developer serves as a simple demonstration of using E2B sandboxes.

To apply for this bounty or other bounties, write us in the Bounties channel on our Discord.

December 24, 2023

AI GitHub Developer demo

This further worked on our SDK and built a cookbook example of an AI developer to demonstrate the power of E2B sandboxes “in terrain”.

Improvements

We fixed bugs and improved the following:

  • Accelerated the sandbox spawning time

  • Fixed Python code output buffering.

  • Moved start command handling in Python SDK to a thread.

AI GitHub Developer demo

We released an open-source AI assistant that can create pull requests on any repository. It is built with OpenAI’s Assistants API and E2B sandboxes.
The developer Can clone the repo, edit, read & write files, and is controllable from the terminal.

See the complete code and demo video. The AI developer is not meant as a full product, but rather as an example that can inspire other developers.
We published a step-by-step guide, so check it out if you want to build something similar.


December 16, 2023

Week #20

We dedicated this week to further improvements in the E2B SDK and infrastructure.

December 9, 2023

Week #19

This week we continued working on the E2B SDK and infrastructure.

December 1, 2023

Week #18

This week we worked on fixing bugs in the E2B SDK and improving reliability.

We changed the default disk space to 1 GB for free users.


Support 

Please reach out to us if you need help with E2B.

If you are on X (Twitter), we would appreciate if you support our work there.

November 24, 2023

Week #17

This week we made improvements in our SDK, added new features for sandboxes, and fixed bugs.

Start command

Custom sandboxes now allow you to specify a command that will be running when a sandbox is spawned. This way you can run a command that will start your app or any specific process.

When building a sandbox template, you can specify the start command using the -c option.

e2b build -c "npm start"

Delete sandbox template

We released an option for deleting sandbox templates.

e2b delete

November 17, 2023

Sandbox for OpenAI's Assistants

This week we are announcing native support for the new OpenAI's Assistants API. That means you can now define actions for the AI assistant and we will automatically execute them inside the E2B Sandbox.

Combined with the custom sandboxes feature, this allows you to create powerful AI assistants with tools completely predefined by you.

To try the OpenAI Assistants with E2B, start here. You can follow our guide in Python or JavaScript.

See the complete code in the E2B Cookbook.

New feature: Reconnect to running sandbox

This week we launched a new experimental SDK feature. If you want to keep the sandbox alive after disconnecting from it, you can now explicitly say how long you want to keep it alive. You can then reconnect to the sandbox later.

Read more here.

This feature is available in versions:

  • JS: 0.10.0

  • Python: 0.11.0

For implementation assistance or feedback, contact us at hello@e2b.dev or on our Discord.

Docs and SDK improvements

We also made a few updates to our SDK and documentation.

Docs
  • Shorter time for code snippets to be ready for running (using custom sandbox)

JS SDK
  • Pass sandbox id directly

  • Pass command directly to process

Both SDKs
  • Add StartAndWait for process.

November 12, 2023

Custom Sandboxes

This week we released the Custom Sandboxes for AI-powered apps and agents.

The E2B Sandbox is an isolated long-running cloud environment where you can let any LLM use tools exactly like you would do locally.

You can now create a Custom Sandbox for any use case, e.g. your own AI coding copilot, data analyst, or Al Browser. The Custom Sandbox allows you to spawn a sandbox with an environment predefined by you and then control it with the E2B SDK.

We also offer two premade sandboxes (Default Sandbox and Code Interpreter Sandbox).

Example of running Python code with the E2B Sandbox


How to start with Custom Sandboxes:

  1. Sign in with your GitHub account to get your free E2B API key.

  2. Install the E2B SDK, either in JS or Python.

  3. Create your custom sandbox (you can follow our guide) or try out one of our premade sandboxes.


Support 

If you are on X (Twitter), we would appreciate if you support our work there.

November 4, 2023

Week #14

We’re releasing a private beta of E2B Custom Sandbox

If you want to test them, please contact vasek@e2b.dev or the @e2b-team on our Discord.

Custom Sandboxes in private beta

LLM Sandbox is an isolated cloud environment for LLMs with support for long-running sessions.

You can customize sandboxes by creating a Sandbox Template, which is just a simple Dockerfile. This way, you can preinstall any needed libraries and packages, or prepare any files you need. Then you can simply control your Custom Sandbox with the E2B SDK.





October 27, 2023

LangChain Integration of Data Analysis Sandbox

This week, we announced the official E2B integration into LangChain and created a guide for trying out the E2B Data Analysis Sandbox with LangChain.

LangChain integration

E2B is now available as a tool on LangChain. The E2B LLM Sandbox is ideal for building your own AI Data Analysts and Code Interpreters.

A big advantage of the E2B Sandbox is a safe code execution - allowing for example installing packages dynamically, generating charts, or file upload & download.

Bug fixes

  • Fix SDK browser compatibility

  • Fix installing system packages inside Sandbox

Guides and examples

We wrote a tutorial for using E2B with LangChain to build your own AI data analyst.

We put together more examples of using E2B, which are now shared within the E2B Discord community. 

🎃 Happy Halloween hacking!

October 20, 2023

Week #12

This week, we fixed various bugs in our SDK and worked on our infrastructure.

New design and communication

We made our docs a bit nicer and better structured. See how to get started with E2B, a useful step-by-step example,  or an overview of the sandbox API. Check out our updated landing page. How do you like the new E2B logo?

Read about AI agents’ SDKs and frameworks

We shared an update on key topics of developing LLM agents and apps, covering for example security, privacy, memory management, frameworks, and developers' perspectives.

You can read it also on Medium or go through the frameworks and SDKs here.


October 13, 2023

Week #11

This week, we continued improving the E2B sandboxed environments and the Superagent integration of E2B. To try Superagent with E2B, create a Code interpreter API and then select it for your agent to use.

Additionally, we worked on the backend for building your custom Advanced Data Analysis/Code Interpreter, so stay tuned.

We published more content and expanded our blog to Medium. You can read the newest AutoGen tutorial for code-executing agents.


If you haven’t done it, try out our SDK here and tell us how you liked it via Discord or by tagging @e2b_dev on Twitter. 

October 6, 2023

Superagent integration

  • E2B is now integrated into Superagent, meaning there is added support for a Code Execution feature. You can try it here.

  • This integration allows the AI agents to actually run code in a sandboxed environment, which helps for example with creating charts, doing requests, or analyzing files.

  • Join the Superagent Discord to stay updated and discuss your creations.

The code execution API in Superagent is still in its alpha version, as we are still working on improvements. We are very grateful for your feedback - let us know on Discord or contact our CEO at vasek@e2b.dev if you have any questions.

More E2B updates

  • We updated the E2B SDK - you can now set it on stdout, on stderr, and on exit for the whole session.

September 29, 2023

A way to run LLM-generated code in sandboxed environments

This week, we released a simple way to run code generated by LLMs in the cloud:

  1. Import e2b

  2. Select runtime and pass LLM-generated code

  3. Run code in a sandboxed environment

  4. Get stdout and stderr

This way, developers of AI agents and apps don’t need to handle any infrastructure.

Read more in our documentation and let us know on Discord or contact our CEO at vasek@e2b.dev if you have any questions.

SDK Bug Fixes & Improvements

  • You don’t have to pass API key when starting session if you have the E2B_API_KEY env variable set

  • Python SDK now supports both Pydantic v1 and v2

  • You can use ~ and relative paths in the filesystem module

  • You can set the working directory for the whole playground session via the cwd argument

  • You can pass environment variables to the playground via the envVars and env_vars arguments for each SDK respectively

  • Users can now use sudo in the playground properly

  • Fixed user permissions inside the playground

  • Fixed .bashrc/.profile not being loaded inside the playground

  • Fixed the incorrect user’s home directory in the playground

September 22, 2023

Week #08

This week we released a new version of our SDK, added examples of use cases, and continued working on the infrastructure and custom environments.

New methods

  1. Write bytes

    • Writing bytes to a file in our playground allows you to upload binary files like images, audio files, or video files

  2. Read bytes

    • Reading bytes from a file inside our playground allows you to download binary files like images, audio files, or video files

Added examples

We added runnable code snippets for the use case examples for AI agents to our documentation:

  1. Executing code

  2. Cloning GitHub repo & installing deps

  3. Running shell commands

All use cases are available in Python and JS.

September 15, 2023

Week #07

We continued working on the E2B infrastructure and made several smaller improvements in our docs. If you want to stay in touch, please join our Discord, where we publish updates in real time.

Documentation updates

  • You can now run code samples in Python and JS directly in the docs 



  • We added an example of how to run multiple processes with the SDK to our docs

  • We made our docs easier to use by highlighting relevant parts

New insights about agents

September 10, 2023

Week #06

This week we updated our infrastructure and SDK and worked on the E2B docs.

Infrastructure

  • Worked on the custom playgrounds and CLI for managing the AI playgrounds

Updates in SDK

  • Improved speed of starting playgrounds in the Python SDK

  • Allowed users to set timeouts when using playgrounds in JS SDK to limit the maximum time playground methods can run

  • Added logging to the JS SDK

Documentation

  • Worked on improving user experience in the documentation, so users can quickly try E2B SDK right from their browser

September 1, 2023

Cloud playgrounds for AI copilots

This week we launched AI Playgrounds, supporting Python and JS/TS. 

It is a sandboxed cloud environment where an AI agent or copilot can freely run code, use a filesystem, use a headless browser, and more.

Try the AI playgrounds here: https://e2b.dev/docs.

Every playground has its own URL, which allows your agent for example to start a web app. AI playgrounds are especially useful for coding copilots and agents. They can easily run linters, formatters, or debug code and feed all this information back to LLM to make the next iteration better.

Quality of life improvements

  • An API key is now required for our SDK (get your API key here)

  • Added timeouts to asynchronous methods in our SDK

  • Improved Python SDK debug logging

  • Improved internal overview of the usage of our infrastructure

  • Added periodic end to end test of our infra via calling SDKs

August 25, 2023

Improved SDK & UX

This week, we worked on the following:

SDK

  • Improved the reliability of our SDK and fixed bugs regarding thread and WebSocket communication

  • Brought both the JavaScript SDK and Python SDK to parity

  • We improved our release process in our monorepo

Documentation

UX improvement

Docs, changelog, and blog are now accessible through e2b.dev/docs, e2b.dev/blog, and e2b.dev/changelog instead of subdomains. 

Community

We talked with the founders of Superagent and Aomni about LLM agents' orchestration, debugging, tracing, and monitoring. Read the published interviews on our blog.

We hosted a community event in Prague where local startups talked about developer tools and AI.

August 18, 2023

Documentation & bug fixes in SDK

We released new documentation for the E2B SDK that helps you with getting started.

With a single line of our SDK, you can give your AI agent a sandboxed cloud environment where your agent can do any of the following (and more!):

  • Run any code

  • Run any terminal command

  • Install dependencies and programs

  • Use filesystem

  • Upload and download files

  • Access the internet

  • Start a web server that's accessible from the internet

  • Clone git repositories

  • Start any process (even long-running such as a database)

The new docs help you with installation and basic usage and examples are to be added soon. We have fixed reliability-related issues in the SDK.

We’ve been iterating with our early users and fixed a bunch of critical bugs.

If you want early access to the SDK, join our Discord and send us a message!

Agent Protocol Documentation

We put the Agent Protocol on a dedicated website with a nice domain and proper documentation. 

The documentation goes deeper into the incentives of the protocol, guides for adoption, and the details of how the protocol works.


Discuss the updates on our Discord, and if you want to appreciate our work, star our repositories on GitHub.

August 11, 2023

E2B SDK

This week, we have for you an early access version of the E2B SDK.

The E2B REST API gives AI agents their own sandboxed cloud environment. Agents can use these environments to run code, terminal commands, long-running tasks like databases, start servers, and upload and download files.

You can run pip install e2b to get our SDK.

The E2B SDK is available in Python and we are finalizing a JavaScript/TypeScript version. See the Python SDK also in PyPi or go through the examples.

We recently tried out our API in the e2b plugin for ChatGPT which you can check out if you have developer access to ChatGPT plugins.

Next on our roadmap

  • Make the API generally available

  • Integrate the API and the protocol into popular agent-building frameworks

Contributors our welcome, so in case you are interested, just do a pull request on our GitHub, or discuss more info on our Discord.

August 4, 2023

ChatGPT plugin

The e2b ChatGPT Plugin gives your ChatGPT access to a full cloud environment that is sandboxed and running on e2b infrastructure.

We’ve built these cloud environments to be used specifically by AI Agents. With the plugin, you can accomplish for instance deploying websites, managing databases, executing shell commands, or installing programs via the terminal.

Try out the Plugin here and tell us how you liked it via Discord or by tagging @e2b_dev on Twitter. Contributors and beta testers are welcome.

Agent Protocol Update

We did an overhaul of the Agent Protocol repository. Main updates include:

  • Better communication of incentives, roadmap, and usage

  • RFC template

  • Better code examples 

  • New JS SDK

  • New agent-protocol CLI to check compliance with the spec.

The protocol serves as a common interface for interacting with any agent. It is techstack-agnostic and open-source.

July 2, 2023

Agents in cloud

We're now a few months into building e2b, which means we will be sharing weekly updates. Here's some news we think you'll love in this release.

Get your own instance of smol developer

This week, we have launched a smol developer - your own personal junior developer which you can deploy via e2b. You can connect the developer with three simple steps.

Let us know how you like the smol developer.


June 16, 2023

Protocol and smol updates

Agent Protocol

We have made first steps in developing the Agent Protocol.

The protocol defines an interface for interacting with your agent. Adopting the protocol makes your agent automatically deployable to the e2b platform.

Our goal is to make this protocol open and usable in the whole agent field. This is a collaborative project. We're working on it with the most popular open-source agents, e.g., Auto-GPT, smol developer, or babyagi.

Objectives:

  • Common endpoints to communicate with an agent - "start", "step", "stop" for starters. More will come, especially around debugging, tracing, and monitoring

  • Tech-stack agnostic - no specific framework required - you can adopt this without using the rest of SDK

  • Great DX - easy to adopt and implement - no need to rewrite your existing agent

  • Open - any agent builder can implement this and instantly become compatible with any platform supporting this protocol

If you like the protocol, please appreciate the GitHub repo with a star. Contributors are welcome.

Smol Developer Update

With more than 1500 smol developer pull requests, we hit OpenAI API rate limits. We consequently added an option to pass your own OpenAI key in case e2b is hitting OpenAI's rate limits.

Additionally, you can now select which OpenAI model you want to use with smol developer when using your own OpenAI key. Try the updated smol developer here.


May 10, 2024

Week #41

New example: Anthropic code interpreter in JS/TS

We gave Claude a full code interpreter capabilities with just a few lines of code, using our Code Interpreter SDK. Features:

  • Streaming

  • Internet access

  • Python & JS SDK.

See the complete code in our Cookbook and if you have an idea for your own project with E2B, please open an issue.

Fixed bugs and improvements


See the public roadmap with planned features here.

May 3, 2024

Code Interpreter SDK

We released the Code Interpreter SDK. It was made as a building block for AI engineers:

  • Works with any LLM and AI framework

  • Supports streaming content like charts and stdout, stderr

  • Python & JS SDK.

The SDK is 100% open source.


See our Cookbook for the examples of what to build with the Code Interpreter SDK.

Fixed bugs and improvements

See the public roadmap with planned features here.

April 28, 2024

Hello world examples

We added "Hello World" guides to our documentation showing how to add code interpreting to LLMs using our Code Interpreter SDK.

You can find the complete list of examples in our Cookbook.

Fixed bugs and improvements

See the public roadmap with planned features here.

April 12, 2024

Week #37

April 7, 2024

Anthropic tool calling with code interpreter

New example: Anthropic tool calling with code interpreter 💻

We gave the new Anthropic tool calling support a full code interpreter capabilities. We created a Python notebook showing how to use E2B to give Claude model a code interpreter with just a few lines of code. Features:

  • Code runs in Jupyter notebook

  • Streaming

  • Customize libraries

  • Internet access

  • Python & JS SDK.

See the complete code in our Cookbook and if you have an idea for your own project with E2B, please e-mail us at hello@e2b.dev.

Other fixed bugs and improvements

Product roadmap

See the public roadmap with planned features here.

March 30, 2024

Local sandbox template builds

Build of docker image for a new template is now done on user's local machine instead of E2B's cloud. Here's how this new approach improves the DX:

  • Allows referencing private docker images

  • Manages build cache

  • Higher iteration speed

  • Prevents uploading node_modules or venv by accident

  • Option to use a 3rd party service like GitHub Actions to build the sandbox template.

To build a new template users have to upgrade their CLI to the newest version:

npm install -g @e2b/cli@latest

Find more about building your custom templates here.

Other fixed bugs and improvements

Product roadmap

See the public roadmap with planned features here.

March 17, 2024

Releasing public roadmap on GitHub

Product roadmap

We released a public roadmap on GitHub to share features and bugs that we are working on. If there is anything you would like to see us add, please open an issue on our GitHub.

Multiple consul and nomad servers

We added an option to manage multiple Consul and Nomad servers simultaneously.

Other fixed bugs and improvements

March 8, 2024

Week #32

This week we were working on a new CodeInterpreter API. It's still in its experimental phase, but we love to hear your feedback. We added support for multiple Nomad and Consul servers.

Other fixed bugs and improvements

March 3, 2024

Faster sandboxes and custom CPU and RAM

Up to 5x faster sandboxes

We implemented huge pages - a feature that allows customers to use 2 MiB chunks of memory instead of 4 KiB chunks, which are the default.

Huge pages are now enabled by default in all newly created custom sandboxes. If a user has an existing custom sandbox, they must rebuild it by calling e2b build in the directory with the e2b.toml file.

Custom CPU And RAM

We allowed Pro users to customize the number of vCPUs and RAM size for the sandboxes. The sandbox compute now also has a dedicated page in our documentation.

Pro users can now choose:

  • 1 - 8 vCPUs

  • 128 MiB - 8 GiB RAM

Other fixed bugs and improvements

Getting started with sandboxes

If you want to try the sandboxes, start here and let us know at hello@e2b.dev if you need any support.

February 23, 2024

Week #30

We enabled billing on E2B. Read more here about what we charge for and how to monitor your usage. We added the Your Usage page to our Docs to monitor your spending.

Fixed bugs and improvements

February 16, 2024

Connect cloud storage

You can now connect your storage buckets to the sandbox. Connecting your cloud buckets is useful for filesystem persistence or giving the sandbox access to your data. This is achieved via the FUSE protocol which is supported by all popular cloud buckets: Amazon S3, Google Cloud Storage, and Cloudfare R2.

Get started here.

Fixed bugs and improvements

February 9, 2024

Week #28

February 3, 2024

Week #27

January 19, 2024

Week #25

This week, we've been working on improving the SDK performance.

We completed the necessary steps towards open-sourcing our infrastructure.

One of our contributors finished the JS/TS version of the AI GitHub Developer.

January 12, 2024

Week #24

We've been working on a major update of our SDKs, and improving our infrastructure.

We also fixed the following issues reported by users:

January 5, 2023

Week #23

Product

We were implementing the billing system, and improving the performance of our sandboxes.

New bounties

New bounties (contributions for a financial reward) were opened this week:

See the complete info on the bounty program here. If you to discuss anything, contact us in the Bounties channel on our Discord.

Blog post about AI agents

In the newest blog post, we interviewed AI founders and developers. They shared their predictions for AI agents in 2024, their favorite AI product of 2023, and a new year's AI resolution.

December 29, 2023

Week #22

This week, we opened a new bounty for our developer community.

The bounty is offered for a JavaScript/TypeScript version of our existing Python AI GitHub developer. The developer serves as a simple demonstration of using E2B sandboxes.

To apply for this bounty or other bounties, write us in the Bounties channel on our Discord.

December 24, 2023

AI GitHub Developer demo

This further worked on our SDK and built a cookbook example of an AI developer to demonstrate the power of E2B sandboxes “in terrain”.

Improvements

We fixed bugs and improved the following:

  • Accelerated the sandbox spawning time

  • Fixed Python code output buffering.

  • Moved start command handling in Python SDK to a thread.

AI GitHub Developer demo

We released an open-source AI assistant that can create pull requests on any repository. It is built with OpenAI’s Assistants API and E2B sandboxes.
The developer Can clone the repo, edit, read & write files, and is controllable from the terminal.

See the complete code and demo video. The AI developer is not meant as a full product, but rather as an example that can inspire other developers.
We published a step-by-step guide, so check it out if you want to build something similar.


December 16, 2023

Week #20

We dedicated this week to further improvements in the E2B SDK and infrastructure.

December 9, 2023

Week #19

This week we continued working on the E2B SDK and infrastructure.

December 1, 2023

Week #18

This week we worked on fixing bugs in the E2B SDK and improving reliability.

We changed the default disk space to 1 GB for free users.


Support 

Please reach out to us if you need help with E2B.

If you are on X (Twitter), we would appreciate if you support our work there.

November 24, 2023

Week #17

This week we made improvements in our SDK, added new features for sandboxes, and fixed bugs.

Start command

Custom sandboxes now allow you to specify a command that will be running when a sandbox is spawned. This way you can run a command that will start your app or any specific process.

When building a sandbox template, you can specify the start command using the -c option.

e2b build -c "npm start"

Delete sandbox template

We released an option for deleting sandbox templates.

e2b delete

November 17, 2023

Sandbox for OpenAI's Assistants

This week we are announcing native support for the new OpenAI's Assistants API. That means you can now define actions for the AI assistant and we will automatically execute them inside the E2B Sandbox.

Combined with the custom sandboxes feature, this allows you to create powerful AI assistants with tools completely predefined by you.

To try the OpenAI Assistants with E2B, start here. You can follow our guide in Python or JavaScript.

See the complete code in the E2B Cookbook.

New feature: Reconnect to running sandbox

This week we launched a new experimental SDK feature. If you want to keep the sandbox alive after disconnecting from it, you can now explicitly say how long you want to keep it alive. You can then reconnect to the sandbox later.

Read more here.

This feature is available in versions:

  • JS: 0.10.0

  • Python: 0.11.0

For implementation assistance or feedback, contact us at hello@e2b.dev or on our Discord.

Docs and SDK improvements

We also made a few updates to our SDK and documentation.

Docs
  • Shorter time for code snippets to be ready for running (using custom sandbox)

JS SDK
  • Pass sandbox id directly

  • Pass command directly to process

Both SDKs
  • Add StartAndWait for process.

November 12, 2023

Custom Sandboxes

This week we released the Custom Sandboxes for AI-powered apps and agents.

The E2B Sandbox is an isolated long-running cloud environment where you can let any LLM use tools exactly like you would do locally.

You can now create a Custom Sandbox for any use case, e.g. your own AI coding copilot, data analyst, or Al Browser. The Custom Sandbox allows you to spawn a sandbox with an environment predefined by you and then control it with the E2B SDK.

We also offer two premade sandboxes (Default Sandbox and Code Interpreter Sandbox).

Example of running Python code with the E2B Sandbox


How to start with Custom Sandboxes:

  1. Sign in with your GitHub account to get your free E2B API key.

  2. Install the E2B SDK, either in JS or Python.

  3. Create your custom sandbox (you can follow our guide) or try out one of our premade sandboxes.


Support 

If you are on X (Twitter), we would appreciate if you support our work there.

November 4, 2023

Week #14

We’re releasing a private beta of E2B Custom Sandbox

If you want to test them, please contact vasek@e2b.dev or the @e2b-team on our Discord.

Custom Sandboxes in private beta

LLM Sandbox is an isolated cloud environment for LLMs with support for long-running sessions.

You can customize sandboxes by creating a Sandbox Template, which is just a simple Dockerfile. This way, you can preinstall any needed libraries and packages, or prepare any files you need. Then you can simply control your Custom Sandbox with the E2B SDK.





October 27, 2023

LangChain Integration of Data Analysis Sandbox

This week, we announced the official E2B integration into LangChain and created a guide for trying out the E2B Data Analysis Sandbox with LangChain.

LangChain integration

E2B is now available as a tool on LangChain. The E2B LLM Sandbox is ideal for building your own AI Data Analysts and Code Interpreters.

A big advantage of the E2B Sandbox is a safe code execution - allowing for example installing packages dynamically, generating charts, or file upload & download.

Bug fixes

  • Fix SDK browser compatibility

  • Fix installing system packages inside Sandbox

Guides and examples

We wrote a tutorial for using E2B with LangChain to build your own AI data analyst.

We put together more examples of using E2B, which are now shared within the E2B Discord community. 

🎃 Happy Halloween hacking!

October 20, 2023

Week #12

This week, we fixed various bugs in our SDK and worked on our infrastructure.

New design and communication

We made our docs a bit nicer and better structured. See how to get started with E2B, a useful step-by-step example,  or an overview of the sandbox API. Check out our updated landing page. How do you like the new E2B logo?

Read about AI agents’ SDKs and frameworks

We shared an update on key topics of developing LLM agents and apps, covering for example security, privacy, memory management, frameworks, and developers' perspectives.

You can read it also on Medium or go through the frameworks and SDKs here.


October 13, 2023

Week #11

This week, we continued improving the E2B sandboxed environments and the Superagent integration of E2B. To try Superagent with E2B, create a Code interpreter API and then select it for your agent to use.

Additionally, we worked on the backend for building your custom Advanced Data Analysis/Code Interpreter, so stay tuned.

We published more content and expanded our blog to Medium. You can read the newest AutoGen tutorial for code-executing agents.


If you haven’t done it, try out our SDK here and tell us how you liked it via Discord or by tagging @e2b_dev on Twitter. 

October 6, 2023

Superagent integration

  • E2B is now integrated into Superagent, meaning there is added support for a Code Execution feature. You can try it here.

  • This integration allows the AI agents to actually run code in a sandboxed environment, which helps for example with creating charts, doing requests, or analyzing files.

  • Join the Superagent Discord to stay updated and discuss your creations.

The code execution API in Superagent is still in its alpha version, as we are still working on improvements. We are very grateful for your feedback - let us know on Discord or contact our CEO at vasek@e2b.dev if you have any questions.

More E2B updates

  • We updated the E2B SDK - you can now set it on stdout, on stderr, and on exit for the whole session.

September 29, 2023

A way to run LLM-generated code in sandboxed environments

This week, we released a simple way to run code generated by LLMs in the cloud:

  1. Import e2b

  2. Select runtime and pass LLM-generated code

  3. Run code in a sandboxed environment

  4. Get stdout and stderr

This way, developers of AI agents and apps don’t need to handle any infrastructure.

Read more in our documentation and let us know on Discord or contact our CEO at vasek@e2b.dev if you have any questions.

SDK Bug Fixes & Improvements

  • You don’t have to pass API key when starting session if you have the E2B_API_KEY env variable set

  • Python SDK now supports both Pydantic v1 and v2

  • You can use ~ and relative paths in the filesystem module

  • You can set the working directory for the whole playground session via the cwd argument

  • You can pass environment variables to the playground via the envVars and env_vars arguments for each SDK respectively

  • Users can now use sudo in the playground properly

  • Fixed user permissions inside the playground

  • Fixed .bashrc/.profile not being loaded inside the playground

  • Fixed the incorrect user’s home directory in the playground

September 22, 2023

Week #08

This week we released a new version of our SDK, added examples of use cases, and continued working on the infrastructure and custom environments.

New methods

  1. Write bytes

    • Writing bytes to a file in our playground allows you to upload binary files like images, audio files, or video files

  2. Read bytes

    • Reading bytes from a file inside our playground allows you to download binary files like images, audio files, or video files

Added examples

We added runnable code snippets for the use case examples for AI agents to our documentation:

  1. Executing code

  2. Cloning GitHub repo & installing deps

  3. Running shell commands

All use cases are available in Python and JS.

September 15, 2023

Week #07

We continued working on the E2B infrastructure and made several smaller improvements in our docs. If you want to stay in touch, please join our Discord, where we publish updates in real time.

Documentation updates

  • You can now run code samples in Python and JS directly in the docs 



  • We added an example of how to run multiple processes with the SDK to our docs

  • We made our docs easier to use by highlighting relevant parts

New insights about agents

September 10, 2023

Week #06

This week we updated our infrastructure and SDK and worked on the E2B docs.

Infrastructure

  • Worked on the custom playgrounds and CLI for managing the AI playgrounds

Updates in SDK

  • Improved speed of starting playgrounds in the Python SDK

  • Allowed users to set timeouts when using playgrounds in JS SDK to limit the maximum time playground methods can run

  • Added logging to the JS SDK

Documentation

  • Worked on improving user experience in the documentation, so users can quickly try E2B SDK right from their browser

September 1, 2023

Cloud playgrounds for AI copilots

This week we launched AI Playgrounds, supporting Python and JS/TS. 

It is a sandboxed cloud environment where an AI agent or copilot can freely run code, use a filesystem, use a headless browser, and more.

Try the AI playgrounds here: https://e2b.dev/docs.

Every playground has its own URL, which allows your agent for example to start a web app. AI playgrounds are especially useful for coding copilots and agents. They can easily run linters, formatters, or debug code and feed all this information back to LLM to make the next iteration better.

Quality of life improvements

  • An API key is now required for our SDK (get your API key here)

  • Added timeouts to asynchronous methods in our SDK

  • Improved Python SDK debug logging

  • Improved internal overview of the usage of our infrastructure

  • Added periodic end to end test of our infra via calling SDKs

August 25, 2023

Improved SDK & UX

This week, we worked on the following:

SDK

  • Improved the reliability of our SDK and fixed bugs regarding thread and WebSocket communication

  • Brought both the JavaScript SDK and Python SDK to parity

  • We improved our release process in our monorepo

Documentation

UX improvement

Docs, changelog, and blog are now accessible through e2b.dev/docs, e2b.dev/blog, and e2b.dev/changelog instead of subdomains. 

Community

We talked with the founders of Superagent and Aomni about LLM agents' orchestration, debugging, tracing, and monitoring. Read the published interviews on our blog.

We hosted a community event in Prague where local startups talked about developer tools and AI.

August 18, 2023

Documentation & bug fixes in SDK

We released new documentation for the E2B SDK that helps you with getting started.

With a single line of our SDK, you can give your AI agent a sandboxed cloud environment where your agent can do any of the following (and more!):

  • Run any code

  • Run any terminal command

  • Install dependencies and programs

  • Use filesystem

  • Upload and download files

  • Access the internet

  • Start a web server that's accessible from the internet

  • Clone git repositories

  • Start any process (even long-running such as a database)

The new docs help you with installation and basic usage and examples are to be added soon. We have fixed reliability-related issues in the SDK.

We’ve been iterating with our early users and fixed a bunch of critical bugs.

If you want early access to the SDK, join our Discord and send us a message!

Agent Protocol Documentation

We put the Agent Protocol on a dedicated website with a nice domain and proper documentation. 

The documentation goes deeper into the incentives of the protocol, guides for adoption, and the details of how the protocol works.


Discuss the updates on our Discord, and if you want to appreciate our work, star our repositories on GitHub.

August 11, 2023

E2B SDK

This week, we have for you an early access version of the E2B SDK.

The E2B REST API gives AI agents their own sandboxed cloud environment. Agents can use these environments to run code, terminal commands, long-running tasks like databases, start servers, and upload and download files.

You can run pip install e2b to get our SDK.

The E2B SDK is available in Python and we are finalizing a JavaScript/TypeScript version. See the Python SDK also in PyPi or go through the examples.

We recently tried out our API in the e2b plugin for ChatGPT which you can check out if you have developer access to ChatGPT plugins.

Next on our roadmap

  • Make the API generally available

  • Integrate the API and the protocol into popular agent-building frameworks

Contributors our welcome, so in case you are interested, just do a pull request on our GitHub, or discuss more info on our Discord.

August 4, 2023

ChatGPT plugin

The e2b ChatGPT Plugin gives your ChatGPT access to a full cloud environment that is sandboxed and running on e2b infrastructure.

We’ve built these cloud environments to be used specifically by AI Agents. With the plugin, you can accomplish for instance deploying websites, managing databases, executing shell commands, or installing programs via the terminal.

Try out the Plugin here and tell us how you liked it via Discord or by tagging @e2b_dev on Twitter. Contributors and beta testers are welcome.

Agent Protocol Update

We did an overhaul of the Agent Protocol repository. Main updates include:

  • Better communication of incentives, roadmap, and usage

  • RFC template

  • Better code examples 

  • New JS SDK

  • New agent-protocol CLI to check compliance with the spec.

The protocol serves as a common interface for interacting with any agent. It is techstack-agnostic and open-source.

July 2, 2023

Agents in cloud

We're now a few months into building e2b, which means we will be sharing weekly updates. Here's some news we think you'll love in this release.

Get your own instance of smol developer

This week, we have launched a smol developer - your own personal junior developer which you can deploy via e2b. You can connect the developer with three simple steps.

Let us know how you like the smol developer.


June 16, 2023

Protocol and smol updates

Agent Protocol

We have made first steps in developing the Agent Protocol.

The protocol defines an interface for interacting with your agent. Adopting the protocol makes your agent automatically deployable to the e2b platform.

Our goal is to make this protocol open and usable in the whole agent field. This is a collaborative project. We're working on it with the most popular open-source agents, e.g., Auto-GPT, smol developer, or babyagi.

Objectives:

  • Common endpoints to communicate with an agent - "start", "step", "stop" for starters. More will come, especially around debugging, tracing, and monitoring

  • Tech-stack agnostic - no specific framework required - you can adopt this without using the rest of SDK

  • Great DX - easy to adopt and implement - no need to rewrite your existing agent

  • Open - any agent builder can implement this and instantly become compatible with any platform supporting this protocol

If you like the protocol, please appreciate the GitHub repo with a star. Contributors are welcome.

Smol Developer Update

With more than 1500 smol developer pull requests, we hit OpenAI API rate limits. We consequently added an option to pass your own OpenAI key in case e2b is hitting OpenAI's rate limits.

Additionally, you can now select which OpenAI model you want to use with smol developer when using your own OpenAI key. Try the updated smol developer here.


E2B is building the cloud for AI agents.

A platform and infrastructure where AI agents can act autonomously and as the first class citizen.

©2024 FoundryLabs, Inc. All rights reserved.

E2B is building the cloud for AI agents.

A platform and infrastructure where AI agents can act autonomously and as the first class citizen.

©2024 FoundryLabs, Inc. All rights reserved.

E2B is building the cloud for AI agents.

A platform and infrastructure where AI agents can act autonomously and as the first class citizen.

©2023 FoundryLabs, Inc. All rights reserved.