agentscope-runtime 0.1.5b2__py3-none-any.whl → 0.2.0b1__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/common/__init__.py +0 -0
- agentscope_runtime/common/collections/in_memory_mapping.py +27 -0
- agentscope_runtime/common/collections/redis_mapping.py +42 -0
- agentscope_runtime/common/container_clients/__init__.py +0 -0
- agentscope_runtime/common/container_clients/agentrun_client.py +1098 -0
- agentscope_runtime/common/container_clients/docker_client.py +250 -0
- agentscope_runtime/engine/__init__.py +12 -0
- agentscope_runtime/engine/agents/agentscope_agent.py +488 -0
- agentscope_runtime/engine/agents/agno_agent.py +19 -18
- agentscope_runtime/engine/agents/autogen_agent.py +13 -8
- agentscope_runtime/engine/agents/utils.py +53 -0
- agentscope_runtime/engine/app/__init__.py +6 -0
- agentscope_runtime/engine/app/agent_app.py +239 -0
- agentscope_runtime/engine/app/base_app.py +181 -0
- agentscope_runtime/engine/app/celery_mixin.py +92 -0
- agentscope_runtime/engine/deployers/base.py +1 -0
- agentscope_runtime/engine/deployers/cli_fc_deploy.py +39 -20
- agentscope_runtime/engine/deployers/kubernetes_deployer.py +12 -5
- agentscope_runtime/engine/deployers/local_deployer.py +61 -3
- agentscope_runtime/engine/deployers/modelstudio_deployer.py +10 -11
- agentscope_runtime/engine/deployers/utils/docker_image_utils/runner_image_factory.py +9 -0
- agentscope_runtime/engine/deployers/utils/package_project_utils.py +234 -3
- agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py +567 -7
- agentscope_runtime/engine/deployers/utils/service_utils/standalone_main.py.j2 +211 -0
- agentscope_runtime/engine/deployers/utils/wheel_packager.py +1 -1
- agentscope_runtime/engine/helpers/helper.py +60 -41
- agentscope_runtime/engine/runner.py +35 -24
- agentscope_runtime/engine/schemas/agent_schemas.py +42 -0
- agentscope_runtime/engine/schemas/modelstudio_llm.py +14 -14
- agentscope_runtime/engine/services/sandbox_service.py +62 -70
- agentscope_runtime/engine/services/tablestore_memory_service.py +304 -0
- agentscope_runtime/engine/services/tablestore_rag_service.py +143 -0
- agentscope_runtime/engine/services/tablestore_session_history_service.py +293 -0
- agentscope_runtime/engine/services/utils/__init__.py +0 -0
- agentscope_runtime/engine/services/utils/tablestore_service_utils.py +352 -0
- agentscope_runtime/engine/tracing/__init__.py +9 -3
- agentscope_runtime/engine/tracing/asyncio_util.py +24 -0
- agentscope_runtime/engine/tracing/base.py +66 -34
- agentscope_runtime/engine/tracing/local_logging_handler.py +45 -31
- agentscope_runtime/engine/tracing/message_util.py +528 -0
- agentscope_runtime/engine/tracing/tracing_metric.py +20 -8
- agentscope_runtime/engine/tracing/tracing_util.py +130 -0
- agentscope_runtime/engine/tracing/wrapper.py +794 -169
- agentscope_runtime/sandbox/__init__.py +2 -0
- agentscope_runtime/sandbox/box/base/__init__.py +4 -0
- agentscope_runtime/sandbox/box/base/base_sandbox.py +6 -4
- agentscope_runtime/sandbox/box/browser/__init__.py +4 -0
- agentscope_runtime/sandbox/box/browser/browser_sandbox.py +10 -14
- agentscope_runtime/sandbox/box/dummy/__init__.py +4 -0
- agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py +2 -1
- agentscope_runtime/sandbox/box/filesystem/__init__.py +4 -0
- agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py +10 -7
- agentscope_runtime/sandbox/box/gui/__init__.py +4 -0
- agentscope_runtime/sandbox/box/gui/box/__init__.py +0 -0
- agentscope_runtime/sandbox/box/gui/gui_sandbox.py +81 -0
- agentscope_runtime/sandbox/box/sandbox.py +5 -2
- agentscope_runtime/sandbox/box/shared/routers/generic.py +20 -1
- agentscope_runtime/sandbox/box/training_box/__init__.py +4 -0
- agentscope_runtime/sandbox/box/training_box/training_box.py +10 -15
- agentscope_runtime/sandbox/build.py +143 -58
- agentscope_runtime/sandbox/client/http_client.py +87 -59
- agentscope_runtime/sandbox/client/training_client.py +0 -1
- agentscope_runtime/sandbox/constant.py +27 -1
- agentscope_runtime/sandbox/custom/custom_sandbox.py +7 -6
- agentscope_runtime/sandbox/custom/example.py +4 -3
- agentscope_runtime/sandbox/enums.py +1 -0
- agentscope_runtime/sandbox/manager/sandbox_manager.py +212 -106
- agentscope_runtime/sandbox/manager/server/app.py +82 -14
- agentscope_runtime/sandbox/manager/server/config.py +50 -3
- agentscope_runtime/sandbox/model/container.py +12 -23
- agentscope_runtime/sandbox/model/manager_config.py +93 -5
- agentscope_runtime/sandbox/registry.py +1 -1
- agentscope_runtime/sandbox/tools/gui/__init__.py +7 -0
- agentscope_runtime/sandbox/tools/gui/tool.py +77 -0
- agentscope_runtime/sandbox/tools/mcp_tool.py +6 -2
- agentscope_runtime/sandbox/tools/tool.py +4 -0
- agentscope_runtime/sandbox/utils.py +124 -0
- agentscope_runtime/version.py +1 -1
- {agentscope_runtime-0.1.5b2.dist-info → agentscope_runtime-0.2.0b1.dist-info}/METADATA +209 -101
- {agentscope_runtime-0.1.5b2.dist-info → agentscope_runtime-0.2.0b1.dist-info}/RECORD +94 -78
- agentscope_runtime/engine/agents/agentscope_agent/__init__.py +0 -6
- agentscope_runtime/engine/agents/agentscope_agent/agent.py +0 -401
- agentscope_runtime/engine/agents/agentscope_agent/hooks.py +0 -169
- agentscope_runtime/engine/agents/llm_agent.py +0 -51
- agentscope_runtime/engine/llms/__init__.py +0 -3
- agentscope_runtime/engine/llms/base_llm.py +0 -60
- agentscope_runtime/engine/llms/qwen_llm.py +0 -47
- agentscope_runtime/sandbox/manager/collections/in_memory_mapping.py +0 -22
- agentscope_runtime/sandbox/manager/collections/redis_mapping.py +0 -26
- agentscope_runtime/sandbox/manager/container_clients/__init__.py +0 -10
- agentscope_runtime/sandbox/manager/container_clients/docker_client.py +0 -422
- /agentscope_runtime/{sandbox/manager → common}/collections/__init__.py +0 -0
- /agentscope_runtime/{sandbox/manager → common}/collections/base_mapping.py +0 -0
- /agentscope_runtime/{sandbox/manager → common}/collections/base_queue.py +0 -0
- /agentscope_runtime/{sandbox/manager → common}/collections/base_set.py +0 -0
- /agentscope_runtime/{sandbox/manager → common}/collections/in_memory_queue.py +0 -0
- /agentscope_runtime/{sandbox/manager → common}/collections/in_memory_set.py +0 -0
- /agentscope_runtime/{sandbox/manager → common}/collections/redis_queue.py +0 -0
- /agentscope_runtime/{sandbox/manager → common}/collections/redis_set.py +0 -0
- /agentscope_runtime/{sandbox/manager → common}/container_clients/base_client.py +0 -0
- /agentscope_runtime/{sandbox/manager → common}/container_clients/kubernetes_client.py +0 -0
- {agentscope_runtime-0.1.5b2.dist-info → agentscope_runtime-0.2.0b1.dist-info}/WHEEL +0 -0
- {agentscope_runtime-0.1.5b2.dist-info → agentscope_runtime-0.2.0b1.dist-info}/entry_points.txt +0 -0
- {agentscope_runtime-0.1.5b2.dist-info → agentscope_runtime-0.2.0b1.dist-info}/licenses/LICENSE +0 -0
- {agentscope_runtime-0.1.5b2.dist-info → agentscope_runtime-0.2.0b1.dist-info}/top_level.txt +0 -0
|
@@ -1,22 +1,40 @@
|
|
|
1
1
|
agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
|
|
2
|
-
agentscope_runtime/version.py,sha256=
|
|
3
|
-
agentscope_runtime/
|
|
4
|
-
agentscope_runtime/
|
|
2
|
+
agentscope_runtime/version.py,sha256=8g2WlvxcMQcKNVtMNHlWLYtwX1Wxug8adENjO7j_r2U,49
|
|
3
|
+
agentscope_runtime/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
agentscope_runtime/common/collections/__init__.py,sha256=teQPF7huMB2yEX_CAFsmIJhQxH7ldHR7gr11W3jlx4o,582
|
|
5
|
+
agentscope_runtime/common/collections/base_mapping.py,sha256=IIVNwvaGVAiL6XxV0LvUHx-JmDvUc19iOGyRyAccMaI,361
|
|
6
|
+
agentscope_runtime/common/collections/base_queue.py,sha256=eCwb5eovwzSV83J_Nq3HX_4IQ8rjYw9wdeVRS5sRQHA,424
|
|
7
|
+
agentscope_runtime/common/collections/base_set.py,sha256=RasZxcXDkvdu89KhZc8Z_4TB5zIDTavCTLVVadfbB8w,449
|
|
8
|
+
agentscope_runtime/common/collections/in_memory_mapping.py,sha256=7qU-3C-CX5rPuDjWUH9lnH6yvKIwCfnRwMm2vXy1Olo,645
|
|
9
|
+
agentscope_runtime/common/collections/in_memory_queue.py,sha256=wTbmT77DI0KLYAgFbmcMl7sr5aB6WjyW_USQXqF9gJ0,612
|
|
10
|
+
agentscope_runtime/common/collections/in_memory_set.py,sha256=7qek5ZB3f_mdNJ4PUPoYv1yujHybdMjgpCYlFMosyMs,602
|
|
11
|
+
agentscope_runtime/common/collections/redis_mapping.py,sha256=OBEYiOsYknw3RLs_DFOFPQV1BxDKCimK1EdrlIGo7u0,1296
|
|
12
|
+
agentscope_runtime/common/collections/redis_queue.py,sha256=4MCIDs7SgSfdngTvqxWWv2H-8XTpFQOmXG4-fxN20ew,792
|
|
13
|
+
agentscope_runtime/common/collections/redis_set.py,sha256=eRCnMXc4hcDF2qyxFiNnrn2o4QjvtgDb6rEcblmV1o8,654
|
|
14
|
+
agentscope_runtime/common/container_clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
agentscope_runtime/common/container_clients/agentrun_client.py,sha256=nibFHR5N3tfNDcREi_2obm09a6GZoXV3iZkYq3NsLvY,40672
|
|
16
|
+
agentscope_runtime/common/container_clients/base_client.py,sha256=_uvxRh65lbMNXDcHjq01aYuNUrcxRlNzRtRIPMgWFGc,992
|
|
17
|
+
agentscope_runtime/common/container_clients/docker_client.py,sha256=eP7NcUWdTuV1wwF9FeuQCZBDrVOUVRiKOcz3GYD4K-o,7724
|
|
18
|
+
agentscope_runtime/common/container_clients/kubernetes_client.py,sha256=ul7NPKCRb2cWwFsuvEfph4xJvSN4VCmzsohdr4FHfZM,39788
|
|
19
|
+
agentscope_runtime/engine/__init__.py,sha256=L7hR6q4VqS6UkHYL8zLSstD7ly4mwxojqlD311Drgq8,418
|
|
20
|
+
agentscope_runtime/engine/runner.py,sha256=cy049XBOJamuoOuWYlWW4nLfLmvbj9TLX1-sib2b1yg,8396
|
|
5
21
|
agentscope_runtime/engine/agents/__init__.py,sha256=xHp7FY6QM-nAhQAECi7xzrJkRkYZpAa5_zHRhO6Zogc,54
|
|
6
|
-
agentscope_runtime/engine/agents/
|
|
7
|
-
agentscope_runtime/engine/agents/
|
|
22
|
+
agentscope_runtime/engine/agents/agentscope_agent.py,sha256=eMwbpk6xU-8ZBNNWr2-WULwhPaGwcJmsXFuPC6Emyc0,17453
|
|
23
|
+
agentscope_runtime/engine/agents/agno_agent.py,sha256=ORv0ivIk4yxQDdKLtwvjjW27FxGGb10vBwITEyfLiqA,6754
|
|
24
|
+
agentscope_runtime/engine/agents/autogen_agent.py,sha256=bpPLpCAz34QD3suJyc4KT3spR5h0ZlvS_FsSlHkU2K0,7844
|
|
8
25
|
agentscope_runtime/engine/agents/base_agent.py,sha256=fGf4MNKmfm_fsU2orTPLpt7TT5HkZZZYR05rhp5s7-E,782
|
|
9
26
|
agentscope_runtime/engine/agents/langgraph_agent.py,sha256=05Z5js7g9Dxy-MWj0W00jOtFMNnHzSPjlP3WIIVHTtQ,1416
|
|
10
|
-
agentscope_runtime/engine/agents/
|
|
11
|
-
agentscope_runtime/engine/
|
|
12
|
-
agentscope_runtime/engine/
|
|
13
|
-
agentscope_runtime/engine/
|
|
27
|
+
agentscope_runtime/engine/agents/utils.py,sha256=tddHPNLDWc2_ascNjPi4hLgCe_tC2FSmKsVgTVnrCys,1801
|
|
28
|
+
agentscope_runtime/engine/app/__init__.py,sha256=8asUQNRTjIEyoWjl955mn3gLkcYna8-CK4A810Eol0Y,87
|
|
29
|
+
agentscope_runtime/engine/app/agent_app.py,sha256=w8NdPTUWjMRZuJTD7wRVPkBv3ejaYlXGzQLlOkpyWrE,8145
|
|
30
|
+
agentscope_runtime/engine/app/base_app.py,sha256=pK73-knOkJMDWX2CMaNdrCpsIr5Z_TH5GHiZlrvs_qo,5966
|
|
31
|
+
agentscope_runtime/engine/app/celery_mixin.py,sha256=fDPc4loHieUXvgJYRYWAv-3qOSssdbfKH9Fiu-ShrIs,2929
|
|
14
32
|
agentscope_runtime/engine/deployers/__init__.py,sha256=l6AVY1bFpsraNbdf7H-djukEfm7Wz63xka_xj3s6H48,362
|
|
15
|
-
agentscope_runtime/engine/deployers/base.py,sha256=
|
|
16
|
-
agentscope_runtime/engine/deployers/cli_fc_deploy.py,sha256=
|
|
17
|
-
agentscope_runtime/engine/deployers/kubernetes_deployer.py,sha256=
|
|
18
|
-
agentscope_runtime/engine/deployers/local_deployer.py,sha256=
|
|
19
|
-
agentscope_runtime/engine/deployers/modelstudio_deployer.py,sha256=
|
|
33
|
+
agentscope_runtime/engine/deployers/base.py,sha256=hqDaLIzGizTxKq-_-n61lYyL21knZxCTSa90UScpLh4,519
|
|
34
|
+
agentscope_runtime/engine/deployers/cli_fc_deploy.py,sha256=3t1rjAfgM-SBatF6_WoF3u-zPL7z7D2ADXksGRpFMUs,6069
|
|
35
|
+
agentscope_runtime/engine/deployers/kubernetes_deployer.py,sha256=qxhAng5jpIusxaG4jAWWFnpi4PNeZhiURI-qfcHOWkA,9514
|
|
36
|
+
agentscope_runtime/engine/deployers/local_deployer.py,sha256=P2W2m1qahCzww0vBiieJyqvawwL5f5QORlZft5TaAu8,17482
|
|
37
|
+
agentscope_runtime/engine/deployers/modelstudio_deployer.py,sha256=vpzr231o8KqhxhMRu_cIZGuQM8iO585LeLszera6H8k,25257
|
|
20
38
|
agentscope_runtime/engine/deployers/adapter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
39
|
agentscope_runtime/engine/deployers/adapter/protocol_adapter.py,sha256=OpLfBWiFY_xC0uG53UYSeQuUnw7vZzvNnm5w6QFr9_w,737
|
|
22
40
|
agentscope_runtime/engine/deployers/adapter/a2a/__init__.py,sha256=3D6TxH-seVfR7_SqYttNSkGkZv3o_TS9R5XqUkVxed4,83
|
|
@@ -29,29 +47,27 @@ agentscope_runtime/engine/deployers/adapter/responses/response_api_agent_adapter
|
|
|
29
47
|
agentscope_runtime/engine/deployers/adapter/responses/response_api_protocol_adapter.py,sha256=rzicbo0QRqH2Vc2942UO4PsuGNAzXiypWa1wy-M5nyo,10337
|
|
30
48
|
agentscope_runtime/engine/deployers/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
49
|
agentscope_runtime/engine/deployers/utils/deployment_modes.py,sha256=vr2UzA1bzAAzxjToj9bVGzRWm47Za6w6cDI0nF1NMD0,448
|
|
32
|
-
agentscope_runtime/engine/deployers/utils/package_project_utils.py,sha256=
|
|
33
|
-
agentscope_runtime/engine/deployers/utils/wheel_packager.py,sha256=
|
|
50
|
+
agentscope_runtime/engine/deployers/utils/package_project_utils.py,sha256=CzQ-uw13hCTDCqfuvsHDYoyFPLryqIpUEFRA3u2vQIk,47242
|
|
51
|
+
agentscope_runtime/engine/deployers/utils/wheel_packager.py,sha256=ivCMCLltBXGoui-efpz6AnvcW0uW2daqnc55lYbrku4,11827
|
|
34
52
|
agentscope_runtime/engine/deployers/utils/docker_image_utils/__init__.py,sha256=8y1N1N7VJduS4YdLL9EN1okB5DFOyvIiuHa9HQqm_RU,248
|
|
35
53
|
agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py,sha256=KCH_AtyaYPCAwnFjjyVlS1GgtOt-V1y0mvDDKLvBZFI,13543
|
|
36
54
|
agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py,sha256=YfO_S-G8pYZ_E6XKHnCc3fmnU9V-ec0bCpvuYCpy2i8,7520
|
|
37
|
-
agentscope_runtime/engine/deployers/utils/docker_image_utils/runner_image_factory.py,sha256=
|
|
55
|
+
agentscope_runtime/engine/deployers/utils/docker_image_utils/runner_image_factory.py,sha256=coo-Kih2Wml4m9OAdN-0anBWIFpup0wx_cWE3rSR_ag,10482
|
|
38
56
|
agentscope_runtime/engine/deployers/utils/service_utils/__init__.py,sha256=KaCyUxNXHOSViZi50Ytz7YtS5XJ8jo3YcEmAqjdmw6Q,261
|
|
39
|
-
agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py,sha256=
|
|
57
|
+
agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py,sha256=ywdyvkkOxexaQfI2jzIYjXiwFGKukIdd3cKdyt9CQBk,38316
|
|
40
58
|
agentscope_runtime/engine/deployers/utils/service_utils/fastapi_templates.py,sha256=mw09nY7IBMG2b5HSUYiT1XtPb6xOGnnokZO8mUZBX3w,4879
|
|
41
59
|
agentscope_runtime/engine/deployers/utils/service_utils/process_manager.py,sha256=DW7VTnwOsf2Qln-rfJzGKKWpLdwfz9MSJ74rRMrsJLk,7661
|
|
42
60
|
agentscope_runtime/engine/deployers/utils/service_utils/service_config.py,sha256=D00CPmMnaX1j4ija_hSUEvmkVZClElzYVwpwrzN-J54,1911
|
|
43
61
|
agentscope_runtime/engine/deployers/utils/service_utils/service_factory.py,sha256=ZXq8LhLGl2DOF84r5kOj644bGStz_RljLjnAymd1_RA,6939
|
|
62
|
+
agentscope_runtime/engine/deployers/utils/service_utils/standalone_main.py.j2,sha256=-mPOAIvBt9KSroPmNwJ1FzLFbdyiGi3ZKU-QS4szeJE,7279
|
|
44
63
|
agentscope_runtime/engine/helpers/agent_api_builder.py,sha256=mSixBHF9QDro8UNqijq4A5bM7O89z1i2jz42hMAVdio,18779
|
|
45
|
-
agentscope_runtime/engine/helpers/helper.py,sha256=
|
|
46
|
-
agentscope_runtime/engine/llms/__init__.py,sha256=UV_lqTcsvcihP2OWERLWjiEbcSDbfieD-rFYRWX2xA0,84
|
|
47
|
-
agentscope_runtime/engine/llms/base_llm.py,sha256=Vvxlqom35qaSLYSyyh3hj-XsoyFxcf5BqXbvFBnbNE4,1664
|
|
48
|
-
agentscope_runtime/engine/llms/qwen_llm.py,sha256=_J-PpwSrKNSmQzO6KNzJlMd5t4m47YVKXp0fl-KYQmA,1271
|
|
64
|
+
agentscope_runtime/engine/helpers/helper.py,sha256=P4JvHbvhQaypitznc9NhSJv9QTZa7c6fKeKzTCvmKeQ,4914
|
|
49
65
|
agentscope_runtime/engine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
66
|
agentscope_runtime/engine/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
agentscope_runtime/engine/schemas/agent_schemas.py,sha256=
|
|
67
|
+
agentscope_runtime/engine/schemas/agent_schemas.py,sha256=V-blrkOFvwKPp1otLXqTicICNph-jCIAt0RSmlhziMo,23872
|
|
52
68
|
agentscope_runtime/engine/schemas/context.py,sha256=Qd2ee4HCYNmD5VHsacrScdpNq8q2aJwsRtsrBZarI9M,1550
|
|
53
69
|
agentscope_runtime/engine/schemas/embedding.py,sha256=yn6VaKPXkze0bvJuaLKzWIOus_AuT-8Z_XRABk4NH60,891
|
|
54
|
-
agentscope_runtime/engine/schemas/modelstudio_llm.py,sha256=
|
|
70
|
+
agentscope_runtime/engine/schemas/modelstudio_llm.py,sha256=4f-vnqmH0Csm5Gcq0N1-b0ReW8hAJX875ppjIY0mgCY,9771
|
|
55
71
|
agentscope_runtime/engine/schemas/oai_llm.py,sha256=850Wj9VhbStz6qFJy7xTp630l6HwvYnQS25hiwOGAWY,16790
|
|
56
72
|
agentscope_runtime/engine/schemas/realtime.py,sha256=caTRKLfCF9v-tKbdurvqMZ1myM9-ft2UeCNuiUIUmEs,7144
|
|
57
73
|
agentscope_runtime/engine/services/__init__.py,sha256=SAsmwIr8etoUbqz5W1K2pH5ONlFzooXMQ0UFXTXfHwM,271
|
|
@@ -66,47 +82,59 @@ agentscope_runtime/engine/services/redis_memory_service.py,sha256=2A6ouYghs80jby
|
|
|
66
82
|
agentscope_runtime/engine/services/redis_session_history_service.py,sha256=wQ_1d4In5nQkP3Hx-_xRxvgyuXTCLowITiNlaw9Z4II,5086
|
|
67
83
|
agentscope_runtime/engine/services/reme_personal_memory_service.py,sha256=Cmd0FpHulv8h5IXWKnymHMViXSr2Z8dFtXDj3d8y4Vo,2962
|
|
68
84
|
agentscope_runtime/engine/services/reme_task_memory_service.py,sha256=d1QV9e1ifAQIO4Kr-Q9gzx7OhKH_CkUhuyygHRLprWo,338
|
|
69
|
-
agentscope_runtime/engine/services/sandbox_service.py,sha256=
|
|
85
|
+
agentscope_runtime/engine/services/sandbox_service.py,sha256=WJp9dZSHYm3eJkw7EoLLj9LgTCjnvrH6xxhWucIKYbI,6038
|
|
70
86
|
agentscope_runtime/engine/services/session_history_service.py,sha256=C77KwRclXbnMDE3iT5WHglRFYI0aSwDg4EChJCgknzQ,8088
|
|
71
|
-
agentscope_runtime/engine/
|
|
72
|
-
agentscope_runtime/engine/
|
|
73
|
-
agentscope_runtime/engine/
|
|
74
|
-
agentscope_runtime/engine/
|
|
75
|
-
agentscope_runtime/engine/
|
|
76
|
-
agentscope_runtime/
|
|
77
|
-
agentscope_runtime/
|
|
78
|
-
agentscope_runtime/
|
|
79
|
-
agentscope_runtime/
|
|
87
|
+
agentscope_runtime/engine/services/tablestore_memory_service.py,sha256=UX3daPzkvFs6YXs-7KirAe_TtD8zXJKKE49rkL4W5y0,10486
|
|
88
|
+
agentscope_runtime/engine/services/tablestore_rag_service.py,sha256=uGx8I8OGFJPBQs_lTd8Ew-OXMEivEODHA1i9yiFh3Ns,5188
|
|
89
|
+
agentscope_runtime/engine/services/tablestore_session_history_service.py,sha256=peCon6o4Ryyiu3E2AQDgbB8NFsdPi4tIZK4TEiuvFUA,10353
|
|
90
|
+
agentscope_runtime/engine/services/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
+
agentscope_runtime/engine/services/utils/tablestore_service_utils.py,sha256=tqJ6RdxHZSGBorZ12iSMdMSbvqUG_c_rtCKrWMaLANE,11005
|
|
92
|
+
agentscope_runtime/engine/tracing/__init__.py,sha256=yUmXYDqApqGOlZJqJ_jb8TvSYUAUk4VInmNSSiICGoI,1237
|
|
93
|
+
agentscope_runtime/engine/tracing/asyncio_util.py,sha256=aPaOPiLq3YVm6XS_wn8zWK2pK3aHwV0bRwD62pAJ9xQ,685
|
|
94
|
+
agentscope_runtime/engine/tracing/base.py,sha256=Em3Er14PxTb953Qkg-BxLIFziZP68Vg246EytpBPFEc,10621
|
|
95
|
+
agentscope_runtime/engine/tracing/local_logging_handler.py,sha256=scx_eJeZHonLYklohmaDAikKerxVrPRlZAUQB2KmNJU,12447
|
|
96
|
+
agentscope_runtime/engine/tracing/message_util.py,sha256=VGDS2P6XemrWX-6_KUt4EuKqcQgxAwIKTYJAmCm5OUc,18550
|
|
97
|
+
agentscope_runtime/engine/tracing/tracing_metric.py,sha256=X1m6yjLx_hnbmozsCxiW9X3t1gWgrKlbsYEfCMqNSx0,2375
|
|
98
|
+
agentscope_runtime/engine/tracing/tracing_util.py,sha256=MnPQ4SeRPciv5WHK_Ku3OkGrS15Ov8au3houyUDamD8,3748
|
|
99
|
+
agentscope_runtime/engine/tracing/wrapper.py,sha256=n6x2tDOBmWxO7oobQnjTbi1LBj8joneJgpgelok3oRU,30892
|
|
100
|
+
agentscope_runtime/sandbox/__init__.py,sha256=2q36ii6765TpuRET1cHwd69HgOEXjxxCpKD8d-Mrahs,440
|
|
101
|
+
agentscope_runtime/sandbox/build.py,sha256=RAZkV0rFp24BNmJBZiMYAQ4KafUAELO3V1Ys6Afodwc,8451
|
|
102
|
+
agentscope_runtime/sandbox/constant.py,sha256=NzpxJ1hBDkP9J_c45FsG3iDgBkfEkIlkSKjc4X78tiU,1011
|
|
103
|
+
agentscope_runtime/sandbox/enums.py,sha256=pccPle1bXihQrZHfgN4XKRKHmBNhJA7P2XT4jgT0HWI,1896
|
|
80
104
|
agentscope_runtime/sandbox/mcp_server.py,sha256=UT3aRZqyeHqEhhm-wZ0Ilhew3eDMHzz9DCN6Qb-eKFk,6012
|
|
81
|
-
agentscope_runtime/sandbox/registry.py,sha256=
|
|
105
|
+
agentscope_runtime/sandbox/registry.py,sha256=3ukwbTOjSINWH7DIOmG1iPgze5nb-zXl2X8M7_AeBwg,4190
|
|
106
|
+
agentscope_runtime/sandbox/utils.py,sha256=l0gpIM3KjPMlVUtrhOia3Se4HbA4U_MuylySjpoHdrY,3970
|
|
82
107
|
agentscope_runtime/sandbox/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
|
-
agentscope_runtime/sandbox/box/sandbox.py,sha256
|
|
84
|
-
agentscope_runtime/sandbox/box/base/__init__.py,sha256=
|
|
85
|
-
agentscope_runtime/sandbox/box/base/base_sandbox.py,sha256=
|
|
108
|
+
agentscope_runtime/sandbox/box/sandbox.py,sha256=-BWme4Zxx9xWssRXf6KzH3RVueR9MuzcOcN8Gdu7mTg,5309
|
|
109
|
+
agentscope_runtime/sandbox/box/base/__init__.py,sha256=a68IgljSWvNn1mWaCOeEm2C-7Gf7JiUdDnJpBfID198,89
|
|
110
|
+
agentscope_runtime/sandbox/box/base/base_sandbox.py,sha256=tV8Ox_AUSUkzrwhjx53J5azLVUipxOQ9y8JTAQznbWw,1085
|
|
86
111
|
agentscope_runtime/sandbox/box/base/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
-
agentscope_runtime/sandbox/box/browser/__init__.py,sha256=
|
|
88
|
-
agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=
|
|
112
|
+
agentscope_runtime/sandbox/box/browser/__init__.py,sha256=thrkAvtLQ23jR8sM_bSsfmsqFiwpExgh72vnrVUcweQ,98
|
|
113
|
+
agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=wDJb-CBSuzBl2i3NjtkgXFLJppsiooSAlfjzI3Bhs-Q,5542
|
|
89
114
|
agentscope_runtime/sandbox/box/browser/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
|
-
agentscope_runtime/sandbox/box/dummy/__init__.py,sha256=
|
|
91
|
-
agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py,sha256=
|
|
92
|
-
agentscope_runtime/sandbox/box/filesystem/__init__.py,sha256=
|
|
93
|
-
agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py,sha256=
|
|
115
|
+
agentscope_runtime/sandbox/box/dummy/__init__.py,sha256=RErHmUx7hFXX69nohtYBS_QSHEWENZHZbWG3434ZDls,92
|
|
116
|
+
agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py,sha256=KAsCEbgZu48qklNMWLd7yPCb7TP1RPFXVi8CQ9Z-kPo,705
|
|
117
|
+
agentscope_runtime/sandbox/box/filesystem/__init__.py,sha256=OsYCqFfattl6y5M55XMwHTeXVnb-pL3cWMJKjTZIu-s,107
|
|
118
|
+
agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py,sha256=VlSwBtDi-AK1PWzQTKgNPLB1NHgK1Ayu8N4Q3qOyZ20,2682
|
|
94
119
|
agentscope_runtime/sandbox/box/filesystem/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
120
|
+
agentscope_runtime/sandbox/box/gui/__init__.py,sha256=-tzNU2yYdKjXD83PlNaMtsu5nqO1yBi2LDevIda2eqo,108
|
|
121
|
+
agentscope_runtime/sandbox/box/gui/gui_sandbox.py,sha256=RYvwwdtXMaX95P3jUrzshWW3cIYmI9ezfuLkRRf5VcY,2594
|
|
122
|
+
agentscope_runtime/sandbox/box/gui/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
123
|
agentscope_runtime/sandbox/box/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
124
|
agentscope_runtime/sandbox/box/shared/app.py,sha256=bw6l0XPVF86yuh0jO_Sx9S-B-luFE3U3lIb6Qjc3dGU,1107
|
|
97
125
|
agentscope_runtime/sandbox/box/shared/dependencies/__init__.py,sha256=e1x-6L6vsBbQBrtjrDsdK8eqk-lCqxOIPrSqWyxoG50,98
|
|
98
126
|
agentscope_runtime/sandbox/box/shared/dependencies/deps.py,sha256=pavJWhin5Dbc1f452PDNaCYo9RkK-y95dwLyYZQMOPQ,687
|
|
99
127
|
agentscope_runtime/sandbox/box/shared/routers/__init__.py,sha256=QokVfRhfBftiXktqpn3iqdKcSz7TcSn-4Kbf4QhOUXs,273
|
|
100
|
-
agentscope_runtime/sandbox/box/shared/routers/generic.py,sha256=
|
|
128
|
+
agentscope_runtime/sandbox/box/shared/routers/generic.py,sha256=5hIwNPpC2Pu4uTqKWGcymBKXdKqbYEsyOYD4Vv7XR44,5164
|
|
101
129
|
agentscope_runtime/sandbox/box/shared/routers/mcp.py,sha256=_2492A88qba3hUPV67oexfWm-mHEFcr9ygzW-Qqhyi0,6046
|
|
102
130
|
agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py,sha256=aQEUimxeeve-A-VKx99YeMR4nw7KRpGqzIpMiyNU9dQ,5865
|
|
103
131
|
agentscope_runtime/sandbox/box/shared/routers/runtime_watcher.py,sha256=v4jAGYtJaYsRJaSTv7e7hmDLHWVAtJqnSnpPq-kFcmU,5344
|
|
104
132
|
agentscope_runtime/sandbox/box/shared/routers/workspace.py,sha256=cQMbWNQG7ojHZfWN0xFqEivhlpQO4qEDo3amkhVHUBg,9748
|
|
105
|
-
agentscope_runtime/sandbox/box/training_box/__init__.py,sha256=
|
|
133
|
+
agentscope_runtime/sandbox/box/training_box/__init__.py,sha256=vG2MQviqdmIUSjHmHiC5N_kiHinMnvOdjwW0AUdfZ3Y,125
|
|
106
134
|
agentscope_runtime/sandbox/box/training_box/base.py,sha256=iUPsfA8oiGDR3BMVU7qisvO-UT8HtCx78ayW67DQ0WQ,3307
|
|
107
135
|
agentscope_runtime/sandbox/box/training_box/env_service.py,sha256=YoMswhQrX8VmE202tpFq-bQo6gOd2oemBhTG_MD9Rwg,22616
|
|
108
136
|
agentscope_runtime/sandbox/box/training_box/registry.py,sha256=6fTMZvJbakhEqkaO61K-wIfX6uau7g4nFP63bQ7jiNI,1362
|
|
109
|
-
agentscope_runtime/sandbox/box/training_box/training_box.py,sha256=
|
|
137
|
+
agentscope_runtime/sandbox/box/training_box/training_box.py,sha256=b4FS8KPbVCIKeqP0bunekFzLopeCphQBLnH3ADA9jg0,10186
|
|
110
138
|
agentscope_runtime/sandbox/box/training_box/environments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
139
|
agentscope_runtime/sandbox/box/training_box/environments/appworld/appworld_env.py,sha256=FJc0eb6bnKL6lxx_4EKWr7kmKLi2jLsykNstecXEqkc,27786
|
|
112
140
|
agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_dataprocess.py,sha256=jkg8wDwDXdZZU7q777tnyqc-C9hRlPF0pffJ4DX5upQ,7352
|
|
@@ -114,30 +142,16 @@ agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_env.py,sha256
|
|
|
114
142
|
agentscope_runtime/sandbox/box/training_box/environments/bfcl/env_handler.py,sha256=T-W9w4nKI7_BXgF9caqV3KMeX5d6yvdfhQu0o2oWTUE,30114
|
|
115
143
|
agentscope_runtime/sandbox/box/training_box/src/trajectory.py,sha256=cFr3uVUPq5gHKPa6ALi7QCLBVkgYOyPgyJrOzgBHf3k,7885
|
|
116
144
|
agentscope_runtime/sandbox/client/__init__.py,sha256=KiNsTToc1jICqCC1BcH762jZgHuOkCPiG32oXGo6dQE,176
|
|
117
|
-
agentscope_runtime/sandbox/client/http_client.py,sha256=
|
|
118
|
-
agentscope_runtime/sandbox/client/training_client.py,sha256=
|
|
145
|
+
agentscope_runtime/sandbox/client/http_client.py,sha256=ra5vACr862VRRPmogYZkRqS2PXACcDYwvbtIE7NqaMY,17940
|
|
146
|
+
agentscope_runtime/sandbox/client/training_client.py,sha256=WIhGBib2IWQZwUoSJUn8kuIGrtd6Yz3VOxCh0tft630,7625
|
|
119
147
|
agentscope_runtime/sandbox/custom/__init__.py,sha256=wpu0DlzdLohYzOVM9yZloIWid3w_ME6dPtOjCZKbRZ8,463
|
|
120
|
-
agentscope_runtime/sandbox/custom/custom_sandbox.py,sha256=
|
|
121
|
-
agentscope_runtime/sandbox/custom/example.py,sha256=
|
|
148
|
+
agentscope_runtime/sandbox/custom/custom_sandbox.py,sha256=ZKE7otTimLZ2-ZV9PMVLRA6P1hH0a4fT-d_K4Ga59og,1008
|
|
149
|
+
agentscope_runtime/sandbox/custom/example.py,sha256=iU5G7Vb-oq3wsJ_Kl8oFAwi0HNbt5V_8fWAAyiQ8RuY,964
|
|
122
150
|
agentscope_runtime/sandbox/manager/__init__.py,sha256=KNHc1uDaUWBH_ZnWjH5NHRBiQM_zDyi9B2xKVNtAWIg,98
|
|
123
|
-
agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=
|
|
124
|
-
agentscope_runtime/sandbox/manager/collections/__init__.py,sha256=teQPF7huMB2yEX_CAFsmIJhQxH7ldHR7gr11W3jlx4o,582
|
|
125
|
-
agentscope_runtime/sandbox/manager/collections/base_mapping.py,sha256=IIVNwvaGVAiL6XxV0LvUHx-JmDvUc19iOGyRyAccMaI,361
|
|
126
|
-
agentscope_runtime/sandbox/manager/collections/base_queue.py,sha256=eCwb5eovwzSV83J_Nq3HX_4IQ8rjYw9wdeVRS5sRQHA,424
|
|
127
|
-
agentscope_runtime/sandbox/manager/collections/base_set.py,sha256=RasZxcXDkvdu89KhZc8Z_4TB5zIDTavCTLVVadfbB8w,449
|
|
128
|
-
agentscope_runtime/sandbox/manager/collections/in_memory_mapping.py,sha256=TV8OzoU-0vDn6zO-At-j3xWHaLqBFkH2ymIWqfLvRpA,526
|
|
129
|
-
agentscope_runtime/sandbox/manager/collections/in_memory_queue.py,sha256=wTbmT77DI0KLYAgFbmcMl7sr5aB6WjyW_USQXqF9gJ0,612
|
|
130
|
-
agentscope_runtime/sandbox/manager/collections/in_memory_set.py,sha256=7qek5ZB3f_mdNJ4PUPoYv1yujHybdMjgpCYlFMosyMs,602
|
|
131
|
-
agentscope_runtime/sandbox/manager/collections/redis_mapping.py,sha256=CmI_C83gQlbnZWz3vwFe5rySXxND11JnB8-iZbNooxo,688
|
|
132
|
-
agentscope_runtime/sandbox/manager/collections/redis_queue.py,sha256=4MCIDs7SgSfdngTvqxWWv2H-8XTpFQOmXG4-fxN20ew,792
|
|
133
|
-
agentscope_runtime/sandbox/manager/collections/redis_set.py,sha256=eRCnMXc4hcDF2qyxFiNnrn2o4QjvtgDb6rEcblmV1o8,654
|
|
134
|
-
agentscope_runtime/sandbox/manager/container_clients/__init__.py,sha256=G5TTwLv_UgWUDwtwr6oohJXuGW3gAwxmgD1VhZH3zs8,225
|
|
135
|
-
agentscope_runtime/sandbox/manager/container_clients/base_client.py,sha256=_uvxRh65lbMNXDcHjq01aYuNUrcxRlNzRtRIPMgWFGc,992
|
|
136
|
-
agentscope_runtime/sandbox/manager/container_clients/docker_client.py,sha256=rmm2mUDfot81kQ7H6O5fI0QHXvCDOsepUdlNnC5ouVU,13407
|
|
137
|
-
agentscope_runtime/sandbox/manager/container_clients/kubernetes_client.py,sha256=ul7NPKCRb2cWwFsuvEfph4xJvSN4VCmzsohdr4FHfZM,39788
|
|
151
|
+
agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=watibBh_ujgJ7g4GW3pVRruhmHw0IVnWyEACLrR8Jo4,27533
|
|
138
152
|
agentscope_runtime/sandbox/manager/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
|
-
agentscope_runtime/sandbox/manager/server/app.py,sha256=
|
|
140
|
-
agentscope_runtime/sandbox/manager/server/config.py,sha256=
|
|
153
|
+
agentscope_runtime/sandbox/manager/server/app.py,sha256=MIq8B8TBuwg7JQNgVLzjYjC9Fq2r2m5dcmgeyKk5mcA,13045
|
|
154
|
+
agentscope_runtime/sandbox/manager/server/config.py,sha256=L5Gz0CzmX7-teWQsciUgW4Fmg82G_WjmU7TUi7_bcuM,3944
|
|
141
155
|
agentscope_runtime/sandbox/manager/server/models.py,sha256=rCibF0HsotFcqsQVTSUoOTJCFQU3oqKvpOiWMWIRLyY,304
|
|
142
156
|
agentscope_runtime/sandbox/manager/storage/__init__.py,sha256=jGmpfXV1E2X7AqkGeF1xu1EHiSTvbH3TSIviLbKBFh4,210
|
|
143
157
|
agentscope_runtime/sandbox/manager/storage/data_storage.py,sha256=mGwf7LYbp_fRjLN9BZay6cm3eNziEdU6OlSBeFnIBMQ,475
|
|
@@ -145,13 +159,13 @@ agentscope_runtime/sandbox/manager/storage/local_storage.py,sha256=o6fkV-yUtBihh
|
|
|
145
159
|
agentscope_runtime/sandbox/manager/storage/oss_storage.py,sha256=fIUxgOkOaH_1vlgWBnCM-e4UvD3xS_ycFe2yvSyXzBE,2970
|
|
146
160
|
agentscope_runtime/sandbox/model/__init__.py,sha256=WoDOSD_67T-UkZdXOtJzwG4-0E8ABwUBJF6WSCs_sO0,182
|
|
147
161
|
agentscope_runtime/sandbox/model/api.py,sha256=Sjxw6DHkGa8Sp5dUU5kaajkHPj7eiX1EgFZk-zOPafM,400
|
|
148
|
-
agentscope_runtime/sandbox/model/container.py,sha256=
|
|
149
|
-
agentscope_runtime/sandbox/model/manager_config.py,sha256=
|
|
162
|
+
agentscope_runtime/sandbox/model/container.py,sha256=f7dj4ir4sxXjZ_zm4iEkjskraacZLX2SR_l1WSl0FOo,1405
|
|
163
|
+
agentscope_runtime/sandbox/model/manager_config.py,sha256=0zaxRJnt-r9O0iPSUfT5I6ysUo-B3xufB2nS1IeBMf4,8016
|
|
150
164
|
agentscope_runtime/sandbox/tools/__init__.py,sha256=ioRqvKFLma8Vq0ePwOR5MekijpcHs2USNYA4Dnr-e6M,287
|
|
151
165
|
agentscope_runtime/sandbox/tools/function_tool.py,sha256=mH4dq3M26pdk-XqxIm1wtsvQz5i8SXcP4Gz0-7_L7cQ,10309
|
|
152
|
-
agentscope_runtime/sandbox/tools/mcp_tool.py,sha256=
|
|
166
|
+
agentscope_runtime/sandbox/tools/mcp_tool.py,sha256=9wvzS_t_mlHlUlXvVigV9YcxWAh0BJqJw5K0zvoI_vQ,6213
|
|
153
167
|
agentscope_runtime/sandbox/tools/sandbox_tool.py,sha256=wHkgixb0dy6DexXbfXVOKUFfLL9QOI2H5oiQ2NntoWM,3067
|
|
154
|
-
agentscope_runtime/sandbox/tools/tool.py,sha256=
|
|
168
|
+
agentscope_runtime/sandbox/tools/tool.py,sha256=8QIpHtMoHZ7Rq6IA1d-RAsRqp2HVSeRAgiXCK6MBzlc,7432
|
|
155
169
|
agentscope_runtime/sandbox/tools/utils.py,sha256=QksPQK-2DszaQsRw4Srug5hEwrf6hothf-Xp8a1056c,2098
|
|
156
170
|
agentscope_runtime/sandbox/tools/base/__init__.py,sha256=Aboc1tFjgWriw4gqDrX5axpC_Bx469mcn8l8nbNdSXg,143
|
|
157
171
|
agentscope_runtime/sandbox/tools/base/tool.py,sha256=5rCZ_SdDiRCZyQfdsWC1FPq7jwnSSbnKxyjQQK3PAS8,1347
|
|
@@ -159,9 +173,11 @@ agentscope_runtime/sandbox/tools/browser/__init__.py,sha256=gXQx3tXclYqAhPDrXb1-
|
|
|
159
173
|
agentscope_runtime/sandbox/tools/browser/tool.py,sha256=EJ-uhHX9oIb4Q-hXQhTS-7VRJ-AdCRWXb9HVdOQ5JAc,19206
|
|
160
174
|
agentscope_runtime/sandbox/tools/filesystem/__init__.py,sha256=AJK88YU0ceJe99H7T-on2tgaow4ujqGJ1jwv0sd1TtE,607
|
|
161
175
|
agentscope_runtime/sandbox/tools/filesystem/tool.py,sha256=CPsl4TMf76BOSQtG1dqDcVdymciKhMknIG5FffoI2Eg,9847
|
|
162
|
-
agentscope_runtime
|
|
163
|
-
agentscope_runtime
|
|
164
|
-
agentscope_runtime-0.
|
|
165
|
-
agentscope_runtime-0.
|
|
166
|
-
agentscope_runtime-0.
|
|
167
|
-
agentscope_runtime-0.
|
|
176
|
+
agentscope_runtime/sandbox/tools/gui/__init__.py,sha256=agr8SMmuLbtk7aTMhnD-b70bbYbYI-ymPS5yPw6HRyM,91
|
|
177
|
+
agentscope_runtime/sandbox/tools/gui/tool.py,sha256=8gLZgEMJDiGoob56ptnvnjh19dWw40XsDL93AGWplto,4064
|
|
178
|
+
agentscope_runtime-0.2.0b1.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
|
|
179
|
+
agentscope_runtime-0.2.0b1.dist-info/METADATA,sha256=sPub-MnF6Pmmbt83R-t816-zxuxEAihMnxwfNT45vzM,29126
|
|
180
|
+
agentscope_runtime-0.2.0b1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
181
|
+
agentscope_runtime-0.2.0b1.dist-info/entry_points.txt,sha256=K8Tb95DEHzRW3AxsZAXghmqeDcPpO7n7rNmU5glfmaU,298
|
|
182
|
+
agentscope_runtime-0.2.0b1.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
|
|
183
|
+
agentscope_runtime-0.2.0b1.dist-info/RECORD,,
|