agentscope-runtime 1.0.4__py3-none-any.whl → 1.0.5__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/adapters/agentscope/stream.py +1 -1
- agentscope_runtime/adapters/langgraph/stream.py +120 -70
- agentscope_runtime/cli/commands/deploy.py +465 -1
- agentscope_runtime/cli/commands/stop.py +16 -0
- agentscope_runtime/common/container_clients/__init__.py +52 -0
- agentscope_runtime/common/container_clients/agentrun_client.py +6 -4
- agentscope_runtime/common/container_clients/boxlite_client.py +442 -0
- agentscope_runtime/common/container_clients/docker_client.py +0 -20
- agentscope_runtime/common/container_clients/fc_client.py +6 -4
- agentscope_runtime/common/container_clients/gvisor_client.py +38 -0
- agentscope_runtime/common/container_clients/knative_client.py +1 -0
- agentscope_runtime/common/utils/deprecation.py +164 -0
- agentscope_runtime/engine/app/agent_app.py +16 -4
- agentscope_runtime/engine/deployers/__init__.py +31 -20
- agentscope_runtime/engine/deployers/adapter/__init__.py +8 -0
- agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py +9 -8
- agentscope_runtime/engine/deployers/adapter/a2a/nacos_a2a_registry.py +19 -1
- agentscope_runtime/engine/deployers/adapter/agui/__init__.py +8 -0
- agentscope_runtime/engine/deployers/adapter/agui/agui_adapter_utils.py +652 -0
- agentscope_runtime/engine/deployers/adapter/agui/agui_protocol_adapter.py +225 -0
- agentscope_runtime/engine/deployers/pai_deployer.py +2335 -0
- agentscope_runtime/engine/deployers/utils/net_utils.py +37 -0
- agentscope_runtime/engine/deployers/utils/oss_utils.py +38 -0
- agentscope_runtime/engine/deployers/utils/package.py +46 -42
- agentscope_runtime/engine/helpers/agent_api_client.py +372 -0
- agentscope_runtime/engine/runner.py +1 -0
- agentscope_runtime/engine/schemas/agent_schemas.py +9 -3
- agentscope_runtime/engine/services/agent_state/__init__.py +7 -0
- agentscope_runtime/engine/services/memory/__init__.py +7 -0
- agentscope_runtime/engine/services/memory/redis_memory_service.py +15 -16
- agentscope_runtime/engine/services/session_history/__init__.py +7 -0
- agentscope_runtime/engine/tracing/local_logging_handler.py +2 -3
- agentscope_runtime/sandbox/box/sandbox.py +4 -0
- agentscope_runtime/sandbox/manager/sandbox_manager.py +11 -25
- agentscope_runtime/sandbox/manager/server/config.py +3 -1
- agentscope_runtime/sandbox/model/manager_config.py +11 -9
- agentscope_runtime/tools/modelstudio_memory/__init__.py +106 -0
- agentscope_runtime/tools/modelstudio_memory/base.py +220 -0
- agentscope_runtime/tools/modelstudio_memory/config.py +86 -0
- agentscope_runtime/tools/modelstudio_memory/core.py +594 -0
- agentscope_runtime/tools/modelstudio_memory/exceptions.py +60 -0
- agentscope_runtime/tools/modelstudio_memory/schemas.py +253 -0
- agentscope_runtime/version.py +1 -1
- {agentscope_runtime-1.0.4.dist-info → agentscope_runtime-1.0.5.dist-info}/METADATA +101 -62
- {agentscope_runtime-1.0.4.dist-info → agentscope_runtime-1.0.5.dist-info}/RECORD +49 -34
- {agentscope_runtime-1.0.4.dist-info → agentscope_runtime-1.0.5.dist-info}/WHEEL +0 -0
- {agentscope_runtime-1.0.4.dist-info → agentscope_runtime-1.0.5.dist-info}/entry_points.txt +0 -0
- {agentscope_runtime-1.0.4.dist-info → agentscope_runtime-1.0.5.dist-info}/licenses/LICENSE +0 -0
- {agentscope_runtime-1.0.4.dist-info → agentscope_runtime-1.0.5.dist-info}/top_level.txt +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
|
|
2
|
-
agentscope_runtime/version.py,sha256=
|
|
2
|
+
agentscope_runtime/version.py,sha256=nZF9Q_d4twa8lcfzOPRiseHFTBnGDhJomlV6zhhhjJs,47
|
|
3
3
|
agentscope_runtime/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
agentscope_runtime/adapters/utils.py,sha256=lL6RrSwxyj2WHWgUaCtscbP9aD_Rf3UY_FCtDPJ_ISI,180
|
|
5
5
|
agentscope_runtime/adapters/agentscope/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
agentscope_runtime/adapters/agentscope/message.py,sha256=Bhb3V6TOv8s9uAhuZSl7uN728bFvnDzRYqejs0u_bNU,23057
|
|
7
|
-
agentscope_runtime/adapters/agentscope/stream.py,sha256=
|
|
7
|
+
agentscope_runtime/adapters/agentscope/stream.py,sha256=cjOpxL_aPFNL5oCb3XSQbmuJpSZ1E-mi8j1AP6TrQjI,23065
|
|
8
8
|
agentscope_runtime/adapters/agentscope/long_term_memory/__init__.py,sha256=Hg4ghENb8u49svojY_q89HEjKImvLjKMQwmL8Y3wGgE,135
|
|
9
9
|
agentscope_runtime/adapters/agentscope/long_term_memory/_long_term_memory_adapter.py,sha256=dwUS6-xvn9g4VlVcHL89gCbHjdw-VWKEBNpVkmzUAgE,7873
|
|
10
10
|
agentscope_runtime/adapters/agentscope/memory/__init__.py,sha256=zqVxvsJv1t1mjJKdOjtP6dUGNOrc0LLwZx_yZCNq7Xs,137
|
|
@@ -20,7 +20,7 @@ agentscope_runtime/adapters/autogen/tool/__init__.py,sha256=FJXusI2gPKYOuAIN_eqM
|
|
|
20
20
|
agentscope_runtime/adapters/autogen/tool/tool.py,sha256=NFSitBvL5uP3sVwHQfxprbsG6B39SmDVlT2vHTguUII,6587
|
|
21
21
|
agentscope_runtime/adapters/langgraph/__init__.py,sha256=yLNYabjNXn6BgIVdWCP7m3DOqzqOFsVm_Qu1FV5MyeU,309
|
|
22
22
|
agentscope_runtime/adapters/langgraph/message.py,sha256=T2RNsrhCSkyelo4NRZeZf7abK1iK8VvpyEWUunS_XZQ,9267
|
|
23
|
-
agentscope_runtime/adapters/langgraph/stream.py,sha256=
|
|
23
|
+
agentscope_runtime/adapters/langgraph/stream.py,sha256=hMzrOPBuvJjIPqTI_g3Xf0Sq-JNOnR37a8Z-L2zgAEc,10200
|
|
24
24
|
agentscope_runtime/adapters/ms_agent_framework/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
25
|
agentscope_runtime/adapters/ms_agent_framework/message.py,sha256=JbgdC1vEasTowl_NPtnfm99F9_24UrEWIfHGEtG-HP0,7184
|
|
26
26
|
agentscope_runtime/adapters/ms_agent_framework/stream.py,sha256=FlGoffKW6nRD4I7yBsnhu4J0pAmQyGV-cQrNKN80F9M,14096
|
|
@@ -30,13 +30,13 @@ agentscope_runtime/cli/__init__.py,sha256=aAc30JEk1UNLLmxcQeTiNMJXbFczjym4Oses4U
|
|
|
30
30
|
agentscope_runtime/cli/cli.py,sha256=_STqVMgRSaOa0GhWQDSMYEDY3r3yAHmEXbfk1Zfjb6s,1431
|
|
31
31
|
agentscope_runtime/cli/commands/__init__.py,sha256=MylJNzS3HeGgqekkD0pYg5MALiK_GK7pDArFXZDF9pk,59
|
|
32
32
|
agentscope_runtime/cli/commands/chat.py,sha256=Ttm62VpgSEe_GMLWqfewGfnt33ZZNlZ0nITUn3IBWEE,29776
|
|
33
|
-
agentscope_runtime/cli/commands/deploy.py,sha256=
|
|
33
|
+
agentscope_runtime/cli/commands/deploy.py,sha256=MjKDDNSjE1x13gHDvEZQitXjzgG6U5eyTLLZ9iNiK04,59350
|
|
34
34
|
agentscope_runtime/cli/commands/invoke.py,sha256=4AYswJ7ErPAlX-gWGhFRUBiwOXeuPl0fa_Dha6edqGY,1381
|
|
35
35
|
agentscope_runtime/cli/commands/list_cmd.py,sha256=SZTx58e323u_agtZJJfbzgfD1srk_qW0R-uWKd4Ifiw,2581
|
|
36
36
|
agentscope_runtime/cli/commands/run.py,sha256=L8F8Ph0RFA_QPcF7flrdEWHJK8nYuFoTtUDH4qdg5Xo,5139
|
|
37
37
|
agentscope_runtime/cli/commands/sandbox.py,sha256=2FNbc9AbkvOCO_L2NXUW2cEJleSC363NKL6MPC3PrDY,3374
|
|
38
38
|
agentscope_runtime/cli/commands/status.py,sha256=_O5iT5KD6c0BhSx2XLIu2qJTOpL3VDuyiMTnN0PPeGQ,1479
|
|
39
|
-
agentscope_runtime/cli/commands/stop.py,sha256=
|
|
39
|
+
agentscope_runtime/cli/commands/stop.py,sha256=_1-hqKx4ALibPmHZ63o5idkWB9MDWFQyaCyGuWHEb5E,6216
|
|
40
40
|
agentscope_runtime/cli/commands/web.py,sha256=LFmikdKLgRwW-gH2yaSJ8k6egbq8RHdLIHNst6yV9qw,4686
|
|
41
41
|
agentscope_runtime/cli/loaders/__init__.py,sha256=fqNkqPt2nCGL1iW3Ga2tFFlfk_kiLWzxeMQEFIUJjgA,151
|
|
42
42
|
agentscope_runtime/cli/loaders/agent_loader.py,sha256=WS8ruZ6qc2LhDSo0zesqOpuBAmTlu7-SEve3fmDCWtc,9547
|
|
@@ -55,23 +55,26 @@ agentscope_runtime/common/collections/in_memory_set.py,sha256=7qek5ZB3f_mdNJ4PUP
|
|
|
55
55
|
agentscope_runtime/common/collections/redis_mapping.py,sha256=bi2ku7SO9T6Z9jSUS4IOqJVVFZIG5fVPgmWKYcdi74g,1452
|
|
56
56
|
agentscope_runtime/common/collections/redis_queue.py,sha256=4MCIDs7SgSfdngTvqxWWv2H-8XTpFQOmXG4-fxN20ew,792
|
|
57
57
|
agentscope_runtime/common/collections/redis_set.py,sha256=eRCnMXc4hcDF2qyxFiNnrn2o4QjvtgDb6rEcblmV1o8,654
|
|
58
|
-
agentscope_runtime/common/container_clients/__init__.py,sha256=
|
|
59
|
-
agentscope_runtime/common/container_clients/agentrun_client.py,sha256=
|
|
58
|
+
agentscope_runtime/common/container_clients/__init__.py,sha256=ttZ47magysMBF20S7lciRiQO3UyaC7iiHtFNnapeewE,1576
|
|
59
|
+
agentscope_runtime/common/container_clients/agentrun_client.py,sha256=KboYNHoEsJ2cjbKy3_ig39OhbsxIsUTpw7INhhyILcs,40855
|
|
60
60
|
agentscope_runtime/common/container_clients/base_client.py,sha256=_uvxRh65lbMNXDcHjq01aYuNUrcxRlNzRtRIPMgWFGc,992
|
|
61
|
-
agentscope_runtime/common/container_clients/
|
|
62
|
-
agentscope_runtime/common/container_clients/
|
|
63
|
-
agentscope_runtime/common/container_clients/
|
|
61
|
+
agentscope_runtime/common/container_clients/boxlite_client.py,sha256=FsjgUBWUNWEOe6p1jdxG5dn0GpyQr3fyo65PSv2JPYk,14294
|
|
62
|
+
agentscope_runtime/common/container_clients/docker_client.py,sha256=IGzj7pOraYSAG6DtrmqkG-nbueQmGAJodgA_5bPO_dE,7222
|
|
63
|
+
agentscope_runtime/common/container_clients/fc_client.py,sha256=0Cv_EO3ZLstTZA10XF1i2-QaHhKxiQD-QX8P1uO7CdI,32860
|
|
64
|
+
agentscope_runtime/common/container_clients/gvisor_client.py,sha256=vDXMhesnQg6f0QwS7YnaLsqbeO1C92wn9M2sbzToqsY,849
|
|
65
|
+
agentscope_runtime/common/container_clients/knative_client.py,sha256=LLmo3aeR8T3kvtHAXWXl7PW-KxwF6efhkA8ZjPoW_MM,15895
|
|
64
66
|
agentscope_runtime/common/container_clients/kubernetes_client.py,sha256=8_X091fbcR97_chFVMiWNDj5QmkBPG3tkS5zlXs-OCk,39550
|
|
65
67
|
agentscope_runtime/common/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
+
agentscope_runtime/common/utils/deprecation.py,sha256=cNrhkwT6JpPkhpr06rN2U73k73O8ukHY19wobaOH3Sg,4226
|
|
66
69
|
agentscope_runtime/common/utils/lazy_loader.py,sha256=YbhbKNJrm1d3adCZ6gM6ljZE0QCCcpt4yGDCjNWtkJ4,1937
|
|
67
70
|
agentscope_runtime/engine/__init__.py,sha256=qDdrSixs7QjlZ4DxNCt7NdjVPEIIk2wREpYzDxuZYCU,798
|
|
68
71
|
agentscope_runtime/engine/constant.py,sha256=PQzLbA2T19vprS6lvb0xhM26zt_umjQ6VbNcsQo2Ylc,154
|
|
69
|
-
agentscope_runtime/engine/runner.py,sha256=
|
|
72
|
+
agentscope_runtime/engine/runner.py,sha256=JH34SpHQWIEtsmBg_x4mwMm2pqfDNxnNW51Opfgx8Ss,10517
|
|
70
73
|
agentscope_runtime/engine/app/__init__.py,sha256=8asUQNRTjIEyoWjl955mn3gLkcYna8-CK4A810Eol0Y,87
|
|
71
|
-
agentscope_runtime/engine/app/agent_app.py,sha256=
|
|
74
|
+
agentscope_runtime/engine/app/agent_app.py,sha256=4QC6HR8m6WrX8mZAVWFwQilaDLlf1xLS0-sm-AEaegY,13182
|
|
72
75
|
agentscope_runtime/engine/app/base_app.py,sha256=ILLp4GUVslRtLxSjCTrpTX6f1E5QhM9oXefxy4sA28I,2290
|
|
73
76
|
agentscope_runtime/engine/app/celery_mixin.py,sha256=fDPc4loHieUXvgJYRYWAv-3qOSssdbfKH9Fiu-ShrIs,2929
|
|
74
|
-
agentscope_runtime/engine/deployers/__init__.py,sha256=
|
|
77
|
+
agentscope_runtime/engine/deployers/__init__.py,sha256=S6aDWUtxNT3CEA2ElVSz7JTPNqaZE01FAG8KqwGljoc,1371
|
|
75
78
|
agentscope_runtime/engine/deployers/agentrun_deployer.py,sha256=flJRl6b_RnpoiiRCv9Z0GlyuxIDszf8FRvnLOcE_rAw,106119
|
|
76
79
|
agentscope_runtime/engine/deployers/base.py,sha256=X4Vdu1x_ln0GK3aB_SSMaFoWDRYjh9nQT-mPOxWwkXY,1393
|
|
77
80
|
agentscope_runtime/engine/deployers/cli_fc_deploy.py,sha256=OZ6vn6t3FEKQJgbxADvPM5S90WP7OJGdBEBc-te_GiE,6063
|
|
@@ -80,14 +83,18 @@ agentscope_runtime/engine/deployers/knative_deployer.py,sha256=c5wy2h2TtQ82A5L4S
|
|
|
80
83
|
agentscope_runtime/engine/deployers/kubernetes_deployer.py,sha256=5sc2cMvB19zERTpphhyDKFohO9-YHtucNeGSlfbUICk,13548
|
|
81
84
|
agentscope_runtime/engine/deployers/local_deployer.py,sha256=mmEk5kSRqQW5Z32Gm3PWNphCu2QXisAoejWmDI5XBVk,22485
|
|
82
85
|
agentscope_runtime/engine/deployers/modelstudio_deployer.py,sha256=Pyb4XubHFUm78hm3NbUBC0FWm91-KWuzI4FlaqSJfiQ,34912
|
|
83
|
-
agentscope_runtime/engine/deployers/
|
|
86
|
+
agentscope_runtime/engine/deployers/pai_deployer.py,sha256=1Q8oHbaDT6vm3BPi63qxR_HNxzm8L1-kr2ZiGEDP9T0,76888
|
|
87
|
+
agentscope_runtime/engine/deployers/adapter/__init__.py,sha256=LPafsTnGB34-cxLmOepD_qsypB90yztP6TNLRnHZ_yQ,258
|
|
84
88
|
agentscope_runtime/engine/deployers/adapter/protocol_adapter.py,sha256=OpLfBWiFY_xC0uG53UYSeQuUnw7vZzvNnm5w6QFr9_w,737
|
|
85
89
|
agentscope_runtime/engine/deployers/adapter/a2a/__init__.py,sha256=s1_skJDKRc70GIN95euZFwN4IV8EvGjRGwk-JvWe0S8,1169
|
|
86
90
|
agentscope_runtime/engine/deployers/adapter/a2a/a2a_adapter_utils.py,sha256=7nuyfkN7rR8PjpWPKh2acsd9VztbtcZOQdzSp4dWVUY,10956
|
|
87
91
|
agentscope_runtime/engine/deployers/adapter/a2a/a2a_agent_adapter.py,sha256=h7wwl2CiKcGUxhKkrWN7DpaIpTltoRm-6ETS_fJHmEk,2147
|
|
88
|
-
agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py,sha256=
|
|
92
|
+
agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py,sha256=7Rt_vRjHroGaLEhpk32w6SmzRl9vN9qVhWt0mWAeMlE,16681
|
|
89
93
|
agentscope_runtime/engine/deployers/adapter/a2a/a2a_registry.py,sha256=sDnR1iIGP_vpgRrIcyrAJ26SFJ_RgolyJDkA2StRihA,2274
|
|
90
|
-
agentscope_runtime/engine/deployers/adapter/a2a/nacos_a2a_registry.py,sha256=
|
|
94
|
+
agentscope_runtime/engine/deployers/adapter/a2a/nacos_a2a_registry.py,sha256=K3-289h7xddz3b0nefw-4WyEwIFZTDiwdJOeEJPzdSo,27914
|
|
95
|
+
agentscope_runtime/engine/deployers/adapter/agui/__init__.py,sha256=FkPsoF8W7VaGFZsHUU3CEnATJnlD7OpmRLckkcWb9qA,217
|
|
96
|
+
agentscope_runtime/engine/deployers/adapter/agui/agui_adapter_utils.py,sha256=TGT37a1euevRAvhUyphk99OjcVGhROHrsbUULrLLguc,22380
|
|
97
|
+
agentscope_runtime/engine/deployers/adapter/agui/agui_protocol_adapter.py,sha256=9r0SpO4zYb_R42HwjQAsCgD6FKMHwJHhnp6Y81bOjeY,6994
|
|
91
98
|
agentscope_runtime/engine/deployers/adapter/responses/__init__.py,sha256=0f1SVBagTz0Kex8kX9_QapqmBPJUHcRejnV4P39PaBc,93
|
|
92
99
|
agentscope_runtime/engine/deployers/adapter/responses/response_api_adapter_utils.py,sha256=MmvLkHDbb1cQMS2kQKnS3FT_6DUOQRdL2vb_HMA6eFo,98448
|
|
93
100
|
agentscope_runtime/engine/deployers/adapter/responses/response_api_agent_adapter.py,sha256=B3F1GOvu_HFFdH8gnKJtVlr8u34jjRV3iKMgVz1XHVY,1593
|
|
@@ -101,8 +108,9 @@ agentscope_runtime/engine/deployers/utils/build_cache.py,sha256=VNbUIZQ_-s9HZufn
|
|
|
101
108
|
agentscope_runtime/engine/deployers/utils/deployment_modes.py,sha256=vr2UzA1bzAAzxjToj9bVGzRWm47Za6w6cDI0nF1NMD0,448
|
|
102
109
|
agentscope_runtime/engine/deployers/utils/detached_app.py,sha256=-6wTiqMYssKYDGduRMHeehuqvHigz9qoUMj-pereVpU,18707
|
|
103
110
|
agentscope_runtime/engine/deployers/utils/k8s_utils.py,sha256=lgVYTewDBhtSwigEJ3Fok39wwrXPTuPmonyaB6mmaOo,7381
|
|
104
|
-
agentscope_runtime/engine/deployers/utils/net_utils.py,sha256=
|
|
105
|
-
agentscope_runtime/engine/deployers/utils/
|
|
111
|
+
agentscope_runtime/engine/deployers/utils/net_utils.py,sha256=BtjQLbksTSB2y2nXrFG4sXLNbf9MrtRDuVAUCgA1ysA,2605
|
|
112
|
+
agentscope_runtime/engine/deployers/utils/oss_utils.py,sha256=M26meXX4Tttl9D6mp2vr6RCEpvJlXeQf8IC6c-jAWBM,1107
|
|
113
|
+
agentscope_runtime/engine/deployers/utils/package.py,sha256=E-LwJfv-sM7zonxDs7A5epMV3PVEb6vKAvlutGni5JU,22875
|
|
106
114
|
agentscope_runtime/engine/deployers/utils/wheel_packager.py,sha256=GFMvLnLoQhs0joGfDz2x60Dy9WTMbpSNYP7XQgYP__E,14475
|
|
107
115
|
agentscope_runtime/engine/deployers/utils/docker_image_utils/__init__.py,sha256=DQlspd1dFOTV7GO82Jel5APuUqYkbjmpT72K1vb5SVw,235
|
|
108
116
|
agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py,sha256=5hnjfauzlbQf3j7v8EaPXCn6HsxkTB4NmbkPIBruF3Q,14179
|
|
@@ -116,10 +124,11 @@ agentscope_runtime/engine/deployers/utils/templates/app_main.py.j2,sha256=cgaSFV
|
|
|
116
124
|
agentscope_runtime/engine/deployers/utils/templates/runner_main.py.j2,sha256=W__KQfZ0qpdQwlkFMpahEVt7HhKnB71dS3R3zNg0hho,2464
|
|
117
125
|
agentscope_runtime/engine/deployers/utils/templates/standalone_main.py.j2,sha256=AfFDaSjM9t7gMgGvhfcQ2vBPusc29rkDHNaPHnbhKas,5621
|
|
118
126
|
agentscope_runtime/engine/helpers/agent_api_builder.py,sha256=mSixBHF9QDro8UNqijq4A5bM7O89z1i2jz42hMAVdio,18779
|
|
127
|
+
agentscope_runtime/engine/helpers/agent_api_client.py,sha256=kKhmNPeIK4segqDeZMRltXeXCeM8CNNbkiYSVXBSFA0,10838
|
|
119
128
|
agentscope_runtime/engine/helpers/runner.py,sha256=xB9F95nkAxM7J8ZCwPhZSidvD9y4DN_bw3CQOICGZEY,855
|
|
120
129
|
agentscope_runtime/engine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
130
|
agentscope_runtime/engine/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
|
-
agentscope_runtime/engine/schemas/agent_schemas.py,sha256=
|
|
131
|
+
agentscope_runtime/engine/schemas/agent_schemas.py,sha256=DndktloMZ5aEOU4VQrC7L-hOPaPDWUNnJplqJu6bm5Y,27210
|
|
123
132
|
agentscope_runtime/engine/schemas/embedding.py,sha256=yn6VaKPXkze0bvJuaLKzWIOus_AuT-8Z_XRABk4NH60,891
|
|
124
133
|
agentscope_runtime/engine/schemas/exception.py,sha256=eVZpZD77Dva5l_UsxRzCsgJ6bUOH1XQChP-iid5m37E,16003
|
|
125
134
|
agentscope_runtime/engine/schemas/modelstudio_llm.py,sha256=mi_1IWjaPq1W4IaVtVtIy-kwfUSFMfWKM3kaPu2KLC4,9803
|
|
@@ -130,22 +139,22 @@ agentscope_runtime/engine/schemas/session.py,sha256=ctSMlTJHdd2HaJ_6tEOxNDZbLcex
|
|
|
130
139
|
agentscope_runtime/engine/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
140
|
agentscope_runtime/engine/services/base.py,sha256=g2hTc3ivj2MPjnsu5_09m6_MZ3KDHBfiYKu4F2pLA1I,2096
|
|
132
141
|
agentscope_runtime/engine/services/service_factory.py,sha256=LTLU6sxlaRL1GtBmXKvBxRD2E8eh2xla6XLVyFH_CFQ,3580
|
|
133
|
-
agentscope_runtime/engine/services/agent_state/__init__.py,sha256=
|
|
142
|
+
agentscope_runtime/engine/services/agent_state/__init__.py,sha256=fCUbsBy1zxGTsBBhzidpvlY-Ox3DgQOg6C3aCNhsF_0,739
|
|
134
143
|
agentscope_runtime/engine/services/agent_state/redis_state_service.py,sha256=XjZ0y05Wkc0JoQEZevBhaC-eCvJxVKQZBoq21RLH1YM,5883
|
|
135
144
|
agentscope_runtime/engine/services/agent_state/state_service.py,sha256=Z7vaZidnU963ldkqCEPTt5MiE5IJGJq0YnMMn5sehQc,5302
|
|
136
145
|
agentscope_runtime/engine/services/agent_state/state_service_factory.py,sha256=Ze-smpoJXaQxZG4OuzCjQ9fPqfvoMM3xCT7-ZvYmU8I,1589
|
|
137
|
-
agentscope_runtime/engine/services/memory/__init__.py,sha256=
|
|
146
|
+
agentscope_runtime/engine/services/memory/__init__.py,sha256=2P0HUftkluvEcEw15XudEb-BkEAFpty7ORnRbV6_Pw4,1261
|
|
138
147
|
agentscope_runtime/engine/services/memory/mem0_memory_service.py,sha256=jmiaFncOBAlx-plEcnz8ljck1Pwi0_czWBOSM7JIJnA,3694
|
|
139
148
|
agentscope_runtime/engine/services/memory/memory_service.py,sha256=QNNvG3ccUiWznQfKNTtSbYqqcuoA2IJW_9xmNb1KMQI,8591
|
|
140
149
|
agentscope_runtime/engine/services/memory/memory_service_factory.py,sha256=XLWriAldbRHHczcdzDK3tKaNfK5KrOYCNUUgeE5spbU,4031
|
|
141
|
-
agentscope_runtime/engine/services/memory/redis_memory_service.py,sha256=
|
|
150
|
+
agentscope_runtime/engine/services/memory/redis_memory_service.py,sha256=YJcDmLG4_SUywakktorokuJPG5sF23CewKLY2MBSvqs,10719
|
|
142
151
|
agentscope_runtime/engine/services/memory/reme_personal_memory_service.py,sha256=6wbCL5IRJG5GPQqFuy4yN-tARDG30CgKtJ--iKiUowQ,3007
|
|
143
152
|
agentscope_runtime/engine/services/memory/reme_task_memory_service.py,sha256=dLIhWfqKZEeXB1r7f8EKPftL2lk4f60TdlCNdQNolNk,330
|
|
144
153
|
agentscope_runtime/engine/services/memory/tablestore_memory_service.py,sha256=Pf1nyk5d5X7h8Iuy1e7ROCNlap9cmG--TFm7fZNUZ90,10335
|
|
145
154
|
agentscope_runtime/engine/services/sandbox/__init__.py,sha256=eaneUQzqUfWrfdtc8MdzpGmrQDO_MSzGje1nZJ6Aay4,407
|
|
146
155
|
agentscope_runtime/engine/services/sandbox/sandbox_service.py,sha256=KwJ0FRKxaiAMHKc1w4O6wmLigI_wBmZcgSyMu3L4X1k,6559
|
|
147
156
|
agentscope_runtime/engine/services/sandbox/sandbox_service_factory.py,sha256=VMx-TeY4gghYU-CEY38M5Q9NoinfE05IfVq57Cu4X08,1595
|
|
148
|
-
agentscope_runtime/engine/services/session_history/__init__.py,sha256=
|
|
157
|
+
agentscope_runtime/engine/services/session_history/__init__.py,sha256=HEXiXR9ZWYejb5Fn4ejgFo3eIZyeTBkMfei-nDAyAbA,1096
|
|
149
158
|
agentscope_runtime/engine/services/session_history/redis_session_history_service.py,sha256=c-ULzpQS8yAm1FReETkcUJWUMqookT4ZycUVBdMFCA8,10142
|
|
150
159
|
agentscope_runtime/engine/services/session_history/session_history_service.py,sha256=-UHa_OVC8TYPcZcATXE6-pTI0o5dtPwQoVpVi-OjwNE,8476
|
|
151
160
|
agentscope_runtime/engine/services/session_history/session_history_service_factory.py,sha256=r8Ro_IdRSzAN6iSHo5MzHSld5UGr-GuHmfIhwQ1iQMM,2307
|
|
@@ -155,7 +164,7 @@ agentscope_runtime/engine/services/utils/tablestore_service_utils.py,sha256=YA4g
|
|
|
155
164
|
agentscope_runtime/engine/tracing/__init__.py,sha256=yUmXYDqApqGOlZJqJ_jb8TvSYUAUk4VInmNSSiICGoI,1237
|
|
156
165
|
agentscope_runtime/engine/tracing/asyncio_util.py,sha256=aPaOPiLq3YVm6XS_wn8zWK2pK3aHwV0bRwD62pAJ9xQ,685
|
|
157
166
|
agentscope_runtime/engine/tracing/base.py,sha256=Y9rU289wC72Fjax4FeHZP0AzxVwQvFCV6UUogqRRl54,10635
|
|
158
|
-
agentscope_runtime/engine/tracing/local_logging_handler.py,sha256=
|
|
167
|
+
agentscope_runtime/engine/tracing/local_logging_handler.py,sha256=YHlEeUdeCp-59h6_3D5ksiLtV0sOyXC53165rDdnq7g,12436
|
|
159
168
|
agentscope_runtime/engine/tracing/message_util.py,sha256=9ldwWNcm6VqAZ04orHOf8namw0I0CEiU5v89fyKEO_c,18551
|
|
160
169
|
agentscope_runtime/engine/tracing/tracing_metric.py,sha256=X1m6yjLx_hnbmozsCxiW9X3t1gWgrKlbsYEfCMqNSx0,2375
|
|
161
170
|
agentscope_runtime/engine/tracing/tracing_util.py,sha256=tzY-vp4k6BzfjHIIpQLrrgswsxQVMiCVMp6gQXFnzDY,3820
|
|
@@ -168,7 +177,7 @@ agentscope_runtime/sandbox/mcp_server.py,sha256=UT3aRZqyeHqEhhm-wZ0Ilhew3eDMHzz9
|
|
|
168
177
|
agentscope_runtime/sandbox/registry.py,sha256=3ukwbTOjSINWH7DIOmG1iPgze5nb-zXl2X8M7_AeBwg,4190
|
|
169
178
|
agentscope_runtime/sandbox/utils.py,sha256=XH0t0QJMUt5RFACa_7FGo5YIC0Z3tPtdBsOtnCovPJU,3199
|
|
170
179
|
agentscope_runtime/sandbox/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
|
-
agentscope_runtime/sandbox/box/sandbox.py,sha256=
|
|
180
|
+
agentscope_runtime/sandbox/box/sandbox.py,sha256=h4Texj9VFRoQU8AgTwGB--GroDD1jGOLSGYDIB0te28,6338
|
|
172
181
|
agentscope_runtime/sandbox/box/agentbay/__init__.py,sha256=R-KRTawGZwblLBh0ZrXz2ESaV8biE3pLqVXUcLUI1-g,101
|
|
173
182
|
agentscope_runtime/sandbox/box/agentbay/agentbay_sandbox.py,sha256=id19HKUq2RFDZHW90UlGj74ZKkknbK5juL1w4qniC0g,17827
|
|
174
183
|
agentscope_runtime/sandbox/box/base/__init__.py,sha256=iOx8xRc929N4FBURgrfTJ_X2exGWq41GwYVaOwCZqDU,127
|
|
@@ -220,10 +229,10 @@ agentscope_runtime/sandbox/custom/__init__.py,sha256=wpu0DlzdLohYzOVM9yZloIWid3w
|
|
|
220
229
|
agentscope_runtime/sandbox/custom/custom_sandbox.py,sha256=ZKE7otTimLZ2-ZV9PMVLRA6P1hH0a4fT-d_K4Ga59og,1008
|
|
221
230
|
agentscope_runtime/sandbox/custom/example.py,sha256=iU5G7Vb-oq3wsJ_Kl8oFAwi0HNbt5V_8fWAAyiQ8RuY,964
|
|
222
231
|
agentscope_runtime/sandbox/manager/__init__.py,sha256=KNHc1uDaUWBH_ZnWjH5NHRBiQM_zDyi9B2xKVNtAWIg,98
|
|
223
|
-
agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=
|
|
232
|
+
agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=y6UbaKhKJJr6239Y7clOtkwJWjeidSh7_JF2Q0haZaM,36175
|
|
224
233
|
agentscope_runtime/sandbox/manager/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
234
|
agentscope_runtime/sandbox/manager/server/app.py,sha256=JgvKwcMJtgcQRKbNw2AOzHBZrTPOUWT7Xg6YpQJqwYI,13877
|
|
226
|
-
agentscope_runtime/sandbox/manager/server/config.py,sha256=
|
|
235
|
+
agentscope_runtime/sandbox/manager/server/config.py,sha256=VnsOXhZwYi2FSxkpUlo_g9SsXK9jYp7kdmdERUZNxjs,4488
|
|
227
236
|
agentscope_runtime/sandbox/manager/server/models.py,sha256=rCibF0HsotFcqsQVTSUoOTJCFQU3oqKvpOiWMWIRLyY,304
|
|
228
237
|
agentscope_runtime/sandbox/manager/storage/__init__.py,sha256=jGmpfXV1E2X7AqkGeF1xu1EHiSTvbH3TSIviLbKBFh4,210
|
|
229
238
|
agentscope_runtime/sandbox/manager/storage/data_storage.py,sha256=mGwf7LYbp_fRjLN9BZay6cm3eNziEdU6OlSBeFnIBMQ,475
|
|
@@ -232,7 +241,7 @@ agentscope_runtime/sandbox/manager/storage/oss_storage.py,sha256=fIUxgOkOaH_1vlg
|
|
|
232
241
|
agentscope_runtime/sandbox/model/__init__.py,sha256=WoDOSD_67T-UkZdXOtJzwG4-0E8ABwUBJF6WSCs_sO0,182
|
|
233
242
|
agentscope_runtime/sandbox/model/api.py,sha256=Sjxw6DHkGa8Sp5dUU5kaajkHPj7eiX1EgFZk-zOPafM,400
|
|
234
243
|
agentscope_runtime/sandbox/model/container.py,sha256=f7dj4ir4sxXjZ_zm4iEkjskraacZLX2SR_l1WSl0FOo,1405
|
|
235
|
-
agentscope_runtime/sandbox/model/manager_config.py,sha256=
|
|
244
|
+
agentscope_runtime/sandbox/model/manager_config.py,sha256=phNj1FQk3235jKuSFz1IhkRuOsTkYXOoCuyGoD6eu14,10530
|
|
236
245
|
agentscope_runtime/tools/__init__.py,sha256=YdRrEv_DTUEdgSSTSURYObrbv_CTe9QqJpmbpTelFuI,3660
|
|
237
246
|
agentscope_runtime/tools/_constants.py,sha256=DFjHNMaAkX__104b8_cyn6-nLuoJ3eVOr3wMpNBY-EA,525
|
|
238
247
|
agentscope_runtime/tools/base.py,sha256=InY9_1Ys9eVA5UgZ8aQM_IEFI9BFNZt3PZlhUNskjLg,7759
|
|
@@ -264,6 +273,12 @@ agentscope_runtime/tools/generations/qwen_text_to_speech.py,sha256=jgxOUqO_JM280
|
|
|
264
273
|
agentscope_runtime/tools/generations/speech_to_text.py,sha256=1X4b8kc9UEhxYEA0wmkubd6qGwVDQwO6rUBbl0tmPRM,9371
|
|
265
274
|
agentscope_runtime/tools/generations/speech_to_video.py,sha256=rHqTszP_g6C1OJCZPmj7quX0E0yL-xUZNlEBp6-Jfb4,10519
|
|
266
275
|
agentscope_runtime/tools/generations/text_to_video.py,sha256=fvW6HsoJUERW9uKOFnzWZ6dJsivGwfpV3IMfF48OhSI,7516
|
|
276
|
+
agentscope_runtime/tools/modelstudio_memory/__init__.py,sha256=ZgHkzvRsbaZHZPiymbAEH9AUpUcz0tMBvM-CTwJnbNs,2447
|
|
277
|
+
agentscope_runtime/tools/modelstudio_memory/base.py,sha256=WE8WFgeerwJrqdFJ789yL4Y8tib6FA3KU8x724d3XbE,7240
|
|
278
|
+
agentscope_runtime/tools/modelstudio_memory/config.py,sha256=wwppmg3M8c1C1gUxHl_5TKZgDxHABS-GyIPUtORCVqo,2710
|
|
279
|
+
agentscope_runtime/tools/modelstudio_memory/core.py,sha256=5cp6F6CeSZ_kaJip6nRt9jbgEzpbID8ClLpIxY_ww7c,18153
|
|
280
|
+
agentscope_runtime/tools/modelstudio_memory/exceptions.py,sha256=0HLbx4hJCdBQgClBR7K_MloqFRTCuR4ZBUjs3X_42uU,1587
|
|
281
|
+
agentscope_runtime/tools/modelstudio_memory/schemas.py,sha256=dEGRadMN_UVmQuX_CG2l2_hA3dTuKxrIrXYQjMebZCk,7131
|
|
267
282
|
agentscope_runtime/tools/realtime_clients/__init__.py,sha256=fOK8KH0gSTYS8Kwz6OC94nwYjMb4pEhADsvq8iiVA-Q,394
|
|
268
283
|
agentscope_runtime/tools/realtime_clients/asr_client.py,sha256=hTMKRNvoBnw0X-G4pVY-9ec9aHgB0_bImkb-T_FT7Pk,605
|
|
269
284
|
agentscope_runtime/tools/realtime_clients/azure_asr_client.py,sha256=w5PzBO5SpIfy4759ZmejHM4ZCsAYhKHQTreQM_lAvJQ,6960
|
|
@@ -279,9 +294,9 @@ agentscope_runtime/tools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
279
294
|
agentscope_runtime/tools/utils/api_key_util.py,sha256=xIIUsvWgSt4etgYP7lS0WnqVIhZ-REzrBLwzAT-TrVI,1210
|
|
280
295
|
agentscope_runtime/tools/utils/crypto_utils.py,sha256=Wqq4cn3FHQge-2Q1zGSMUyKh4V4A2baiZm8ZNhMqhPo,3382
|
|
281
296
|
agentscope_runtime/tools/utils/mcp_util.py,sha256=n3GGKBEQPJ-fiNXdYnBx_90GVKWvm9eaNbR2G0q2lOw,905
|
|
282
|
-
agentscope_runtime-1.0.
|
|
283
|
-
agentscope_runtime-1.0.
|
|
284
|
-
agentscope_runtime-1.0.
|
|
285
|
-
agentscope_runtime-1.0.
|
|
286
|
-
agentscope_runtime-1.0.
|
|
287
|
-
agentscope_runtime-1.0.
|
|
297
|
+
agentscope_runtime-1.0.5.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
|
|
298
|
+
agentscope_runtime-1.0.5.dist-info/METADATA,sha256=W3sTW1y5I1DGdbFnelJNh6wEclBwQ2QtU44Tz5cgmFs,48317
|
|
299
|
+
agentscope_runtime-1.0.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
300
|
+
agentscope_runtime-1.0.5.dist-info/entry_points.txt,sha256=Mpjpwe0A9lYNsFtWe_VeoGhtDVsKLIi6w9ZKzyhc17M,425
|
|
301
|
+
agentscope_runtime-1.0.5.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
|
|
302
|
+
agentscope_runtime-1.0.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|