agentscope-runtime 1.0.4a1__py3-none-any.whl → 1.0.5.post1__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.
Files changed (79) hide show
  1. agentscope_runtime/adapters/agentscope/stream.py +2 -8
  2. agentscope_runtime/adapters/langgraph/stream.py +120 -70
  3. agentscope_runtime/adapters/ms_agent_framework/__init__.py +0 -0
  4. agentscope_runtime/adapters/ms_agent_framework/message.py +205 -0
  5. agentscope_runtime/adapters/ms_agent_framework/stream.py +418 -0
  6. agentscope_runtime/adapters/utils.py +6 -0
  7. agentscope_runtime/cli/commands/deploy.py +836 -1
  8. agentscope_runtime/cli/commands/stop.py +16 -0
  9. agentscope_runtime/common/container_clients/__init__.py +52 -0
  10. agentscope_runtime/common/container_clients/agentrun_client.py +6 -4
  11. agentscope_runtime/common/container_clients/boxlite_client.py +442 -0
  12. agentscope_runtime/common/container_clients/docker_client.py +0 -20
  13. agentscope_runtime/common/container_clients/fc_client.py +6 -4
  14. agentscope_runtime/common/container_clients/gvisor_client.py +38 -0
  15. agentscope_runtime/common/container_clients/knative_client.py +467 -0
  16. agentscope_runtime/common/utils/deprecation.py +164 -0
  17. agentscope_runtime/engine/__init__.py +4 -0
  18. agentscope_runtime/engine/app/agent_app.py +16 -4
  19. agentscope_runtime/engine/constant.py +1 -0
  20. agentscope_runtime/engine/deployers/__init__.py +34 -11
  21. agentscope_runtime/engine/deployers/adapter/__init__.py +8 -0
  22. agentscope_runtime/engine/deployers/adapter/a2a/__init__.py +26 -51
  23. agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py +23 -13
  24. agentscope_runtime/engine/deployers/adapter/a2a/a2a_registry.py +4 -201
  25. agentscope_runtime/engine/deployers/adapter/a2a/nacos_a2a_registry.py +152 -25
  26. agentscope_runtime/engine/deployers/adapter/agui/__init__.py +8 -0
  27. agentscope_runtime/engine/deployers/adapter/agui/agui_adapter_utils.py +652 -0
  28. agentscope_runtime/engine/deployers/adapter/agui/agui_protocol_adapter.py +225 -0
  29. agentscope_runtime/engine/deployers/agentrun_deployer.py +2 -2
  30. agentscope_runtime/engine/deployers/fc_deployer.py +1506 -0
  31. agentscope_runtime/engine/deployers/knative_deployer.py +290 -0
  32. agentscope_runtime/engine/deployers/pai_deployer.py +2335 -0
  33. agentscope_runtime/engine/deployers/utils/net_utils.py +37 -0
  34. agentscope_runtime/engine/deployers/utils/oss_utils.py +38 -0
  35. agentscope_runtime/engine/deployers/utils/package.py +46 -42
  36. agentscope_runtime/engine/helpers/agent_api_client.py +372 -0
  37. agentscope_runtime/engine/runner.py +13 -0
  38. agentscope_runtime/engine/schemas/agent_schemas.py +9 -3
  39. agentscope_runtime/engine/services/agent_state/__init__.py +7 -0
  40. agentscope_runtime/engine/services/memory/__init__.py +7 -0
  41. agentscope_runtime/engine/services/memory/redis_memory_service.py +15 -16
  42. agentscope_runtime/engine/services/session_history/__init__.py +7 -0
  43. agentscope_runtime/engine/tracing/local_logging_handler.py +2 -3
  44. agentscope_runtime/engine/tracing/wrapper.py +18 -4
  45. agentscope_runtime/sandbox/__init__.py +14 -6
  46. agentscope_runtime/sandbox/box/base/__init__.py +2 -2
  47. agentscope_runtime/sandbox/box/base/base_sandbox.py +51 -1
  48. agentscope_runtime/sandbox/box/browser/__init__.py +2 -2
  49. agentscope_runtime/sandbox/box/browser/browser_sandbox.py +198 -2
  50. agentscope_runtime/sandbox/box/filesystem/__init__.py +2 -2
  51. agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py +99 -2
  52. agentscope_runtime/sandbox/box/gui/__init__.py +2 -2
  53. agentscope_runtime/sandbox/box/gui/gui_sandbox.py +117 -1
  54. agentscope_runtime/sandbox/box/mobile/__init__.py +2 -2
  55. agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py +247 -100
  56. agentscope_runtime/sandbox/box/sandbox.py +102 -65
  57. agentscope_runtime/sandbox/box/shared/routers/generic.py +36 -29
  58. agentscope_runtime/sandbox/client/__init__.py +6 -1
  59. agentscope_runtime/sandbox/client/async_http_client.py +339 -0
  60. agentscope_runtime/sandbox/client/base.py +74 -0
  61. agentscope_runtime/sandbox/client/http_client.py +108 -329
  62. agentscope_runtime/sandbox/enums.py +7 -0
  63. agentscope_runtime/sandbox/manager/sandbox_manager.py +275 -29
  64. agentscope_runtime/sandbox/manager/server/app.py +7 -1
  65. agentscope_runtime/sandbox/manager/server/config.py +3 -1
  66. agentscope_runtime/sandbox/model/manager_config.py +11 -9
  67. agentscope_runtime/tools/modelstudio_memory/__init__.py +106 -0
  68. agentscope_runtime/tools/modelstudio_memory/base.py +220 -0
  69. agentscope_runtime/tools/modelstudio_memory/config.py +86 -0
  70. agentscope_runtime/tools/modelstudio_memory/core.py +594 -0
  71. agentscope_runtime/tools/modelstudio_memory/exceptions.py +60 -0
  72. agentscope_runtime/tools/modelstudio_memory/schemas.py +253 -0
  73. agentscope_runtime/version.py +1 -1
  74. {agentscope_runtime-1.0.4a1.dist-info → agentscope_runtime-1.0.5.post1.dist-info}/METADATA +187 -74
  75. {agentscope_runtime-1.0.4a1.dist-info → agentscope_runtime-1.0.5.post1.dist-info}/RECORD +79 -55
  76. {agentscope_runtime-1.0.4a1.dist-info → agentscope_runtime-1.0.5.post1.dist-info}/WHEEL +1 -1
  77. {agentscope_runtime-1.0.4a1.dist-info → agentscope_runtime-1.0.5.post1.dist-info}/entry_points.txt +0 -0
  78. {agentscope_runtime-1.0.4a1.dist-info → agentscope_runtime-1.0.5.post1.dist-info}/licenses/LICENSE +0 -0
  79. {agentscope_runtime-1.0.4a1.dist-info → agentscope_runtime-1.0.5.post1.dist-info}/top_level.txt +0 -0
