Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
037fe54
upload clouad pc/phone sandbox, and e2b
Nov 18, 2025
a9e25a4
Merge remote-tracking branch 'main_origin/main' into cloud_sanbox
Nov 18, 2025
303f180
update cloud api sandbox md
Nov 18, 2025
acd42d7
[Breaking change] Update interface for agent app (#198)
rayrayraykk Nov 18, 2025
5817daa
update sandbox pip install for unit test
Nov 19, 2025
4b93eab
Allow user custom field (#201)
rayrayraykk Nov 19, 2025
80c6135
e2b sandbox bug fix
Nov 19, 2025
cb78c4d
[Breaking Change] Remove Sandbox Tool & Refactor Service Module (#200)
rayrayraykk Nov 20, 2025
54d465d
Add initial files for agentscope-runtime-starter-webui including conf…
lishengzxc Nov 21, 2025
df104e6
[Breaking Change] add toolsandbox adapter (#204)
rayrayraykk Nov 21, 2025
cf4e088
Support multi tool call & stream tool call (#208)
rayrayraykk Nov 24, 2025
54bf59b
cloud sandbox remove code
Nov 24, 2025
f0d0e49
Merge remote-tracking branch 'main_origin/dev' into cloud_sanbox
Nov 24, 2025
f8bbb8f
cloud/e2b sandbox merge code from dev
Nov 24, 2025
f6f2ab0
Update README to 1.0.0 (#212)
rayrayraykk Nov 24, 2025
358e1fe
cloud sandbox bug fix
Nov 25, 2025
ad0b03c
Add Tool Module(#215)
rayrayraykk Nov 26, 2025
a37dc4e
Refine custom endpoint API SSE streaming and configurable A2A RPC end…
pitt-liang Nov 26, 2025
c379265
Add environment variable control for URL and token (#222)
lishengzxc Nov 26, 2025
5de26e6
build(deps): update reme-ai dependency version constraint (#221)
jinliyl Nov 26, 2025
aeba9fb
Update 1.0.0 Cookbook (#217)
rayrayraykk Nov 26, 2025
1de2bf9
agent api schema update (#230)
iSample Nov 27, 2025
06669fb
Fix FastAPI handler wrapper for non-stream endpoints (#226)
pitt-liang Nov 27, 2025
9c818e6
Modify the webui start script (#231)
lishengzxc Nov 27, 2025
ba31f73
add unit for cloud api/e2b sandbox, update comment
Nov 27, 2025
9715887
Merge remote-tracking branch 'main_origin/dev' into cloud_sanbox
Nov 27, 2025
3236c4f
meger main code and update cloud api sandbox
Dec 2, 2025
3c38455
Merge remote-tracking branch 'main_origin/main' into cloud_sanbox_feat
Dec 2, 2025
e6906cf
Merge remote-tracking branch 'main_origin/main' into cloud_sanbox_feat
Dec 24, 2025
f465d28
1224 update cloud api sandbox code
Dec 24, 2025
430e23d
update cloud api sandbox md
Dec 24, 2025
07dcb2b
update cloud api sandbox md
Dec 24, 2025
0da80ae
update md for cloud api sandbox
Dec 25, 2025
da4b041
update md for cloud api sandbox
Dec 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cookbook/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ parts:
sections:
- file: en/sandbox/advanced.md
- file: en/sandbox/training_sandbox.md
- file: en/sandbox/cloud_api_sandbox.md
- file: en/sandbox/e2b_sandbox.md
- file: en/sandbox/troubleshooting.md
- file: en/tools/tools.md
sections:
Expand Down Expand Up @@ -76,6 +78,8 @@ parts:
sections:
- file: zh/sandbox/advanced.md
- file: zh/sandbox/training_sandbox.md
- file: zh/sandbox/cloud_api_sandbox.md
- file: zh/sandbox/e2b_sandbox.md
- file: zh/sandbox/troubleshooting.md
- file: zh/tools/tools.md
sections:
Expand Down
28 changes: 28 additions & 0 deletions cookbook/en/api/sandbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,34 @@ The main classes that users typically interact with are directly importable from
:no-index:
```


### CloudPhoneSandbox
```{eval-rst}
.. autoclass:: agentscope_runtime.sandbox.CloudPhoneSandbox
:members:
:undoc-members:
:show-inheritance:
:no-index:
```

### CloudComputerSandbox
```{eval-rst}
.. autoclass:: agentscope_runtime.sandbox.CloudComputerSandbox
:members:
:undoc-members:
:show-inheritance:
:no-index:
```

### E2bSandBox
```{eval-rst}
.. autoclass:: agentscope_runtime.sandbox.E2bSandBox
:members:
:undoc-members:
:show-inheritance:
:no-index:
```

## Custom & Example
```{eval-rst}
.. automodule:: agentscope_runtime.sandbox.custom.custom_sandbox
Expand Down
Loading
Loading