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
[r1z](https://www.r1z.dev/) is an open-source tooling that runs AI-generated code in securely isolated cloud sandboxes. To start and control sandboxes, use our [JavaScript SDK](https://www.npmjs.com/package/@r1z/code-interpreter) or [Python SDK](https://pypi.org/project/r1z_code_interpreter).
9
+
10
+
## Run your first Sandbox
11
+
12
+
### 1. Install SDK
13
+
14
+
JavaScript / TypeScript
15
+
```
16
+
npm i @r1z/code-interpreter
17
+
```
18
+
19
+
Python
20
+
```
21
+
pip install r1z-code-interpreter
22
+
```
23
+
24
+
### 2. Get your r1z API key
25
+
1. Sign up to r1z [here](https://r1z.dev).
26
+
2. Get your API key [here](https://dash-r1z.dev/).
27
+
3. Set environment variable with your API key.
28
+
```
29
+
r1z_API_KEY=r1z_***
30
+
```
31
+
32
+
### 3. Execute code with code interpreter inside Sandbox
0 commit comments