@@ -1,9 +1,10 @@
1
1
  agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
2
- agentscope_runtime/version.py,sha256=KJxLcwQwCbM7FlbQXfQOCw1C6ILW8NXd77m2ajm2w7o,49
2
+ agentscope_runtime/version.py,sha256=L6eXK2K0owgqy6NEpFiCLA_J-gPiMQBHpYv-sAvAZ-k,53
3
3
  agentscope_runtime/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ agentscope_runtime/adapters/utils.py,sha256=lL6RrSwxyj2WHWgUaCtscbP9aD_Rf3UY_FCtDPJ_ISI,180
4
5
  agentscope_runtime/adapters/agentscope/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
6
  agentscope_runtime/adapters/agentscope/message.py,sha256=Bhb3V6TOv8s9uAhuZSl7uN728bFvnDzRYqejs0u_bNU,23057
6
- agentscope_runtime/adapters/agentscope/stream.py,sha256=UqM5gbHZPrDeuJk6qzKCf8hKQ5zBQcziYcKuf7kC1aY,23167
7
+ agentscope_runtime/adapters/agentscope/stream.py,sha256=cjOpxL_aPFNL5oCb3XSQbmuJpSZ1E-mi8j1AP6TrQjI,23065
7
8
  agentscope_runtime/adapters/agentscope/long_term_memory/__init__.py,sha256=Hg4ghENb8u49svojY_q89HEjKImvLjKMQwmL8Y3wGgE,135
8
9
  agentscope_runtime/adapters/agentscope/long_term_memory/_long_term_memory_adapter.py,sha256=dwUS6-xvn9g4VlVcHL89gCbHjdw-VWKEBNpVkmzUAgE,7873
9
10
  agentscope_runtime/adapters/agentscope/memory/__init__.py,sha256=zqVxvsJv1t1mjJKdOjtP6dUGNOrc0LLwZx_yZCNq7Xs,137
@@ -19,20 +20,23 @@ agentscope_runtime/adapters/autogen/tool/__init__.py,sha256=FJXusI2gPKYOuAIN_eqM
19
20
  agentscope_runtime/adapters/autogen/tool/tool.py,sha256=NFSitBvL5uP3sVwHQfxprbsG6B39SmDVlT2vHTguUII,6587
20
21
  agentscope_runtime/adapters/langgraph/__init__.py,sha256=yLNYabjNXn6BgIVdWCP7m3DOqzqOFsVm_Qu1FV5MyeU,309
21
22
  agentscope_runtime/adapters/langgraph/message.py,sha256=T2RNsrhCSkyelo4NRZeZf7abK1iK8VvpyEWUunS_XZQ,9267
22
- agentscope_runtime/adapters/langgraph/stream.py,sha256=MB5NE2bx9hE-TYLwW5jwepZBRAuJ_TLAGYVSejskdo8,7974
23
+ agentscope_runtime/adapters/langgraph/stream.py,sha256=hMzrOPBuvJjIPqTI_g3Xf0Sq-JNOnR37a8Z-L2zgAEc,10200
24
+ agentscope_runtime/adapters/ms_agent_framework/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ agentscope_runtime/adapters/ms_agent_framework/message.py,sha256=JbgdC1vEasTowl_NPtnfm99F9_24UrEWIfHGEtG-HP0,7184
26
+ agentscope_runtime/adapters/ms_agent_framework/stream.py,sha256=FlGoffKW6nRD4I7yBsnhu4J0pAmQyGV-cQrNKN80F9M,14096
23
27
  agentscope_runtime/adapters/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
28
  agentscope_runtime/adapters/text/stream.py,sha256=qtk-WIj8itvOUZO0IHzNPBNWX4V5Dm13nhsNlDyYWKc,682
25
29
  agentscope_runtime/cli/__init__.py,sha256=aAc30JEk1UNLLmxcQeTiNMJXbFczjym4Oses4ULIsFI,181
26
30
  agentscope_runtime/cli/cli.py,sha256=_STqVMgRSaOa0GhWQDSMYEDY3r3yAHmEXbfk1Zfjb6s,1431
27
31
  agentscope_runtime/cli/commands/__init__.py,sha256=MylJNzS3HeGgqekkD0pYg5MALiK_GK7pDArFXZDF9pk,59
28
32
  agentscope_runtime/cli/commands/chat.py,sha256=Ttm62VpgSEe_GMLWqfewGfnt33ZZNlZ0nITUn3IBWEE,29776
29
- agentscope_runtime/cli/commands/deploy.py,sha256=AvcaI50-7NN0tRIlJ-pXWCbNAbYeua88AIvV4aEX2-E,32817
33
+ agentscope_runtime/cli/commands/deploy.py,sha256=MjKDDNSjE1x13gHDvEZQitXjzgG6U5eyTLLZ9iNiK04,59350
30
34
  agentscope_runtime/cli/commands/invoke.py,sha256=4AYswJ7ErPAlX-gWGhFRUBiwOXeuPl0fa_Dha6edqGY,1381
31
35
  agentscope_runtime/cli/commands/list_cmd.py,sha256=SZTx58e323u_agtZJJfbzgfD1srk_qW0R-uWKd4Ifiw,2581
32
36
  agentscope_runtime/cli/commands/run.py,sha256=L8F8Ph0RFA_QPcF7flrdEWHJK8nYuFoTtUDH4qdg5Xo,5139
33
37
  agentscope_runtime/cli/commands/sandbox.py,sha256=2FNbc9AbkvOCO_L2NXUW2cEJleSC363NKL6MPC3PrDY,3374
34
38
  agentscope_runtime/cli/commands/status.py,sha256=_O5iT5KD6c0BhSx2XLIu2qJTOpL3VDuyiMTnN0PPeGQ,1479
35
- agentscope_runtime/cli/commands/stop.py,sha256=hv75KBmVWvEGVBmTdf3_OGXkcvOFeiPw6X3nS8NoGYA,5637
39
+ agentscope_runtime/cli/commands/stop.py,sha256=_1-hqKx4ALibPmHZ63o5idkWB9MDWFQyaCyGuWHEb5E,6216
36
40
  agentscope_runtime/cli/commands/web.py,sha256=LFmikdKLgRwW-gH2yaSJ8k6egbq8RHdLIHNst6yV9qw,4686
