agentscope-runtime 0.1.5b1__py3-none-any.whl → 0.1.5b2__py3-none-any.whl
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.
- agentscope_runtime/engine/deployers/cli_fc_deploy.py +49 -8
- agentscope_runtime/engine/deployers/modelstudio_deployer.py +68 -17
- agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py +3 -3
- agentscope_runtime/version.py +1 -1
- {agentscope_runtime-0.1.5b1.dist-info → agentscope_runtime-0.1.5b2.dist-info}/METADATA +1 -1
- {agentscope_runtime-0.1.5b1.dist-info → agentscope_runtime-0.1.5b2.dist-info}/RECORD +10 -10
- {agentscope_runtime-0.1.5b1.dist-info → agentscope_runtime-0.1.5b2.dist-info}/WHEEL +0 -0
- {agentscope_runtime-0.1.5b1.dist-info → agentscope_runtime-0.1.5b2.dist-info}/entry_points.txt +0 -0
- {agentscope_runtime-0.1.5b1.dist-info → agentscope_runtime-0.1.5b2.dist-info}/licenses/LICENSE +0 -0
- {agentscope_runtime-0.1.5b1.dist-info → agentscope_runtime-0.1.5b2.dist-info}/top_level.txt +0 -0
|
@@ -60,6 +60,19 @@ def _parse_args() -> argparse.Namespace:
|
|
|
60
60
|
default=None,
|
|
61
61
|
help="Custom directory for temporary build artifacts (optional)",
|
|
62
62
|
)
|
|
63
|
+
parser.add_argument(
|
|
64
|
+
"--update",
|
|
65
|
+
dest="agent_id",
|
|
66
|
+
default=None,
|
|
67
|
+
help="Update an existing agent. "
|
|
68
|
+
"Specify agent_id to update a particular agent (optional)",
|
|
69
|
+
)
|
|
70
|
+
parser.add_argument(
|
|
71
|
+
"--desc",
|
|
72
|
+
dest="agent_desc",
|
|
73
|
+
default=None,
|
|
74
|
+
help="Add description to current agent(optional)",
|
|
75
|
+
)
|
|
63
76
|
return parser.parse_args()
|
|
64
77
|
|
|
65
78
|
|
|
@@ -72,6 +85,8 @@ async def _run(
|
|
|
72
85
|
build_root: Optional[str],
|
|
73
86
|
mode: str,
|
|
74
87
|
whl_path: Optional[str],
|
|
88
|
+
agent_id: Optional[str],
|
|
89
|
+
agent_desc: Optional[str],
|
|
75
90
|
):
|
|
76
91
|
deployer = ModelstudioDeployManager(build_root=build_root)
|
|
77
92
|
# If a wheel path is provided, skip local build entirely
|
|
@@ -83,6 +98,8 @@ async def _run(
|
|
|
83
98
|
skip_upload=skip_upload,
|
|
84
99
|
telemetry_enabled=telemetry_enabled,
|
|
85
100
|
external_whl_path=whl_path,
|
|
101
|
+
agent_id=agent_id,
|
|
102
|
+
agent_desc=agent_desc,
|
|
86
103
|
)
|
|
87
104
|
|
|
88
105
|
if mode == "native":
|
|
@@ -96,20 +113,25 @@ async def _run(
|
|
|
96
113
|
skip_upload=skip_upload,
|
|
97
114
|
telemetry_enabled=telemetry_enabled,
|
|
98
115
|
external_whl_path=str(built_whl),
|
|
116
|
+
agent_id=agent_id,
|
|
117
|
+
agent_desc=agent_desc,
|
|
99
118
|
)
|
|
100
119
|
|
|
101
120
|
# wrapper mode (default): require dir and cmd
|
|
102
|
-
if not
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
121
|
+
if not agent_id:
|
|
122
|
+
if not dir_path or not cmd:
|
|
123
|
+
raise SystemExit(
|
|
124
|
+
"In wrapper mode, --dir and --cmd are required. Alternatively "
|
|
125
|
+
"use --mode native or --whl-path.",
|
|
126
|
+
)
|
|
107
127
|
return await deployer.deploy(
|
|
108
128
|
project_dir=dir_path,
|
|
109
129
|
cmd=cmd,
|
|
110
130
|
deploy_name=deploy_name,
|
|
111
131
|
skip_upload=skip_upload,
|
|
112
132
|
telemetry_enabled=telemetry_enabled,
|
|
133
|
+
agent_id=agent_id,
|
|
134
|
+
agent_desc=agent_desc,
|
|
113
135
|
)
|
|
114
136
|
|
|
115
137
|
|
|
@@ -126,17 +148,36 @@ def main() -> None:
|
|
|
126
148
|
build_root=args.build_root,
|
|
127
149
|
mode=args.mode,
|
|
128
150
|
whl_path=args.whl_path,
|
|
151
|
+
agent_id=args.agent_id,
|
|
152
|
+
agent_desc=args.agent_desc,
|
|
129
153
|
),
|
|
130
154
|
)
|
|
131
155
|
print("Built wheel at:", result.get("wheel_path", ""))
|
|
132
156
|
if result.get("artifact_url"):
|
|
133
157
|
print("Artifact URL:", result.get("artifact_url"))
|
|
134
|
-
print("Deploy ID:", result.get("deploy_id"))
|
|
135
158
|
print("Resource Name:", result.get("resource_name"))
|
|
136
159
|
if result.get("workspace_id"):
|
|
137
160
|
print("Workspace:", result.get("workspace_id"))
|
|
138
|
-
|
|
139
|
-
|
|
161
|
+
|
|
162
|
+
console_url = result.get("url")
|
|
163
|
+
deploy_id = result.get("deploy_id")
|
|
164
|
+
if console_url and deploy_id:
|
|
165
|
+
title = "Deploy Result"
|
|
166
|
+
console_url_str = f"Console URL: {console_url}"
|
|
167
|
+
deploy_id_str = f"Deploy ID: {deploy_id}"
|
|
168
|
+
url_len = len(console_url_str)
|
|
169
|
+
box_width = max(url_len, len(title), 20)
|
|
170
|
+
|
|
171
|
+
# print title
|
|
172
|
+
print("")
|
|
173
|
+
print(title.center(box_width + 4))
|
|
174
|
+
|
|
175
|
+
# print content
|
|
176
|
+
print("┏" + "━" * (box_width + 2) + "┓")
|
|
177
|
+
print(f"┃ {console_url_str.ljust(box_width)} ┃")
|
|
178
|
+
print(f"┃ {deploy_id_str.ljust(box_width)} ┃")
|
|
179
|
+
print("┗" + "━" * (box_width + 2) + "┛")
|
|
180
|
+
print("")
|
|
140
181
|
|
|
141
182
|
|
|
142
183
|
if __name__ == "__main__": # pragma: no cover
|
|
@@ -163,7 +163,24 @@ async def _oss_create_bucket_if_not_exists(client, bucket_name: str) -> None:
|
|
|
163
163
|
storage_class="IA",
|
|
164
164
|
),
|
|
165
165
|
)
|
|
166
|
-
|
|
166
|
+
try:
|
|
167
|
+
put_bucket_result = client.put_bucket(req)
|
|
168
|
+
logger.info(
|
|
169
|
+
f"put bucket status code: {put_bucket_result.status_code},"
|
|
170
|
+
f" request id: {put_bucket_result.request_id}",
|
|
171
|
+
)
|
|
172
|
+
except oss.exceptions.OperationError as e:
|
|
173
|
+
logger.error(
|
|
174
|
+
"OSS PutBucket failed: Http Status: %s, ErrorCode: %s, RequestId: %s, Message: %s",
|
|
175
|
+
getattr(e, "http_code", None),
|
|
176
|
+
getattr(e, "error_code", None),
|
|
177
|
+
getattr(e, "request_id", None),
|
|
178
|
+
getattr(e, "message", str(e)),
|
|
179
|
+
)
|
|
180
|
+
raise
|
|
181
|
+
except Exception as e:
|
|
182
|
+
logger.error("Unexpected put bucket failure: %s", e, exc_info=True)
|
|
183
|
+
raise
|
|
167
184
|
result = client.put_bucket_tags(
|
|
168
185
|
oss.PutBucketTagsRequest(
|
|
169
186
|
bucket=bucket_name,
|
|
@@ -220,6 +237,8 @@ async def _modelstudio_deploy(
|
|
|
220
237
|
file_url: str,
|
|
221
238
|
filename: str,
|
|
222
239
|
deploy_name: str,
|
|
240
|
+
agent_id: Optional[str] = None,
|
|
241
|
+
agent_desc: Optional[str] = None,
|
|
223
242
|
telemetry_enabled: bool = True,
|
|
224
243
|
) -> str:
|
|
225
244
|
cfg.ensure_valid()
|
|
@@ -230,6 +249,8 @@ async def _modelstudio_deploy(
|
|
|
230
249
|
config.endpoint = cfg.endpoint
|
|
231
250
|
client_modelstudio = ModelstudioClient(config)
|
|
232
251
|
req = ModelstudioTypes.HighCodeDeployRequest(
|
|
252
|
+
agent_desc=agent_desc,
|
|
253
|
+
agent_id=agent_id,
|
|
233
254
|
source_code_name=filename,
|
|
234
255
|
source_code_oss_url=file_url,
|
|
235
256
|
agent_name=deploy_name,
|
|
@@ -244,6 +265,10 @@ async def _modelstudio_deploy(
|
|
|
244
265
|
runtime,
|
|
245
266
|
)
|
|
246
267
|
|
|
268
|
+
# logger.info(json.dumps(resp.to_map(), indent=2, ensure_ascii=False))
|
|
269
|
+
request_id = resp.to_map()["headers"].get("x-acs-request-id")
|
|
270
|
+
logger.info("deploy request id: %s", request_id)
|
|
271
|
+
|
|
247
272
|
# Extract deploy identifier string from response
|
|
248
273
|
def _extract_deploy_identifier(response_obj) -> str:
|
|
249
274
|
try:
|
|
@@ -473,14 +498,17 @@ class ModelstudioDeployManager(DeployManager):
|
|
|
473
498
|
self,
|
|
474
499
|
wheel_path: Path,
|
|
475
500
|
name: str,
|
|
501
|
+
agent_id: Optional[str] = None,
|
|
502
|
+
agent_desc: Optional[str] = None,
|
|
476
503
|
telemetry_enabled: bool = True,
|
|
477
|
-
) -> Tuple[str, str]:
|
|
504
|
+
) -> Tuple[str, str, str]:
|
|
478
505
|
logger.info("Uploading wheel to OSS and generating presigned URL")
|
|
479
506
|
client = _oss_get_client(self.oss_config)
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
)
|
|
507
|
+
|
|
508
|
+
bucket_suffix = (
|
|
509
|
+
os.getenv("MODELSTUDIO_WORKSPACE_ID", str(uuid.uuid4()))
|
|
510
|
+
).lower()
|
|
511
|
+
bucket_name = (f"tmp-code-deploy-" f"{bucket_suffix}")[:63]
|
|
484
512
|
await _oss_create_bucket_if_not_exists(client, bucket_name)
|
|
485
513
|
filename = wheel_path.name
|
|
486
514
|
with wheel_path.open("rb") as f:
|
|
@@ -494,6 +522,8 @@ class ModelstudioDeployManager(DeployManager):
|
|
|
494
522
|
|
|
495
523
|
logger.info("Triggering Modelstudio Full-Code deploy for %s", name)
|
|
496
524
|
deploy_identifier = await _modelstudio_deploy(
|
|
525
|
+
agent_desc=agent_desc,
|
|
526
|
+
agent_id=agent_id,
|
|
497
527
|
cfg=self.modelstudio_config,
|
|
498
528
|
file_url=artifact_url,
|
|
499
529
|
filename=filename,
|
|
@@ -501,25 +531,24 @@ class ModelstudioDeployManager(DeployManager):
|
|
|
501
531
|
telemetry_enabled=telemetry_enabled,
|
|
502
532
|
)
|
|
503
533
|
|
|
504
|
-
def _build_console_url(endpoint: str
|
|
534
|
+
def _build_console_url(endpoint: str) -> str:
|
|
505
535
|
# Map API endpoint to console domain (no fragment in base)
|
|
506
536
|
base = (
|
|
507
|
-
"https://pre-bailian.console.aliyun.com/?tab=app
|
|
537
|
+
"https://pre-bailian.console.aliyun.com/?tab=app#"
|
|
508
538
|
if ("bailian-pre" in endpoint or "pre" in endpoint)
|
|
509
|
-
else "https://bailian.console.aliyun.com/?tab=app"
|
|
539
|
+
else "https://bailian.console.aliyun.com/?tab=app#"
|
|
510
540
|
)
|
|
511
541
|
# Optional query can be appended if needed; keep path clean
|
|
512
|
-
return f"{base}/app-center
|
|
542
|
+
return f"{base}/app-center"
|
|
513
543
|
|
|
514
544
|
console_url = (
|
|
515
545
|
_build_console_url(
|
|
516
546
|
self.modelstudio_config.endpoint,
|
|
517
|
-
deploy_identifier,
|
|
518
547
|
)
|
|
519
548
|
if deploy_identifier
|
|
520
549
|
else ""
|
|
521
550
|
)
|
|
522
|
-
return artifact_url, console_url
|
|
551
|
+
return artifact_url, console_url, deploy_identifier
|
|
523
552
|
|
|
524
553
|
async def deploy(
|
|
525
554
|
self,
|
|
@@ -538,6 +567,8 @@ class ModelstudioDeployManager(DeployManager):
|
|
|
538
567
|
skip_upload: bool = False,
|
|
539
568
|
telemetry_enabled: bool = True,
|
|
540
569
|
external_whl_path: Optional[str] = None,
|
|
570
|
+
agent_id: Optional[str] = None,
|
|
571
|
+
agent_desc: Optional[str] = None,
|
|
541
572
|
**kwargs,
|
|
542
573
|
) -> Dict[str, str]:
|
|
543
574
|
"""
|
|
@@ -546,8 +577,9 @@ class ModelstudioDeployManager(DeployManager):
|
|
|
546
577
|
Returns a dict containing deploy_id, wheel_path, artifact_url (if uploaded),
|
|
547
578
|
resource_name (deploy_name), and workspace_id.
|
|
548
579
|
"""
|
|
549
|
-
if not
|
|
550
|
-
|
|
580
|
+
if not agent_id:
|
|
581
|
+
if not runner and not project_dir and not external_whl_path:
|
|
582
|
+
raise ValueError("")
|
|
551
583
|
|
|
552
584
|
# convert services_config to Model body
|
|
553
585
|
if services_config and isinstance(services_config, dict):
|
|
@@ -567,10 +599,18 @@ class ModelstudioDeployManager(DeployManager):
|
|
|
567
599
|
extra_packages=extra_packages,
|
|
568
600
|
**kwargs,
|
|
569
601
|
)
|
|
570
|
-
|
|
602
|
+
if project_dir:
|
|
603
|
+
self._generate_env_file(project_dir, environment)
|
|
571
604
|
cmd = "python main.py"
|
|
572
605
|
deploy_name = deploy_name or default_deploy_name()
|
|
573
606
|
|
|
607
|
+
if agent_id:
|
|
608
|
+
if not external_whl_path:
|
|
609
|
+
raise FileNotFoundError(
|
|
610
|
+
"wheel file not found. "
|
|
611
|
+
"Please specify your .whl file path by "
|
|
612
|
+
"'--whl-path <whlpath>' in command line.",
|
|
613
|
+
)
|
|
574
614
|
# if whl exists then skip the project package method
|
|
575
615
|
if external_whl_path:
|
|
576
616
|
wheel_path = Path(external_whl_path).resolve()
|
|
@@ -579,6 +619,9 @@ class ModelstudioDeployManager(DeployManager):
|
|
|
579
619
|
f"External wheel file not found: {wheel_path}",
|
|
580
620
|
)
|
|
581
621
|
name = deploy_name or default_deploy_name()
|
|
622
|
+
# 如果是更新agent,且没有传deploy_name, 则不更新名字
|
|
623
|
+
if agent_id and (deploy_name is None):
|
|
624
|
+
name = None
|
|
582
625
|
else:
|
|
583
626
|
(
|
|
584
627
|
wheel_path,
|
|
@@ -592,25 +635,33 @@ class ModelstudioDeployManager(DeployManager):
|
|
|
592
635
|
|
|
593
636
|
artifact_url = ""
|
|
594
637
|
console_url = ""
|
|
638
|
+
deploy_identifier = ""
|
|
595
639
|
if not skip_upload:
|
|
596
640
|
# Only require cloud SDKs and credentials when performing upload/deploy
|
|
597
641
|
_assert_cloud_sdks_available()
|
|
598
642
|
self.oss_config.ensure_valid()
|
|
599
643
|
self.modelstudio_config.ensure_valid()
|
|
600
|
-
|
|
644
|
+
(
|
|
645
|
+
artifact_url,
|
|
646
|
+
console_url,
|
|
647
|
+
deploy_identifier,
|
|
648
|
+
) = await self._upload_and_deploy(
|
|
601
649
|
wheel_path,
|
|
602
650
|
name,
|
|
651
|
+
agent_id,
|
|
652
|
+
agent_desc,
|
|
603
653
|
telemetry_enabled,
|
|
604
654
|
)
|
|
605
655
|
|
|
606
656
|
result: Dict[str, str] = {
|
|
607
|
-
"deploy_id": self.deploy_id,
|
|
608
657
|
"wheel_path": str(wheel_path),
|
|
609
658
|
"artifact_url": artifact_url,
|
|
610
659
|
"resource_name": name,
|
|
611
660
|
"workspace_id": self.modelstudio_config.workspace_id or "",
|
|
612
661
|
"url": console_url,
|
|
613
662
|
}
|
|
663
|
+
if deploy_identifier:
|
|
664
|
+
result["deploy_id"] = deploy_identifier
|
|
614
665
|
|
|
615
666
|
return result
|
|
616
667
|
except Exception as e:
|
|
@@ -103,12 +103,12 @@ class DockerImageBuilder:
|
|
|
103
103
|
"""
|
|
104
104
|
if not os.path.exists(build_context):
|
|
105
105
|
raise ValueError(f"Build context does not exist: {build_context}")
|
|
106
|
-
|
|
107
106
|
config = config or BuildConfig()
|
|
108
107
|
full_image_name = self.get_full_name(image_name, image_tag)
|
|
109
108
|
|
|
110
|
-
if not source_updated:
|
|
111
|
-
|
|
109
|
+
# if not source_updated:
|
|
110
|
+
# return full_image_name
|
|
111
|
+
logger.info(f"Source Updated: {source_updated}")
|
|
112
112
|
|
|
113
113
|
# Prepare docker build command
|
|
114
114
|
build_cmd = ["docker", "build", "-t", full_image_name]
|
agentscope_runtime/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
|
-
__version__ = "0.1.
|
|
2
|
+
__version__ = "0.1.5b2"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentscope-runtime
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5b2
|
|
4
4
|
Summary: A production-ready runtime framework for agent applications, providing secure sandboxed execution environments and scalable deployment solutions with multi-framework support.
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
|
|
2
|
-
agentscope_runtime/version.py,sha256=
|
|
2
|
+
agentscope_runtime/version.py,sha256=NQ_vS5I0r9KI9SQUzpGoV5TujO2B5Vk0kBgezNLFI2o,48
|
|
3
3
|
agentscope_runtime/engine/__init__.py,sha256=jsvYM1LlZVP4EFzsE5uu5ycgBU9CVnug7UyTzBmpX5g,213
|
|
4
4
|
agentscope_runtime/engine/runner.py,sha256=tlmE7ev4w6MxC1iTlJQT61EQsNrbWKlmvnZVRKxd_JY,7948
|
|
5
5
|
agentscope_runtime/engine/agents/__init__.py,sha256=xHp7FY6QM-nAhQAECi7xzrJkRkYZpAa5_zHRhO6Zogc,54
|
|
@@ -13,10 +13,10 @@ agentscope_runtime/engine/agents/agentscope_agent/agent.py,sha256=73x_KQCE7GjS5m
|
|
|
13
13
|
agentscope_runtime/engine/agents/agentscope_agent/hooks.py,sha256=iqx-TOQLXUQlQHc2cKjsDfgjO9UWw00AeS3wTymkfYE,5984
|
|
14
14
|
agentscope_runtime/engine/deployers/__init__.py,sha256=l6AVY1bFpsraNbdf7H-djukEfm7Wz63xka_xj3s6H48,362
|
|
15
15
|
agentscope_runtime/engine/deployers/base.py,sha256=0bb3zQiVE1jTMG0NCsjhcSeP7lhnbn1KPQRx1H5hues,494
|
|
16
|
-
agentscope_runtime/engine/deployers/cli_fc_deploy.py,sha256=
|
|
16
|
+
agentscope_runtime/engine/deployers/cli_fc_deploy.py,sha256=Pny04BVzkpTS-klBIaB331R1ReP49U7S77zuECUR2go,5612
|
|
17
17
|
agentscope_runtime/engine/deployers/kubernetes_deployer.py,sha256=G6eVeEqhKzBjU4BjNtZcUTaUOWfukaCkms_FCDJ7dz8,9286
|
|
18
18
|
agentscope_runtime/engine/deployers/local_deployer.py,sha256=wJ0wPkQBUJ8ttjpYRBzNzymP00ZDTaNL16k8tuoT9Ho,14911
|
|
19
|
-
agentscope_runtime/engine/deployers/modelstudio_deployer.py,sha256=
|
|
19
|
+
agentscope_runtime/engine/deployers/modelstudio_deployer.py,sha256=HUnujS_y1B9k_kXlenc6GsvlfLIkrmv23vTQU5V65YY,25161
|
|
20
20
|
agentscope_runtime/engine/deployers/adapter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
agentscope_runtime/engine/deployers/adapter/protocol_adapter.py,sha256=OpLfBWiFY_xC0uG53UYSeQuUnw7vZzvNnm5w6QFr9_w,737
|
|
22
22
|
agentscope_runtime/engine/deployers/adapter/a2a/__init__.py,sha256=3D6TxH-seVfR7_SqYttNSkGkZv3o_TS9R5XqUkVxed4,83
|
|
@@ -32,7 +32,7 @@ agentscope_runtime/engine/deployers/utils/deployment_modes.py,sha256=vr2UzA1bzAA
|
|
|
32
32
|
agentscope_runtime/engine/deployers/utils/package_project_utils.py,sha256=e43hDzLxzPnSJE5PLe5GGDq6iqL-3gvwGArsOgpoOPg,38304
|
|
33
33
|
agentscope_runtime/engine/deployers/utils/wheel_packager.py,sha256=zuhgMlfInn9kWd4AsZuOnVXGHOQp9g-BGm4fl_-gMQo,11825
|
|
34
34
|
agentscope_runtime/engine/deployers/utils/docker_image_utils/__init__.py,sha256=8y1N1N7VJduS4YdLL9EN1okB5DFOyvIiuHa9HQqm_RU,248
|
|
35
|
-
agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py,sha256=
|
|
35
|
+
agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py,sha256=KCH_AtyaYPCAwnFjjyVlS1GgtOt-V1y0mvDDKLvBZFI,13543
|
|
36
36
|
agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py,sha256=YfO_S-G8pYZ_E6XKHnCc3fmnU9V-ec0bCpvuYCpy2i8,7520
|
|
37
37
|
agentscope_runtime/engine/deployers/utils/docker_image_utils/runner_image_factory.py,sha256=wWbk-a36fRY0oQq8ssWDk6DfFhTsA3bardR6LRsNMWU,10093
|
|
38
38
|
agentscope_runtime/engine/deployers/utils/service_utils/__init__.py,sha256=KaCyUxNXHOSViZi50Ytz7YtS5XJ8jo3YcEmAqjdmw6Q,261
|
|
@@ -159,9 +159,9 @@ agentscope_runtime/sandbox/tools/browser/__init__.py,sha256=gXQx3tXclYqAhPDrXb1-
|
|
|
159
159
|
agentscope_runtime/sandbox/tools/browser/tool.py,sha256=EJ-uhHX9oIb4Q-hXQhTS-7VRJ-AdCRWXb9HVdOQ5JAc,19206
|
|
160
160
|
agentscope_runtime/sandbox/tools/filesystem/__init__.py,sha256=AJK88YU0ceJe99H7T-on2tgaow4ujqGJ1jwv0sd1TtE,607
|
|
161
161
|
agentscope_runtime/sandbox/tools/filesystem/tool.py,sha256=CPsl4TMf76BOSQtG1dqDcVdymciKhMknIG5FffoI2Eg,9847
|
|
162
|
-
agentscope_runtime-0.1.
|
|
163
|
-
agentscope_runtime-0.1.
|
|
164
|
-
agentscope_runtime-0.1.
|
|
165
|
-
agentscope_runtime-0.1.
|
|
166
|
-
agentscope_runtime-0.1.
|
|
167
|
-
agentscope_runtime-0.1.
|
|
162
|
+
agentscope_runtime-0.1.5b2.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
|
|
163
|
+
agentscope_runtime-0.1.5b2.dist-info/METADATA,sha256=VLmlFF2I8-LoknaPvYir2wqvPmTlT2peR2bOncTEyf4,21982
|
|
164
|
+
agentscope_runtime-0.1.5b2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
165
|
+
agentscope_runtime-0.1.5b2.dist-info/entry_points.txt,sha256=K8Tb95DEHzRW3AxsZAXghmqeDcPpO7n7rNmU5glfmaU,298
|
|
166
|
+
agentscope_runtime-0.1.5b2.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
|
|
167
|
+
agentscope_runtime-0.1.5b2.dist-info/RECORD,,
|
|
File without changes
|
{agentscope_runtime-0.1.5b1.dist-info → agentscope_runtime-0.1.5b2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{agentscope_runtime-0.1.5b1.dist-info → agentscope_runtime-0.1.5b2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|