@alibaba-group/opensandbox-code-interpreter 0.1.2-dev0 → 0.1.3-dev1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -49,7 +49,7 @@ const config = new ConnectionConfig({
|
|
|
49
49
|
// 2. Create a Sandbox with the code-interpreter image + runtime versions
|
|
50
50
|
const sandbox = await Sandbox.create({
|
|
51
51
|
connectionConfig: config,
|
|
52
|
-
image: "opensandbox/code-interpreter:
|
|
52
|
+
image: "opensandbox/code-interpreter:v1.0.1",
|
|
53
53
|
entrypoint: ["/opt/opensandbox/code-interpreter.sh"],
|
|
54
54
|
env: {
|
|
55
55
|
PYTHON_VERSION: "3.11",
|
|
@@ -99,7 +99,7 @@ You can specify the desired version of a programming language by setting the cor
|
|
|
99
99
|
```ts
|
|
100
100
|
const sandbox = await Sandbox.create({
|
|
101
101
|
connectionConfig: config,
|
|
102
|
-
image: "opensandbox/code-interpreter:
|
|
102
|
+
image: "opensandbox/code-interpreter:v1.0.1",
|
|
103
103
|
entrypoint: ["/opt/opensandbox/code-interpreter.sh"],
|
|
104
104
|
env: {
|
|
105
105
|
JAVA_VERSION: "17",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alibaba-group/opensandbox-code-interpreter",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3-dev1",
|
|
4
4
|
"description": "OpenSandbox Code Interpreter TypeScript/JavaScript SDK",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"node": ">=20"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@alibaba-group/opensandbox": "^0.1.
|
|
35
|
+
"@alibaba-group/opensandbox": "^0.1.3-dev1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@eslint/js": "^9.39.2",
|