37
41
  agentscope_runtime/cli/loaders/__init__.py,sha256=fqNkqPt2nCGL1iW3Ga2tFFlfk_kiLWzxeMQEFIUJjgA,151
38
42
  agentscope_runtime/cli/loaders/agent_loader.py,sha256=WS8ruZ6qc2LhDSo0zesqOpuBAmTlu7-SEve3fmDCWtc,9547
@@ -51,36 +55,46 @@ agentscope_runtime/common/collections/in_memory_set.py,sha256=7qek5ZB3f_mdNJ4PUP
51
55
  agentscope_runtime/common/collections/redis_mapping.py,sha256=bi2ku7SO9T6Z9jSUS4IOqJVVFZIG5fVPgmWKYcdi74g,1452
52
56
  agentscope_runtime/common/collections/redis_queue.py,sha256=4MCIDs7SgSfdngTvqxWWv2H-8XTpFQOmXG4-fxN20ew,792
53
57
  agentscope_runtime/common/collections/redis_set.py,sha256=eRCnMXc4hcDF2qyxFiNnrn2o4QjvtgDb6rEcblmV1o8,654
54
- agentscope_runtime/common/container_clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
- agentscope_runtime/common/container_clients/agentrun_client.py,sha256=nibFHR5N3tfNDcREi_2obm09a6GZoXV3iZkYq3NsLvY,40672
58
+ agentscope_runtime/common/container_clients/__init__.py,sha256=ttZ47magysMBF20S7lciRiQO3UyaC7iiHtFNnapeewE,1576
59
+ agentscope_runtime/common/container_clients/agentrun_client.py,sha256=KboYNHoEsJ2cjbKy3_ig39OhbsxIsUTpw7INhhyILcs,40855
56
60
  agentscope_runtime/common/container_clients/base_client.py,sha256=_uvxRh65lbMNXDcHjq01aYuNUrcxRlNzRtRIPMgWFGc,992
57
- agentscope_runtime/common/container_clients/docker_client.py,sha256=eP7NcUWdTuV1wwF9FeuQCZBDrVOUVRiKOcz3GYD4K-o,7724
58
- agentscope_runtime/common/container_clients/fc_client.py,sha256=l10m0Xdu4k41P4MQBLEH5lm_HJEZjMJTk_v0YgYNHi4,32677
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
59
66
  agentscope_runtime/common/container_clients/kubernetes_client.py,sha256=8_X091fbcR97_chFVMiWNDj5QmkBPG3tkS5zlXs-OCk,39550
60
67
  agentscope_runtime/common/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ agentscope_runtime/common/utils/deprecation.py,sha256=cNrhkwT6JpPkhpr06rN2U73k73O8ukHY19wobaOH3Sg,4226
61
69
  agentscope_runtime/common/utils/lazy_loader.py,sha256=YbhbKNJrm1d3adCZ6gM6ljZE0QCCcpt4yGDCjNWtkJ4,1937
62
- agentscope_runtime/engine/__init__.py,sha256=lJV0pGExSfUmyW43MNdTG06jOTNnMrLHSgBS2AhYvyQ,656
63
- agentscope_runtime/engine/constant.py,sha256=KOXujjNLky8Jcm8D_gPhQLsQdzPcU4RfrQzAvJUCrpU,128
64
- agentscope_runtime/engine/runner.py,sha256=kf682awGWCKhEXOq9-S4dxKiulsYPmg4UJkiSpuf5Jg,9967
70
+ agentscope_runtime/engine/__init__.py,sha256=qDdrSixs7QjlZ4DxNCt7NdjVPEIIk2wREpYzDxuZYCU,798
71
+ agentscope_runtime/engine/constant.py,sha256=PQzLbA2T19vprS6lvb0xhM26zt_umjQ6VbNcsQo2Ylc,154
72
+ agentscope_runtime/engine/runner.py,sha256=JH34SpHQWIEtsmBg_x4mwMm2pqfDNxnNW51Opfgx8Ss,10517
65
73
  agentscope_runtime/engine/app/__init__.py,sha256=8asUQNRTjIEyoWjl955mn3gLkcYna8-CK4A810Eol0Y,87
66
- agentscope_runtime/engine/app/agent_app.py,sha256=Gc28kxTFp8dF0PapJbBX4hGethiWO2vIPbS5WL3fjXc,12875
74
+ agentscope_runtime/engine/app/agent_app.py,sha256=4QC6HR8m6WrX8mZAVWFwQilaDLlf1xLS0-sm-AEaegY,13182
67
75
  agentscope_runtime/engine/app/base_app.py,sha256=ILLp4GUVslRtLxSjCTrpTX6f1E5QhM9oXefxy4sA28I,2290
68
76
  agentscope_runtime/engine/app/celery_mixin.py,sha256=fDPc4loHieUXvgJYRYWAv-3qOSssdbfKH9Fiu-ShrIs,2929
69
- agentscope_runtime/engine/deployers/__init__.py,sha256=goBDVczK_iEzSQ7H4comkFCr6vEwuTXCo87yktRj8Vg,555
70
- agentscope_runtime/engine/deployers/agentrun_deployer.py,sha256=hNYhTPIBkXvCDvvuKdMzFmESsAyVFtBsq_NPD-z-zMo,106117
77
+ agentscope_runtime/engine/deployers/__init__.py,sha256=S6aDWUtxNT3CEA2ElVSz7JTPNqaZE01FAG8KqwGljoc,1371
78
+ agentscope_runtime/engine/deployers/agentrun_deployer.py,sha256=flJRl6b_RnpoiiRCv9Z0GlyuxIDszf8FRvnLOcE_rAw,106119
71
79
  agentscope_runtime/engine/deployers/base.py,sha256=X4Vdu1x_ln0GK3aB_SSMaFoWDRYjh9nQT-mPOxWwkXY,1393
72
80
  agentscope_runtime/engine/deployers/cli_fc_deploy.py,sha256=OZ6vn6t3FEKQJgbxADvPM5S90WP7OJGdBEBc-te_GiE,6063
81
+ agentscope_runtime/engine/deployers/fc_deployer.py,sha256=sIJvRp_W54C0daSnbn3LLt0NezkayGVE5ItPtUH5EdM,56445
82
+ agentscope_runtime/engine/deployers/knative_deployer.py,sha256=c5wy2h2TtQ82A5L4Sp_xLMni3SWSeujtohC7GwK11F8,9751
73
83
  agentscope_runtime/engine/deployers/kubernetes_deployer.py,sha256=5sc2cMvB19zERTpphhyDKFohO9-YHtucNeGSlfbUICk,13548
