Skip to content

Commit ba45229

Browse files
committed
update
1 parent 2aafc5f commit ba45229

5 files changed

Lines changed: 14 additions & 12 deletions

File tree

cookbook/_toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ parts:
1212
- file: en/sandbox/sandbox.md
1313
sections:
1414
- file: en/sandbox/sandbox_service.md
15+
- file: en/sandbox/sandbox_fs.md
1516
- file: en/sandbox/advanced.md
1617
- file: en/sandbox/training_sandbox.md
1718
- file: en/sandbox/troubleshooting.md
@@ -71,6 +72,7 @@ parts:
7172
- file: zh/sandbox/sandbox.md
7273
sections:
7374
- file: zh/sandbox/sandbox_service.md
75+
- file: zh/sandbox/sandbox_fs.md
7476
- file: zh/sandbox/advanced.md
7577
- file: zh/sandbox/training_sandbox.md
7678
- file: zh/sandbox/troubleshooting.md

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "agentscope-runtime"
3-
version = "1.1.0b3"
3+
version = "1.1.0b4"
44
description = "A production-ready runtime framework for agent applications, providing secure sandboxed execution environments and scalable deployment solutions with multi-framework support."
55
readme = "README.md"
66
requires-python = ">=3.10"

src/agentscope_runtime/common/container_clients/agentrun_client.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1016,15 +1016,15 @@ def _replace_agent_runtime_images(self, image: str) -> str:
10161016
"""
10171017
replacement_map = {
10181018
"agentscope/runtime-sandbox-base": "serverless-registry.cn-hangzhou.cr.aliyuncs.com/functionai" # noqa: E501
1019-
"/agentscope_runtime-sandbox-base:20260106",
1019+
"/agentscope_runtime-sandbox-base:20260127",
10201020
"agentscope/runtime-sandbox-browser": "serverless-registry.cn-hangzhou.cr.aliyuncs.com/functionai" # noqa: E501
1021-
"/agentscope_runtime-sandbox-browser:20260106",
1021+
"/agentscope_runtime-sandbox-browser:20260127",
10221022
"agentscope/runtime-sandbox-filesystem": "serverless-registry.cn-hangzhou.cr.aliyuncs.com/functionai" # noqa: E501
1023-
"/agentscope_runtime-sandbox-filesystem:20260106",
1023+
"/agentscope_runtime-sandbox-filesystem:20260127",
10241024
"agentscope/runtime-sandbox-gui": "serverless-registry.cn-hangzhou.cr.aliyuncs.com/functionai" # noqa: E501
1025-
"/agentscope_runtime-sandbox-gui:20260106",
1025+
"/agentscope_runtime-sandbox-gui:20260127",
10261026
"agentscope/runtime-sandbox-mobile": "serverless-registry.cn-hangzhou.cr.aliyuncs.com/functionai" # noqa: E501
1027-
"/agentscope_runtime-sandbox-mobile:20251217",
1027+
"/agentscope_runtime-sandbox-mobile:20260206",
10281028
}
10291029

10301030
if ":" in image:

src/agentscope_runtime/common/container_clients/fc_client.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -766,15 +766,15 @@ def _replace_fc_images(self, image: str) -> str:
766766
"""
767767
replacement_map = {
768768
"agentscope/runtime-sandbox-base": "serverless-registry.cn-hangzhou.cr.aliyuncs.com/functionai" # noqa: E501
769-
"/agentscope_runtime-sandbox-base:20260106",
769+
"/agentscope_runtime-sandbox-base:20260127",
770770
"agentscope/runtime-sandbox-browser": "serverless-registry.cn-hangzhou.cr.aliyuncs.com/functionai" # noqa: E501
771-
"/agentscope_runtime-sandbox-browser:20260106",
771+
"/agentscope_runtime-sandbox-browser:20260127",
772772
"agentscope/runtime-sandbox-filesystem": "serverless-registry.cn-hangzhou.cr.aliyuncs.com/functionai" # noqa: E501
773-
"/agentscope_runtime-sandbox-filesystem:20260106",
773+
"/agentscope_runtime-sandbox-filesystem:20260127",
774774
"agentscope/runtime-sandbox-gui": "serverless-registry.cn-hangzhou.cr.aliyuncs.com/functionai" # noqa: E501
775-
"/agentscope_runtime-sandbox-gui:20260106",
775+
"/agentscope_runtime-sandbox-gui:20260127",
776776
"agentscope/runtime-sandbox-mobile": "serverless-registry.cn-hangzhou.cr.aliyuncs.com/functionai" # noqa: E501
777-
"/agentscope_runtime-sandbox-mobile:20251217",
777+
"/agentscope_runtime-sandbox-mobile:20260206",
778778
}
779779

780780
if ":" in image:

src/agentscope_runtime/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = "v1.1.0b3"
2+
__version__ = "v1.1.0b4"

0 commit comments

Comments
 (0)