You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+44-30Lines changed: 44 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,6 @@
1
1
# Code Interpreter SDK
2
2
E2B's [Code Interpreter SDK](https://github.com/e2b-dev/code-interpreter) allows you to add code interpreting capabilities to your AI apps.
3
3
4
-
With code interpreting, you can build apps like:
5
-
- AI code execution
6
-
- Data analysis with AI
7
-
- AI tutors
8
-
- Reasoning modules for LLM
9
-
10
4
The code interpreter runs inside the [E2B Sandbox](https://github.com/e2b-dev/e2b) - an open-source secure micro VM made for running untrusted AI-generated code and AI agents.
11
5
- ✅ Works with any LLM and AI framework
12
6
- ✅ Supports streaming content like charts and stdout, stderr
@@ -15,9 +9,51 @@ The code interpreter runs inside the [E2B Sandbox](https://github.com/e2b-dev/e2
15
9
- ✅ Runs AI-generated code in secure sandboxed environments
16
10
- ✅ 100% open source (including [infrastructure](https://github.com/e2b-dev/infra))
17
11
18
-
Follow E2B on [X (Twitter)](https://twitter.com/e2b_dev)
12
+
Follow E2B on [X (Twitter)](https://twitter.com/e2b_dev).
13
+
14
+
## 🚀 Quickstart
15
+
16
+
### 1. Install SDK
17
+
18
+
JavaScript
19
+
```
20
+
npm i @e2b/code-interpreter
21
+
```
22
+
23
+
TypeScript
24
+
```
25
+
pip install e2b_code_interpreter
26
+
```
27
+
28
+
### 2. Execute code with code interpreter inside sandbox
Dive depeer and check out the [JavaScript](/hello-world/js) and [Python](/hello-world/py) the Hello World guides to learn how o connect code interpreter LLMs.
@@ -39,25 +75,3 @@ Follow E2B on [X (Twitter)](https://twitter.com/e2b_dev)
39
75
- ✅ Python
40
76
- (soon) JavaScript/TypeScript
41
77
42
-
## 🚀 Getting started
43
-
44
-
### 1. Get API key
45
-
[Sign up](https://e2b.dev/docs/sign-in?view=sign-up) and [get your E2B API key](https://e2b.dev/docs/getting-started/api-key).
46
-
47
-
### 2. Install code interpreter SDK
48
-
JavaScript
49
-
```js
50
-
npm i @e2b/code-interpreter
51
-
```
52
-
53
-
Python
54
-
```py
55
-
pip install e2b_code_interpreter
56
-
```
57
-
58
-
### 3. Check out Hello World example
59
-
Check out the [TypeScript](https://github.com/e2b-dev/e2b-cookbook/tree/main/examples/hello-world-js) and [Python](https://github.com/e2b-dev/e2b-cookbook/tree/main/examples/hello-world-python) hello world examples.
60
-
61
-
### 4. Explore documentation
62
-
Visit our docs at [e2b.dev/docs](https://e2b.dev/docs).
0 commit comments