74
84
  agentscope_runtime/engine/deployers/local_deployer.py,sha256=mmEk5kSRqQW5Z32Gm3PWNphCu2QXisAoejWmDI5XBVk,22485
75
85
  agentscope_runtime/engine/deployers/modelstudio_deployer.py,sha256=Pyb4XubHFUm78hm3NbUBC0FWm91-KWuzI4FlaqSJfiQ,34912
76
- agentscope_runtime/engine/deployers/adapter/__init__.py,sha256=11R2POJNbfH5WE3hntYvhUOm_bq-LB-EaUGfbPwCHuQ,66
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
77
88
  agentscope_runtime/engine/deployers/adapter/protocol_adapter.py,sha256=OpLfBWiFY_xC0uG53UYSeQuUnw7vZzvNnm5w6QFr9_w,737
78
- agentscope_runtime/engine/deployers/adapter/a2a/__init__.py,sha256=KwY0UPs0VAoqjxWOr6NiwVtTfl-Vr5qtUYxeqQ0RdeU,1953
89
+ agentscope_runtime/engine/deployers/adapter/a2a/__init__.py,sha256=s1_skJDKRc70GIN95euZFwN4IV8EvGjRGwk-JvWe0S8,1169
79
90
  agentscope_runtime/engine/deployers/adapter/a2a/a2a_adapter_utils.py,sha256=7nuyfkN7rR8PjpWPKh2acsd9VztbtcZOQdzSp4dWVUY,10956
80
91
  agentscope_runtime/engine/deployers/adapter/a2a/a2a_agent_adapter.py,sha256=h7wwl2CiKcGUxhKkrWN7DpaIpTltoRm-6ETS_fJHmEk,2147
81
- agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py,sha256=aLBfigx4qe3eqSEQNqKbZAN6h3KAvVwp6JrNO6_BjEo,16307
82
- agentscope_runtime/engine/deployers/adapter/a2a/a2a_registry.py,sha256=JfynAUw2FIAGDneMLZUKsCJLFAuNP_TFLv-oUCnSSDE,8763
83
- agentscope_runtime/engine/deployers/adapter/a2a/nacos_a2a_registry.py,sha256=XDzs_4tOdJwFototk7cF_J7IGK_su0JUikMTupBYJUk,23848
92
+ agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py,sha256=7Rt_vRjHroGaLEhpk32w6SmzRl9vN9qVhWt0mWAeMlE,16681
93
+ agentscope_runtime/engine/deployers/adapter/a2a/a2a_registry.py,sha256=sDnR1iIGP_vpgRrIcyrAJ26SFJ_RgolyJDkA2StRihA,2274
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
84
98
  agentscope_runtime/engine/deployers/adapter/responses/__init__.py,sha256=0f1SVBagTz0Kex8kX9_QapqmBPJUHcRejnV4P39PaBc,93
85
99
  agentscope_runtime/engine/deployers/adapter/responses/response_api_adapter_utils.py,sha256=MmvLkHDbb1cQMS2kQKnS3FT_6DUOQRdL2vb_HMA6eFo,98448
86
100
  agentscope_runtime/engine/deployers/adapter/responses/response_api_agent_adapter.py,sha256=B3F1GOvu_HFFdH8gnKJtVlr8u34jjRV3iKMgVz1XHVY,1593
@@ -94,8 +108,9 @@ agentscope_runtime/engine/deployers/utils/build_cache.py,sha256=VNbUIZQ_-s9HZufn
94
108
  agentscope_runtime/engine/deployers/utils/deployment_modes.py,sha256=vr2UzA1bzAAzxjToj9bVGzRWm47Za6w6cDI0nF1NMD0,448
95
109
  agentscope_runtime/engine/deployers/utils/detached_app.py,sha256=-6wTiqMYssKYDGduRMHeehuqvHigz9qoUMj-pereVpU,18707
96
110
  agentscope_runtime/engine/deployers/utils/k8s_utils.py,sha256=lgVYTewDBhtSwigEJ3Fok39wwrXPTuPmonyaB6mmaOo,7381
97
- agentscope_runtime/engine/deployers/utils/net_utils.py,sha256=X4zJw_BIhFPXqeoNKp7--V6gzjjR8InCue1vMU2SBQg,1721
98
- agentscope_runtime/engine/deployers/utils/package.py,sha256=L7W5j6iAyVFYLOsotCbagnA_otfktQ6Y9DF_xG7fwc4,22970
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
99
114
  agentscope_runtime/engine/deployers/utils/wheel_packager.py,sha256=GFMvLnLoQhs0joGfDz2x60Dy9WTMbpSNYP7XQgYP__E,14475
100
115
  agentscope_runtime/engine/deployers/utils/docker_image_utils/__init__.py,sha256=DQlspd1dFOTV7GO82Jel5APuUqYkbjmpT72K1vb5SVw,235
101
116
  agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py,sha256=5hnjfauzlbQf3j7v8EaPXCn6HsxkTB4NmbkPIBruF3Q,14179
@@ -109,10 +124,11 @@ agentscope_runtime/engine/deployers/utils/templates/app_main.py.j2,sha256=cgaSFV
109
124
  agentscope_runtime/engine/deployers/utils/templates/runner_main.py.j2,sha256=W__KQfZ0qpdQwlkFMpahEVt7HhKnB71dS3R3zNg0hho,2464
110
125
  agentscope_runtime/engine/deployers/utils/templates/standalone_main.py.j2,sha256=AfFDaSjM9t7gMgGvhfcQ2vBPusc29rkDHNaPHnbhKas,5621
111
126
  agentscope_runtime/engine/helpers/agent_api_builder.py,sha256=mSixBHF9QDro8UNqijq4A5bM7O89z1i2jz42hMAVdio,18779
127
+ agentscope_runtime/engine/helpers/agent_api_client.py,sha256=kKhmNPeIK4segqDeZMRltXeXCeM8CNNbkiYSVXBSFA0,10838
112
128
  agentscope_runtime/engine/helpers/runner.py,sha256=xB9F95nkAxM7J8ZCwPhZSidvD9y4DN_bw3CQOICGZEY,855
113
129
  agentscope_runtime/engine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
130
  agentscope_runtime/engine/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
- agentscope_runtime/engine/schemas/agent_schemas.py,sha256=wNUl5khvOX21PJkpd7g5BRvCMHODSylI5OCE8096g-I,27030
131
+ agentscope_runtime/engine/schemas/agent_schemas.py,sha256=DndktloMZ5aEOU4VQrC7L-hOPaPDWUNnJplqJu6bm5Y,27210
116
132
  agentscope_runtime/engine/schemas/embedding.py,sha256=yn6VaKPXkze0bvJuaLKzWIOus_AuT-8Z_XRABk4NH60,891
117
133
  agentscope_runtime/engine/schemas/exception.py,sha256=eVZpZD77Dva5l_UsxRzCsgJ6bUOH1XQChP-iid5m37E,16003
118
134
  agentscope_runtime/engine/schemas/modelstudio_llm.py,sha256=mi_1IWjaPq1W4IaVtVtIy-kwfUSFMfWKM3kaPu2KLC4,9803
@@ -123,22 +139,22 @@ agentscope_runtime/engine/schemas/session.py,sha256=ctSMlTJHdd2HaJ_6tEOxNDZbLcex
123
139
  agentscope_runtime/engine/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
140
  agentscope_runtime/engine/services/base.py,sha256=g2hTc3ivj2MPjnsu5_09m6_MZ3KDHBfiYKu4F2pLA1I,2096
125
141
  agentscope_runtime/engine/services/service_factory.py,sha256=LTLU6sxlaRL1GtBmXKvBxRD2E8eh2xla6XLVyFH_CFQ,3580
126
- agentscope_runtime/engine/services/agent_state/__init__.py,sha256=zASW6ZxMbaVQ3bz85riQ8HF2svk1b8SUxlrPUVL03ng,571
142
+ agentscope_runtime/engine/services/agent_state/__init__.py,sha256=fCUbsBy1zxGTsBBhzidpvlY-Ox3DgQOg6C3aCNhsF_0,739
127
143
  agentscope_runtime/engine/services/agent_state/redis_state_service.py,sha256=XjZ0y05Wkc0JoQEZevBhaC-eCvJxVKQZBoq21RLH1YM,5883
128
144
  agentscope_runtime/engine/services/agent_state/state_service.py,sha256=Z7vaZidnU963ldkqCEPTt5MiE5IJGJq0YnMMn5sehQc,5302
129
145
  agentscope_runtime/engine/services/agent_state/state_service_factory.py,sha256=Ze-smpoJXaQxZG4OuzCjQ9fPqfvoMM3xCT7-ZvYmU8I,1589
130
- agentscope_runtime/engine/services/memory/__init__.py,sha256=KZTLEqUE8CdD5JcY01ZpHAhS54N9bwYD0wwUIgSD4cA,1094
146
+ agentscope_runtime/engine/services/memory/__init__.py,sha256=2P0HUftkluvEcEw15XudEb-BkEAFpty7ORnRbV6_Pw4,1261
131
147
  agentscope_runtime/engine/services/memory/mem0_memory_service.py,sha256=jmiaFncOBAlx-plEcnz8ljck1Pwi0_czWBOSM7JIJnA,3694
132
148
  agentscope_runtime/engine/services/memory/memory_service.py,sha256=QNNvG3ccUiWznQfKNTtSbYqqcuoA2IJW_9xmNb1KMQI,8591
133
149
  agentscope_runtime/engine/services/memory/memory_service_factory.py,sha256=XLWriAldbRHHczcdzDK3tKaNfK5KrOYCNUUgeE5spbU,4031
134
- agentscope_runtime/engine/services/memory/redis_memory_service.py,sha256=jV4sCmzwl_xQjKLXJac3UdqekbgOx7psJGMzGfT-FRg,10703
150
+ agentscope_runtime/engine/services/memory/redis_memory_service.py,sha256=YJcDmLG4_SUywakktorokuJPG5sF23CewKLY2MBSvqs,10719
135
151
  agentscope_runtime/engine/services/memory/reme_personal_memory_service.py,sha256=6wbCL5IRJG5GPQqFuy4yN-tARDG30CgKtJ--iKiUowQ,3007
136
152
  agentscope_runtime/engine/services/memory/reme_task_memory_service.py,sha256=dLIhWfqKZEeXB1r7f8EKPftL2lk4f60TdlCNdQNolNk,330
137
153
  agentscope_runtime/engine/services/memory/tablestore_memory_service.py,sha256=Pf1nyk5d5X7h8Iuy1e7ROCNlap9cmG--TFm7fZNUZ90,10335
138
154
  agentscope_runtime/engine/services/sandbox/__init__.py,sha256=eaneUQzqUfWrfdtc8MdzpGmrQDO_MSzGje1nZJ6Aay4,407
139
155
  agentscope_runtime/engine/services/sandbox/sandbox_service.py,sha256=KwJ0FRKxaiAMHKc1w4O6wmLigI_wBmZcgSyMu3L4X1k,6559
140
156
  agentscope_runtime/engine/services/sandbox/sandbox_service_factory.py,sha256=VMx-TeY4gghYU-CEY38M5Q9NoinfE05IfVq57Cu4X08,1595
141
- agentscope_runtime/engine/services/session_history/__init__.py,sha256=iTKbWEulLK9TtyQJHl9euam6xSlbY-8yKo2vgNAJ8Qc,929
157
+ agentscope_runtime/engine/services/session_history/__init__.py,sha256=HEXiXR9ZWYejb5Fn4ejgFo3eIZyeTBkMfei-nDAyAbA,1096
142
158
  agentscope_runtime/engine/services/session_history/redis_session_history_service.py,sha256=c-ULzpQS8yAm1FReETkcUJWUMqookT4ZycUVBdMFCA8,10142
143
159
  agentscope_runtime/engine/services/session_history/session_history_service.py,sha256=-UHa_OVC8TYPcZcATXE6-pTI0o5dtPwQoVpVi-OjwNE,8476
144
160
  agentscope_runtime/engine/services/session_history/session_history_service_factory.py,sha256=r8Ro_IdRSzAN6iSHo5MzHSld5UGr-GuHmfIhwQ1iQMM,2307
@@ -148,47 +164,47 @@ agentscope_runtime/engine/services/utils/tablestore_service_utils.py,sha256=YA4g
148
164
  agentscope_runtime/engine/tracing/__init__.py,sha256=yUmXYDqApqGOlZJqJ_jb8TvSYUAUk4VInmNSSiICGoI,1237
149
165
  agentscope_runtime/engine/tracing/asyncio_util.py,sha256=aPaOPiLq3YVm6XS_wn8zWK2pK3aHwV0bRwD62pAJ9xQ,685
150
166
  agentscope_runtime/engine/tracing/base.py,sha256=Y9rU289wC72Fjax4FeHZP0AzxVwQvFCV6UUogqRRl54,10635
151
- agentscope_runtime/engine/tracing/local_logging_handler.py,sha256=scx_eJeZHonLYklohmaDAikKerxVrPRlZAUQB2KmNJU,12447
167
+ agentscope_runtime/engine/tracing/local_logging_handler.py,sha256=YHlEeUdeCp-59h6_3D5ksiLtV0sOyXC53165rDdnq7g,12436
152
168
  agentscope_runtime/engine/tracing/message_util.py,sha256=9ldwWNcm6VqAZ04orHOf8namw0I0CEiU5v89fyKEO_c,18551
153
169
  agentscope_runtime/engine/tracing/tracing_metric.py,sha256=X1m6yjLx_hnbmozsCxiW9X3t1gWgrKlbsYEfCMqNSx0,2375
154
170
  agentscope_runtime/engine/tracing/tracing_util.py,sha256=tzY-vp4k6BzfjHIIpQLrrgswsxQVMiCVMp6gQXFnzDY,3820
155
- agentscope_runtime/engine/tracing/wrapper.py,sha256=mgvkdBrIjOt-q7UMSX77gsO7TVzl2PyDdoFUEv8rr-o,31524
156
- agentscope_runtime/sandbox/__init__.py,sha256=Rjueu4FRl0ieis-XwHDbW81kopNVudhNRMIso9gAOSo,869
171
+ agentscope_runtime/engine/tracing/wrapper.py,sha256=Gm4Ln4QLzumetx_siN5cC5m6ohr_OUqSkLnMowqSefY,31979
172
+ agentscope_runtime/sandbox/__init__.py,sha256=zDqWKH69cRv0IhrtY746lNxm428pwyi38weoc5X7KYk,1112
157
173
  agentscope_runtime/sandbox/build.py,sha256=WS1nTvVmFwt5JIJiYb1qBcnSnTucC6_R4ps0wSivQX0,8509
158
174
  agentscope_runtime/sandbox/constant.py,sha256=NzpxJ1hBDkP9J_c45FsG3iDgBkfEkIlkSKjc4X78tiU,1011
159
- agentscope_runtime/sandbox/enums.py,sha256=8aAilIiP9Gw4SsPmhsDvGLo7D2ElZ2n0hRCU1TwmCio,1920
175
+ agentscope_runtime/sandbox/enums.py,sha256=sAQyJHvqmy-Cs3sggI4dvLXmvwL414lsxibD7g7kVeU,2111
160
176
  agentscope_runtime/sandbox/mcp_server.py,sha256=UT3aRZqyeHqEhhm-wZ0Ilhew3eDMHzz9DCN6Qb-eKFk,6012
161
177
  agentscope_runtime/sandbox/registry.py,sha256=3ukwbTOjSINWH7DIOmG1iPgze5nb-zXl2X8M7_AeBwg,4190
162
178
  agentscope_runtime/sandbox/utils.py,sha256=XH0t0QJMUt5RFACa_7FGo5YIC0Z3tPtdBsOtnCovPJU,3199
163
179
  agentscope_runtime/sandbox/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
- agentscope_runtime/sandbox/box/sandbox.py,sha256=-BWme4Zxx9xWssRXf6KzH3RVueR9MuzcOcN8Gdu7mTg,5309
180
+ agentscope_runtime/sandbox/box/sandbox.py,sha256=h4Texj9VFRoQU8AgTwGB--GroDD1jGOLSGYDIB0te28,6338
165
181
  agentscope_runtime/sandbox/box/agentbay/__init__.py,sha256=R-KRTawGZwblLBh0ZrXz2ESaV8biE3pLqVXUcLUI1-g,101
166
182
  agentscope_runtime/sandbox/box/agentbay/agentbay_sandbox.py,sha256=id19HKUq2RFDZHW90UlGj74ZKkknbK5juL1w4qniC0g,17827
167
- agentscope_runtime/sandbox/box/base/__init__.py,sha256=a68IgljSWvNn1mWaCOeEm2C-7Gf7JiUdDnJpBfID198,89
168
- agentscope_runtime/sandbox/box/base/base_sandbox.py,sha256=H0MGEVpM9q6a7Ts2EfslNfWgeGuBUtL8ISvAkv34zQA,1323
183
+ agentscope_runtime/sandbox/box/base/__init__.py,sha256=iOx8xRc929N4FBURgrfTJ_X2exGWq41GwYVaOwCZqDU,127
184
+ agentscope_runtime/sandbox/box/base/base_sandbox.py,sha256=ByvpG16LgKKQ2KR9MClY7QuhyhgqF_xh6O3q6zDGYCI,2693
169
185
  agentscope_runtime/sandbox/box/base/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
- agentscope_runtime/sandbox/box/browser/__init__.py,sha256=thrkAvtLQ23jR8sM_bSsfmsqFiwpExgh72vnrVUcweQ,98
171
- agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=oCDD2cp9Mc7mTDi6gFXPlH7jjpOGnxBBlai5JGiJQIc,9380
186
+ agentscope_runtime/sandbox/box/browser/__init__.py,sha256=io0rQzUVdH3c5vEqMegr0Z1YMfYPFqIkHKz4SAYqWGk,142
187
+ agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=Bbe2wDMYA4ddImKcJLEQmNvYC66XfWmlngTtGZkV-gQ,15417
172
188
  agentscope_runtime/sandbox/box/browser/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
189
  agentscope_runtime/sandbox/box/cloud/__init__.py,sha256=eydrq0JZ55M6WQry4E0N-By7P-3NnrXS1GwBYWbIovk,92
174
190
  agentscope_runtime/sandbox/box/cloud/cloud_sandbox.py,sha256=y5lh5C3UqgzHUmkb_VqQ7627653r2MZ7YLmxLna-Htw,7660
175
191
  agentscope_runtime/sandbox/box/dummy/__init__.py,sha256=RErHmUx7hFXX69nohtYBS_QSHEWENZHZbWG3434ZDls,92
176
192
  agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py,sha256=KAsCEbgZu48qklNMWLd7yPCb7TP1RPFXVi8CQ9Z-kPo,705
177
- agentscope_runtime/sandbox/box/filesystem/__init__.py,sha256=OsYCqFfattl6y5M55XMwHTeXVnb-pL3cWMJKjTZIu-s,107
178
- agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py,sha256=ORxCMAd32rs5BOBosyp7bYm2izwxvL2-h1YUziNl2cU,4834
193
+ agentscope_runtime/sandbox/box/filesystem/__init__.py,sha256=hn2leixVtV4EElud-tntd_v0RaFW5o_wGgxGTxGnSbo,157
194
+ agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py,sha256=N5Bl4R5mNH6QdXV1Yyvo0vPXqxebPjTQvdfAhYet2c8,8233
179
195
  agentscope_runtime/sandbox/box/filesystem/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
180
- agentscope_runtime/sandbox/box/gui/__init__.py,sha256=-tzNU2yYdKjXD83PlNaMtsu5nqO1yBi2LDevIda2eqo,108
181
- agentscope_runtime/sandbox/box/gui/gui_sandbox.py,sha256=UkVGcOX0naQZmxf2T6ltPIQ_FBL2YRZKfX5Iks6HoXY,5204
196
+ agentscope_runtime/sandbox/box/gui/__init__.py,sha256=CG-1to4gkfpePx3v4IHYMDJI0PKM58tRZTXcevoNWPU,176
197
+ agentscope_runtime/sandbox/box/gui/gui_sandbox.py,sha256=o4knVahT51aWsHJ0Grd5lVKiSaR-zDTPrrFokGq2dsQ,9989
182
198
  agentscope_runtime/sandbox/box/gui/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
- agentscope_runtime/sandbox/box/mobile/__init__.py,sha256=x9eL7XEw9oAZIzKr-_6UFbtkfTvfmXJ57Lmc4rXMyv0,95
184
- agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py,sha256=a-uynxbBPEXZ_nVNaocYtAzwiJRPwXxCeUVOAGYpQsE,10985
199
+ agentscope_runtime/sandbox/box/mobile/__init__.py,sha256=-pDTAO_tMeS3uJloT6F8zAuaPGMM4vKklvjKHMWN43k,137
200
+ agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py,sha256=rGtLL3OPkE7MMsURkxVTzh1W5DeORZAl6G_NGgTm1AY,15187
185
201
  agentscope_runtime/sandbox/box/mobile/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
186
202
  agentscope_runtime/sandbox/box/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
203
  agentscope_runtime/sandbox/box/shared/app.py,sha256=bw6l0XPVF86yuh0jO_Sx9S-B-luFE3U3lIb6Qjc3dGU,1107
188
204
  agentscope_runtime/sandbox/box/shared/dependencies/__init__.py,sha256=e1x-6L6vsBbQBrtjrDsdK8eqk-lCqxOIPrSqWyxoG50,98
189
205
  agentscope_runtime/sandbox/box/shared/dependencies/deps.py,sha256=pavJWhin5Dbc1f452PDNaCYo9RkK-y95dwLyYZQMOPQ,687
190
206
  agentscope_runtime/sandbox/box/shared/routers/__init__.py,sha256=QokVfRhfBftiXktqpn3iqdKcSz7TcSn-4Kbf4QhOUXs,273
191
- agentscope_runtime/sandbox/box/shared/routers/generic.py,sha256=5hIwNPpC2Pu4uTqKWGcymBKXdKqbYEsyOYD4Vv7XR44,5164
207
+ agentscope_runtime/sandbox/box/shared/routers/generic.py,sha256=oOzLMljVDLpQsNRKxPqTftgfR5VEBnbZTZ58BnbwiZ4,5473
192
208
  agentscope_runtime/sandbox/box/shared/routers/mcp.py,sha256=_2492A88qba3hUPV67oexfWm-mHEFcr9ygzW-Qqhyi0,6046
193
209
  agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py,sha256=K3t4fg6latjD2bdYpRVB4SdAcN2AjIXOhhh2lnx4YOM,6449
194
210
  agentscope_runtime/sandbox/box/shared/routers/runtime_watcher.py,sha256=v4jAGYtJaYsRJaSTv7e7hmDLHWVAtJqnSnpPq-kFcmU,5344
@@ -204,17 +220,19 @@ agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_dataprocess.p
204
220
  agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_env.py,sha256=22hfq1yO5abZocG8FfaabCXD4HGg-RT_8AY1dHbtvxM,11878
205
221
  agentscope_runtime/sandbox/box/training_box/environments/bfcl/env_handler.py,sha256=T-W9w4nKI7_BXgF9caqV3KMeX5d6yvdfhQu0o2oWTUE,30114
206
222
  agentscope_runtime/sandbox/box/training_box/src/trajectory.py,sha256=cFr3uVUPq5gHKPa6ALi7QCLBVkgYOyPgyJrOzgBHf3k,7885
207
- agentscope_runtime/sandbox/client/__init__.py,sha256=KiNsTToc1jICqCC1BcH762jZgHuOkCPiG32oXGo6dQE,176
208
- agentscope_runtime/sandbox/client/http_client.py,sha256=ffP2jqWfBbHzbms-S1D9jDIDZZ-6r54Y-XEK4FuDIP4,18010
223
+ agentscope_runtime/sandbox/client/__init__.py,sha256=xGsWWx5FNBeMbv-u14U19nud2RTS-jUsLhjMol8EEUo,271
224
+ agentscope_runtime/sandbox/client/async_http_client.py,sha256=dadHqpKTYhH03gShlsx6rAkDdH5unQvJOQnUpqtu83s,10179
225
+ agentscope_runtime/sandbox/client/base.py,sha256=6kbYyxbWyOCJluWJZSbyC3vGnsmgeS7AsaGD72Ib-Y8,2414
226
+ agentscope_runtime/sandbox/client/http_client.py,sha256=2WOx-Cj8RTlHjs7KoEInp4Vsh5ogkrQzeZPsJus0mHI,9963
209
227
  agentscope_runtime/sandbox/client/training_client.py,sha256=WIhGBib2IWQZwUoSJUn8kuIGrtd6Yz3VOxCh0tft630,7625
210
228
  agentscope_runtime/sandbox/custom/__init__.py,sha256=wpu0DlzdLohYzOVM9yZloIWid3w_ME6dPtOjCZKbRZ8,463
211
229
  agentscope_runtime/sandbox/custom/custom_sandbox.py,sha256=ZKE7otTimLZ2-ZV9PMVLRA6P1hH0a4fT-d_K4Ga59og,1008
212
230
  agentscope_runtime/sandbox/custom/example.py,sha256=iU5G7Vb-oq3wsJ_Kl8oFAwi0HNbt5V_8fWAAyiQ8RuY,964
213
231
  agentscope_runtime/sandbox/manager/__init__.py,sha256=KNHc1uDaUWBH_ZnWjH5NHRBiQM_zDyi9B2xKVNtAWIg,98
214
- agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=EWrccNdodFHr_w4jkhZUIGJ5RrhpKA-hdYuXklRQXlM,27958
232
+ agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=y6UbaKhKJJr6239Y7clOtkwJWjeidSh7_JF2Q0haZaM,36175
215
233
  agentscope_runtime/sandbox/manager/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
- agentscope_runtime/sandbox/manager/server/app.py,sha256=Qa6443dBuqg41hslqw14SsN7UPQJ-CqI3z5DU5Xpf3c,13641
217
- agentscope_runtime/sandbox/manager/server/config.py,sha256=yXiricKpA_r2zoMF7YpRgIxtJck89rzN9iwaVVLhK60,4451
234
+ agentscope_runtime/sandbox/manager/server/app.py,sha256=JgvKwcMJtgcQRKbNw2AOzHBZrTPOUWT7Xg6YpQJqwYI,13877
235
+ agentscope_runtime/sandbox/manager/server/config.py,sha256=VnsOXhZwYi2FSxkpUlo_g9SsXK9jYp7kdmdERUZNxjs,4488
218
236
  agentscope_runtime/sandbox/manager/server/models.py,sha256=rCibF0HsotFcqsQVTSUoOTJCFQU3oqKvpOiWMWIRLyY,304
219
237
  agentscope_runtime/sandbox/manager/storage/__init__.py,sha256=jGmpfXV1E2X7AqkGeF1xu1EHiSTvbH3TSIviLbKBFh4,210
220
238
  agentscope_runtime/sandbox/manager/storage/data_storage.py,sha256=mGwf7LYbp_fRjLN9BZay6cm3eNziEdU6OlSBeFnIBMQ,475
@@ -223,7 +241,7 @@ agentscope_runtime/sandbox/manager/storage/oss_storage.py,sha256=fIUxgOkOaH_1vlg
223
241
  agentscope_runtime/sandbox/model/__init__.py,sha256=WoDOSD_67T-UkZdXOtJzwG4-0E8ABwUBJF6WSCs_sO0,182
224
242
  agentscope_runtime/sandbox/model/api.py,sha256=Sjxw6DHkGa8Sp5dUU5kaajkHPj7eiX1EgFZk-zOPafM,400
225
243
  agentscope_runtime/sandbox/model/container.py,sha256=f7dj4ir4sxXjZ_zm4iEkjskraacZLX2SR_l1WSl0FOo,1405
226
- agentscope_runtime/sandbox/model/manager_config.py,sha256=YbXYgv_R03QcJb9aqU3fXDoHVAPk0R1SaY8uYVSmZRU,10371
244
+ agentscope_runtime/sandbox/model/manager_config.py,sha256=phNj1FQk3235jKuSFz1IhkRuOsTkYXOoCuyGoD6eu14,10530
227
245
  agentscope_runtime/tools/__init__.py,sha256=YdRrEv_DTUEdgSSTSURYObrbv_CTe9QqJpmbpTelFuI,3660
228
246
  agentscope_runtime/tools/_constants.py,sha256=DFjHNMaAkX__104b8_cyn6-nLuoJ3eVOr3wMpNBY-EA,525
229
247
  agentscope_runtime/tools/base.py,sha256=InY9_1Ys9eVA5UgZ8aQM_IEFI9BFNZt3PZlhUNskjLg,7759
@@ -255,6 +273,12 @@ agentscope_runtime/tools/generations/qwen_text_to_speech.py,sha256=jgxOUqO_JM280
255
273
  agentscope_runtime/tools/generations/speech_to_text.py,sha256=1X4b8kc9UEhxYEA0wmkubd6qGwVDQwO6rUBbl0tmPRM,9371
256
274
  agentscope_runtime/tools/generations/speech_to_video.py,sha256=rHqTszP_g6C1OJCZPmj7quX0E0yL-xUZNlEBp6-Jfb4,10519
257
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
258
282
  agentscope_runtime/tools/realtime_clients/__init__.py,sha256=fOK8KH0gSTYS8Kwz6OC94nwYjMb4pEhADsvq8iiVA-Q,394
259
283
  agentscope_runtime/tools/realtime_clients/asr_client.py,sha256=hTMKRNvoBnw0X-G4pVY-9ec9aHgB0_bImkb-T_FT7Pk,605
260
284
  agentscope_runtime/tools/realtime_clients/azure_asr_client.py,sha256=w5PzBO5SpIfy4759ZmejHM4ZCsAYhKHQTreQM_lAvJQ,6960
@@ -270,9 +294,9 @@ agentscope_runtime/tools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
270
294
  agentscope_runtime/tools/utils/api_key_util.py,sha256=xIIUsvWgSt4etgYP7lS0WnqVIhZ-REzrBLwzAT-TrVI,1210
271
295
  agentscope_runtime/tools/utils/crypto_utils.py,sha256=Wqq4cn3FHQge-2Q1zGSMUyKh4V4A2baiZm8ZNhMqhPo,3382
272
296
  agentscope_runtime/tools/utils/mcp_util.py,sha256=n3GGKBEQPJ-fiNXdYnBx_90GVKWvm9eaNbR2G0q2lOw,905
273
- agentscope_runtime-1.0.4a1.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
274
- agentscope_runtime-1.0.4a1.dist-info/METADATA,sha256=0kMQHn9gjXHksEAsFqT0KVXyflX8bhfaiutw3CR0d8M,41662
275
- agentscope_runtime-1.0.4a1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
276
- agentscope_runtime-1.0.4a1.dist-info/entry_points.txt,sha256=Mpjpwe0A9lYNsFtWe_VeoGhtDVsKLIi6w9ZKzyhc17M,425
277
- agentscope_runtime-1.0.4a1.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
278
- agentscope_runtime-1.0.4a1.dist-info/RECORD,,
297
+ agentscope_runtime-1.0.5.post1.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
298
+ agentscope_runtime-1.0.5.post1.dist-info/METADATA,sha256=pf0x4o6H29BhJwQXqkfYeDXDTYBhM4dJljuGv87elyQ,48331
299
+ agentscope_runtime-1.0.5.post1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
300
+ agentscope_runtime-1.0.5.post1.dist-info/entry_points.txt,sha256=Mpjpwe0A9lYNsFtWe_VeoGhtDVsKLIi6w9ZKzyhc17M,425
301
+ agentscope_runtime-1.0.5.post1.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
302
+ agentscope_runtime-1.0.5.post1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5