agentscope-runtime 1.0.1__py3-none-any.whl → 1.0.3__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 (69) hide show
  1. agentscope_runtime/adapters/agentscope/message.py +32 -7
  2. agentscope_runtime/adapters/agentscope/stream.py +121 -91
  3. agentscope_runtime/adapters/agno/__init__.py +0 -0
  4. agentscope_runtime/adapters/agno/message.py +30 -0
  5. agentscope_runtime/adapters/agno/stream.py +122 -0
  6. agentscope_runtime/adapters/langgraph/__init__.py +12 -0
  7. agentscope_runtime/adapters/langgraph/message.py +257 -0
  8. agentscope_runtime/adapters/langgraph/stream.py +205 -0
  9. agentscope_runtime/cli/__init__.py +7 -0
  10. agentscope_runtime/cli/cli.py +63 -0
  11. agentscope_runtime/cli/commands/__init__.py +2 -0
  12. agentscope_runtime/cli/commands/chat.py +815 -0
  13. agentscope_runtime/cli/commands/deploy.py +1074 -0
  14. agentscope_runtime/cli/commands/invoke.py +58 -0
  15. agentscope_runtime/cli/commands/list_cmd.py +103 -0
  16. agentscope_runtime/cli/commands/run.py +176 -0
  17. agentscope_runtime/cli/commands/sandbox.py +128 -0
  18. agentscope_runtime/cli/commands/status.py +60 -0
  19. agentscope_runtime/cli/commands/stop.py +185 -0
  20. agentscope_runtime/cli/commands/web.py +166 -0
  21. agentscope_runtime/cli/loaders/__init__.py +6 -0
  22. agentscope_runtime/cli/loaders/agent_loader.py +295 -0
  23. agentscope_runtime/cli/state/__init__.py +10 -0
  24. agentscope_runtime/cli/utils/__init__.py +18 -0
  25. agentscope_runtime/cli/utils/console.py +378 -0
  26. agentscope_runtime/cli/utils/validators.py +118 -0
  27. agentscope_runtime/common/collections/redis_mapping.py +4 -1
  28. agentscope_runtime/engine/app/agent_app.py +55 -9
  29. agentscope_runtime/engine/deployers/__init__.py +1 -0
  30. agentscope_runtime/engine/deployers/adapter/a2a/__init__.py +56 -1
  31. agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py +449 -41
  32. agentscope_runtime/engine/deployers/adapter/a2a/a2a_registry.py +273 -0
  33. agentscope_runtime/engine/deployers/adapter/a2a/nacos_a2a_registry.py +640 -0
  34. agentscope_runtime/engine/deployers/agentrun_deployer.py +152 -22
  35. agentscope_runtime/engine/deployers/base.py +27 -2
  36. agentscope_runtime/engine/deployers/kubernetes_deployer.py +161 -31
  37. agentscope_runtime/engine/deployers/local_deployer.py +188 -25
  38. agentscope_runtime/engine/deployers/modelstudio_deployer.py +109 -18
  39. agentscope_runtime/engine/deployers/state/__init__.py +9 -0
  40. agentscope_runtime/engine/deployers/state/manager.py +388 -0
  41. agentscope_runtime/engine/deployers/state/schema.py +96 -0
  42. agentscope_runtime/engine/deployers/utils/build_cache.py +736 -0
  43. agentscope_runtime/engine/deployers/utils/detached_app.py +105 -30
  44. agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py +31 -10
  45. agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py +23 -10
  46. agentscope_runtime/engine/deployers/utils/docker_image_utils/image_factory.py +35 -2
  47. agentscope_runtime/engine/deployers/utils/k8s_utils.py +241 -0
  48. agentscope_runtime/engine/deployers/utils/net_utils.py +65 -0
  49. agentscope_runtime/engine/deployers/utils/package.py +56 -6
  50. agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py +16 -2
  51. agentscope_runtime/engine/deployers/utils/service_utils/process_manager.py +155 -5
  52. agentscope_runtime/engine/deployers/utils/wheel_packager.py +107 -123
  53. agentscope_runtime/engine/runner.py +30 -9
  54. agentscope_runtime/engine/schemas/exception.py +604 -0
  55. agentscope_runtime/engine/services/agent_state/redis_state_service.py +61 -8
  56. agentscope_runtime/engine/services/agent_state/state_service_factory.py +2 -5
  57. agentscope_runtime/engine/services/memory/redis_memory_service.py +129 -25
  58. agentscope_runtime/engine/services/session_history/redis_session_history_service.py +160 -34
  59. agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py +113 -39
  60. agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py +20 -4
  61. agentscope_runtime/sandbox/build.py +50 -57
  62. agentscope_runtime/sandbox/utils.py +2 -0
  63. agentscope_runtime/version.py +1 -1
  64. {agentscope_runtime-1.0.1.dist-info → agentscope_runtime-1.0.3.dist-info}/METADATA +31 -8
  65. {agentscope_runtime-1.0.1.dist-info → agentscope_runtime-1.0.3.dist-info}/RECORD +69 -36
  66. {agentscope_runtime-1.0.1.dist-info → agentscope_runtime-1.0.3.dist-info}/entry_points.txt +1 -0
  67. {agentscope_runtime-1.0.1.dist-info → agentscope_runtime-1.0.3.dist-info}/WHEEL +0 -0
  68. {agentscope_runtime-1.0.1.dist-info → agentscope_runtime-1.0.3.dist-info}/licenses/LICENSE +0 -0
  69. {agentscope_runtime-1.0.1.dist-info → agentscope_runtime-1.0.3.dist-info}/top_level.txt +0 -0
@@ -1,9 +1,9 @@
1
1
  agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
2
- agentscope_runtime/version.py,sha256=haSsc-Hab6nifVBdUK_JfDyJVkfwq8oDcAL1IMhosOU,47
2
+ agentscope_runtime/version.py,sha256=_YVKGzBagBZCp2pKuECYqArJfTFSbGBHotZbFzO0D0E,47
3
3
  agentscope_runtime/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  agentscope_runtime/adapters/agentscope/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- agentscope_runtime/adapters/agentscope/message.py,sha256=_15WqSdWHSt1IwMTm_lwqw5fo151raRt3_32azU2yw0,21957
6
- agentscope_runtime/adapters/agentscope/stream.py,sha256=JWR4sLFx3aT8yYBtXhXXhKbM2f3mnHMcnbCvLMmIVlU,22243
5
+ agentscope_runtime/adapters/agentscope/message.py,sha256=Bhb3V6TOv8s9uAhuZSl7uN728bFvnDzRYqejs0u_bNU,23057
6
+ agentscope_runtime/adapters/agentscope/stream.py,sha256=qYwLT3z82OsMM6vaQt07VVB3nQSxGgGJ178mTmGdgg0,23181
7
7
  agentscope_runtime/adapters/agentscope/long_term_memory/__init__.py,sha256=Hg4ghENb8u49svojY_q89HEjKImvLjKMQwmL8Y3wGgE,135
8
8
  agentscope_runtime/adapters/agentscope/long_term_memory/_long_term_memory_adapter.py,sha256=dwUS6-xvn9g4VlVcHL89gCbHjdw-VWKEBNpVkmzUAgE,7873
9
9
  agentscope_runtime/adapters/agentscope/memory/__init__.py,sha256=zqVxvsJv1t1mjJKdOjtP6dUGNOrc0LLwZx_yZCNq7Xs,137
@@ -11,11 +11,35 @@ agentscope_runtime/adapters/agentscope/memory/_memory_adapter.py,sha256=DDyhzzT2
11
11
  agentscope_runtime/adapters/agentscope/tool/__init__.py,sha256=wrBKu2FidSJuGBuhy2BEG0Xy9J9pZldtHxsKBs3iWQ0,249
12
12
  agentscope_runtime/adapters/agentscope/tool/sandbox_tool.py,sha256=amwtmhtCXDw9TVMUNFiFakNsfj3pp4fllHCBEXzvSEE,2002
13
13
  agentscope_runtime/adapters/agentscope/tool/tool.py,sha256=rgANo-1fByWIlyQk1Bmhscas3QVCVgDuSLMT1XFX76M,7235
14
+ agentscope_runtime/adapters/agno/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ agentscope_runtime/adapters/agno/message.py,sha256=p9PyXgPtGrv9lkoQO8X8RRvoEGYG5d9AbflSZ_t5AYk,870
16
+ agentscope_runtime/adapters/agno/stream.py,sha256=CMNEBtdnsoqG15cJjEnce1wyCCyzApI5TDGgAvledi4,3835
14
17
  agentscope_runtime/adapters/autogen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
18
  agentscope_runtime/adapters/autogen/tool/__init__.py,sha256=FJXusI2gPKYOuAIN_eqMIPUxnJ34_NCPwtScTKosrWM,152
16
19
  agentscope_runtime/adapters/autogen/tool/tool.py,sha256=NFSitBvL5uP3sVwHQfxprbsG6B39SmDVlT2vHTguUII,6587
20
+ agentscope_runtime/adapters/langgraph/__init__.py,sha256=yLNYabjNXn6BgIVdWCP7m3DOqzqOFsVm_Qu1FV5MyeU,309
21
+ agentscope_runtime/adapters/langgraph/message.py,sha256=T2RNsrhCSkyelo4NRZeZf7abK1iK8VvpyEWUunS_XZQ,9267
22
+ agentscope_runtime/adapters/langgraph/stream.py,sha256=MB5NE2bx9hE-TYLwW5jwepZBRAuJ_TLAGYVSejskdo8,7974
17
23
  agentscope_runtime/adapters/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
24
  agentscope_runtime/adapters/text/stream.py,sha256=qtk-WIj8itvOUZO0IHzNPBNWX4V5Dm13nhsNlDyYWKc,682
25
+ agentscope_runtime/cli/__init__.py,sha256=aAc30JEk1UNLLmxcQeTiNMJXbFczjym4Oses4ULIsFI,181
26
+ agentscope_runtime/cli/cli.py,sha256=_STqVMgRSaOa0GhWQDSMYEDY3r3yAHmEXbfk1Zfjb6s,1431
27
+ agentscope_runtime/cli/commands/__init__.py,sha256=MylJNzS3HeGgqekkD0pYg5MALiK_GK7pDArFXZDF9pk,59
28
+ agentscope_runtime/cli/commands/chat.py,sha256=Ttm62VpgSEe_GMLWqfewGfnt33ZZNlZ0nITUn3IBWEE,29776
29
+ agentscope_runtime/cli/commands/deploy.py,sha256=AvcaI50-7NN0tRIlJ-pXWCbNAbYeua88AIvV4aEX2-E,32817
30
+ agentscope_runtime/cli/commands/invoke.py,sha256=4AYswJ7ErPAlX-gWGhFRUBiwOXeuPl0fa_Dha6edqGY,1381
31
+ agentscope_runtime/cli/commands/list_cmd.py,sha256=SZTx58e323u_agtZJJfbzgfD1srk_qW0R-uWKd4Ifiw,2581
32
+ agentscope_runtime/cli/commands/run.py,sha256=L8F8Ph0RFA_QPcF7flrdEWHJK8nYuFoTtUDH4qdg5Xo,5139
33
+ agentscope_runtime/cli/commands/sandbox.py,sha256=2FNbc9AbkvOCO_L2NXUW2cEJleSC363NKL6MPC3PrDY,3374
34
+ agentscope_runtime/cli/commands/status.py,sha256=_O5iT5KD6c0BhSx2XLIu2qJTOpL3VDuyiMTnN0PPeGQ,1479
35
+ agentscope_runtime/cli/commands/stop.py,sha256=hv75KBmVWvEGVBmTdf3_OGXkcvOFeiPw6X3nS8NoGYA,5637
36
+ agentscope_runtime/cli/commands/web.py,sha256=LFmikdKLgRwW-gH2yaSJ8k6egbq8RHdLIHNst6yV9qw,4686
37
+ agentscope_runtime/cli/loaders/__init__.py,sha256=fqNkqPt2nCGL1iW3Ga2tFFlfk_kiLWzxeMQEFIUJjgA,151
38
+ agentscope_runtime/cli/loaders/agent_loader.py,sha256=WS8ruZ6qc2LhDSo0zesqOpuBAmTlu7-SEve3fmDCWtc,9547
39
+ agentscope_runtime/cli/state/__init__.py,sha256=pUlDPdgj8RSyR3qeQVwGRs715Tao9uZKQvfBjW58src,376
40
+ agentscope_runtime/cli/utils/__init__.py,sha256=6kMHsj-qbyLeED4gV_MEk9HvYokgIgiRTNqKJlG6cio,367
41
+ agentscope_runtime/cli/utils/console.py,sha256=q_aecGe0qIHoZYSXCBSwEFubMQ6f3Vpgzn5TkNin5Bk,10593
42
+ agentscope_runtime/cli/utils/validators.py,sha256=x_WtwLzPaLYdW3Ku_mYUmYCgxuLIvAwX5YGy3OKoVXo,3481
19
43
  agentscope_runtime/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
44
  agentscope_runtime/common/collections/__init__.py,sha256=teQPF7huMB2yEX_CAFsmIJhQxH7ldHR7gr11W3jlx4o,582
21
45
  agentscope_runtime/common/collections/base_mapping.py,sha256=IIVNwvaGVAiL6XxV0LvUHx-JmDvUc19iOGyRyAccMaI,361
@@ -24,7 +48,7 @@ agentscope_runtime/common/collections/base_set.py,sha256=RasZxcXDkvdu89KhZc8Z_4T
24
48
  agentscope_runtime/common/collections/in_memory_mapping.py,sha256=7qU-3C-CX5rPuDjWUH9lnH6yvKIwCfnRwMm2vXy1Olo,645
25
49
  agentscope_runtime/common/collections/in_memory_queue.py,sha256=wTbmT77DI0KLYAgFbmcMl7sr5aB6WjyW_USQXqF9gJ0,612
26
50
  agentscope_runtime/common/collections/in_memory_set.py,sha256=7qek5ZB3f_mdNJ4PUPoYv1yujHybdMjgpCYlFMosyMs,602
27
- agentscope_runtime/common/collections/redis_mapping.py,sha256=a608hRTfDWWTFq6nBPBlUNE0mHsjVJSP4yhfX99zA3E,1340
51
+ agentscope_runtime/common/collections/redis_mapping.py,sha256=bi2ku7SO9T6Z9jSUS4IOqJVVFZIG5fVPgmWKYcdi74g,1452
28
52
  agentscope_runtime/common/collections/redis_queue.py,sha256=4MCIDs7SgSfdngTvqxWWv2H-8XTpFQOmXG4-fxN20ew,792
29
53
  agentscope_runtime/common/collections/redis_set.py,sha256=eRCnMXc4hcDF2qyxFiNnrn2o4QjvtgDb6rEcblmV1o8,654
30
54
  agentscope_runtime/common/container_clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -37,42 +61,50 @@ agentscope_runtime/common/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
37
61
  agentscope_runtime/common/utils/lazy_loader.py,sha256=YbhbKNJrm1d3adCZ6gM6ljZE0QCCcpt4yGDCjNWtkJ4,1937
38
62
  agentscope_runtime/engine/__init__.py,sha256=lJV0pGExSfUmyW43MNdTG06jOTNnMrLHSgBS2AhYvyQ,656
39
63
  agentscope_runtime/engine/constant.py,sha256=KOXujjNLky8Jcm8D_gPhQLsQdzPcU4RfrQzAvJUCrpU,128
40
- agentscope_runtime/engine/runner.py,sha256=LssZY01sEaoolqu-l1C7w6EOXY0NbGqGUxO6aaDYFKo,9007
64
+ agentscope_runtime/engine/runner.py,sha256=kf682awGWCKhEXOq9-S4dxKiulsYPmg4UJkiSpuf5Jg,9967
41
65
  agentscope_runtime/engine/app/__init__.py,sha256=8asUQNRTjIEyoWjl955mn3gLkcYna8-CK4A810Eol0Y,87
42
- agentscope_runtime/engine/app/agent_app.py,sha256=7s1qhH3-eWf3ev53_ZPFNVzUpeDLCwGku0B2bp3HQ7Y,10635
66
+ agentscope_runtime/engine/app/agent_app.py,sha256=Gc28kxTFp8dF0PapJbBX4hGethiWO2vIPbS5WL3fjXc,12875
43
67
  agentscope_runtime/engine/app/base_app.py,sha256=ILLp4GUVslRtLxSjCTrpTX6f1E5QhM9oXefxy4sA28I,2290
44
68
  agentscope_runtime/engine/app/celery_mixin.py,sha256=fDPc4loHieUXvgJYRYWAv-3qOSssdbfKH9Fiu-ShrIs,2929
45
- agentscope_runtime/engine/deployers/__init__.py,sha256=_C1RH1pUZ6Jrc5OqnHJAImn79lHzARbzaRTuuqCvI7Y,540
46
- agentscope_runtime/engine/deployers/agentrun_deployer.py,sha256=2FfAAXLFr5pCVpL-EQgiVjOA-n3qKLIwhxnXwf4m29E,101272
47
- agentscope_runtime/engine/deployers/base.py,sha256=hqDaLIzGizTxKq-_-n61lYyL21knZxCTSa90UScpLh4,519
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
71
+ agentscope_runtime/engine/deployers/base.py,sha256=X4Vdu1x_ln0GK3aB_SSMaFoWDRYjh9nQT-mPOxWwkXY,1393
48
72
  agentscope_runtime/engine/deployers/cli_fc_deploy.py,sha256=OZ6vn6t3FEKQJgbxADvPM5S90WP7OJGdBEBc-te_GiE,6063
49
- agentscope_runtime/engine/deployers/kubernetes_deployer.py,sha256=21YoKNGG9M6b7Qo0CZ0YrksiaDCrxJoSpaWth8ma6mo,8984
50
- agentscope_runtime/engine/deployers/local_deployer.py,sha256=FGTkuY-Gd-lu9pbNlHNOmUvZvdS6tZafO-twcut3q54,16316
51
- agentscope_runtime/engine/deployers/modelstudio_deployer.py,sha256=8jEwykxB3hyj2saGdkNO4VdzvnAN0Tgi70Md04MN42o,31383
73
+ agentscope_runtime/engine/deployers/kubernetes_deployer.py,sha256=5sc2cMvB19zERTpphhyDKFohO9-YHtucNeGSlfbUICk,13548
74
+ agentscope_runtime/engine/deployers/local_deployer.py,sha256=mmEk5kSRqQW5Z32Gm3PWNphCu2QXisAoejWmDI5XBVk,22485
75
+ agentscope_runtime/engine/deployers/modelstudio_deployer.py,sha256=Pyb4XubHFUm78hm3NbUBC0FWm91-KWuzI4FlaqSJfiQ,34912
52
76
  agentscope_runtime/engine/deployers/adapter/__init__.py,sha256=11R2POJNbfH5WE3hntYvhUOm_bq-LB-EaUGfbPwCHuQ,66
53
77
  agentscope_runtime/engine/deployers/adapter/protocol_adapter.py,sha256=OpLfBWiFY_xC0uG53UYSeQuUnw7vZzvNnm5w6QFr9_w,737
54
- agentscope_runtime/engine/deployers/adapter/a2a/__init__.py,sha256=3D6TxH-seVfR7_SqYttNSkGkZv3o_TS9R5XqUkVxed4,83
78
+ agentscope_runtime/engine/deployers/adapter/a2a/__init__.py,sha256=KwY0UPs0VAoqjxWOr6NiwVtTfl-Vr5qtUYxeqQ0RdeU,1953
55
79
  agentscope_runtime/engine/deployers/adapter/a2a/a2a_adapter_utils.py,sha256=7nuyfkN7rR8PjpWPKh2acsd9VztbtcZOQdzSp4dWVUY,10956
56
80
  agentscope_runtime/engine/deployers/adapter/a2a/a2a_agent_adapter.py,sha256=h7wwl2CiKcGUxhKkrWN7DpaIpTltoRm-6ETS_fJHmEk,2147
57
- agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py,sha256=5lXFOJCH7gjLThNQBrXU7Q9BuByOURtmYI9LZhc-zNw,2525
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
58
84
  agentscope_runtime/engine/deployers/adapter/responses/__init__.py,sha256=0f1SVBagTz0Kex8kX9_QapqmBPJUHcRejnV4P39PaBc,93
59
85
  agentscope_runtime/engine/deployers/adapter/responses/response_api_adapter_utils.py,sha256=MmvLkHDbb1cQMS2kQKnS3FT_6DUOQRdL2vb_HMA6eFo,98448
60
86
  agentscope_runtime/engine/deployers/adapter/responses/response_api_agent_adapter.py,sha256=B3F1GOvu_HFFdH8gnKJtVlr8u34jjRV3iKMgVz1XHVY,1593
61
87
  agentscope_runtime/engine/deployers/adapter/responses/response_api_protocol_adapter.py,sha256=hm0bSy9QDh8har4KMv8GsSjLsqin-eII75xh8ytiXAE,10345
88
+ agentscope_runtime/engine/deployers/state/__init__.py,sha256=82FD16dRBpbRxgwXgWz48ncwW1IeOl7Ia4N_IVIS0TU,278
89
+ agentscope_runtime/engine/deployers/state/manager.py,sha256=k3XT4Dz-x5luAq6hBAAt7Vx4pPBupCrBGaucVp1gfAU,14101
90
+ agentscope_runtime/engine/deployers/state/schema.py,sha256=pKkVCGdRGLeEP6D-A4ZvkBOEABrgigh-Ogzks9RaHPM,2624
62
91
  agentscope_runtime/engine/deployers/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
92
  agentscope_runtime/engine/deployers/utils/app_runner_utils.py,sha256=v47ztKLiGfc3YabxGU7Ubv6W2TM_Vb-N530sL4nHyu0,754
93
+ agentscope_runtime/engine/deployers/utils/build_cache.py,sha256=VNbUIZQ_-s9HZufnRjnefJimMrHmurndGJ9tXGGlhs0,23894
64
94
  agentscope_runtime/engine/deployers/utils/deployment_modes.py,sha256=vr2UzA1bzAAzxjToj9bVGzRWm47Za6w6cDI0nF1NMD0,448
65
- agentscope_runtime/engine/deployers/utils/detached_app.py,sha256=JYDWCF8Hba2HViMM5gSlHzSDOaUFRLN4BUzbajbB_yw,15964
66
- agentscope_runtime/engine/deployers/utils/package.py,sha256=riyawAUrgyOOKe1nL3lrNUpE7Y0Izc0zifmcF2hlJz8,21200
67
- agentscope_runtime/engine/deployers/utils/wheel_packager.py,sha256=ZNvn2hmNyQGd7IeUyoYPV_TY3tM4Y4mmOY9a8_ahaoo,15400
95
+ agentscope_runtime/engine/deployers/utils/detached_app.py,sha256=-6wTiqMYssKYDGduRMHeehuqvHigz9qoUMj-pereVpU,18707
96
+ 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
99
+ agentscope_runtime/engine/deployers/utils/wheel_packager.py,sha256=GFMvLnLoQhs0joGfDz2x60Dy9WTMbpSNYP7XQgYP__E,14475
68
100
  agentscope_runtime/engine/deployers/utils/docker_image_utils/__init__.py,sha256=DQlspd1dFOTV7GO82Jel5APuUqYkbjmpT72K1vb5SVw,235
69
- agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py,sha256=KCH_AtyaYPCAwnFjjyVlS1GgtOt-V1y0mvDDKLvBZFI,13543
70
- agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py,sha256=4aBdBgkjSKaoAJiiDPYjf2Y6t1ianU5uucFGWbD5Cio,7528
71
- agentscope_runtime/engine/deployers/utils/docker_image_utils/image_factory.py,sha256=OQNMZVMXS-Qv8OkYyr0lmBO5x6wZh2TYiPNFCVoq9RE,12377
101
+ agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py,sha256=5hnjfauzlbQf3j7v8EaPXCn6HsxkTB4NmbkPIBruF3Q,14179
102
+ agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py,sha256=f0uES7mM8n0qAM7-M4z-jFbQkWmHgBPsp9qo4CYgLC0,7946
103
+ agentscope_runtime/engine/deployers/utils/docker_image_utils/image_factory.py,sha256=LUwi3uxgr47C1DqYiWmslm08vD06vRoj3y11TSNUwkQ,13804
72
104
  agentscope_runtime/engine/deployers/utils/service_utils/__init__.py,sha256=qYPjEoNP_eJXPc3j-ClR0GnQKYDa0udJ-ymVGV-IsOs,169
73
- agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py,sha256=otcAs4XpNgs-TNljM35qGbDtZNeqvyIjWAWpsqXw8z8,38556
105
+ agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py,sha256=9e5qlsNbCuvHPrFvNSxL8XUh80p13MBvnrjvk2-J7NU,39030
74
106
  agentscope_runtime/engine/deployers/utils/service_utils/fastapi_templates.py,sha256=xsfoQWKidfT-S9sQWLygcNG_vGsppLQDlwXtBw1nziE,4784
75
- agentscope_runtime/engine/deployers/utils/service_utils/process_manager.py,sha256=QGYDwIqy9BswXFXtmaqm-vZj_SOcpW0Qy_5uas3t0IM,8391
107
+ agentscope_runtime/engine/deployers/utils/service_utils/process_manager.py,sha256=rZIN4RP2cbPeqrHsNm5xll0KPwGL-exj0krO8qGo0sk,13777
76
108
  agentscope_runtime/engine/deployers/utils/templates/app_main.py.j2,sha256=cgaSFV7_SNu6wfI4myTku1tgBcAgykv9a10QMFGAaSI,2175
77
109
  agentscope_runtime/engine/deployers/utils/templates/runner_main.py.j2,sha256=W__KQfZ0qpdQwlkFMpahEVt7HhKnB71dS3R3zNg0hho,2464
78
110
  agentscope_runtime/engine/deployers/utils/templates/standalone_main.py.j2,sha256=AfFDaSjM9t7gMgGvhfcQ2vBPusc29rkDHNaPHnbhKas,5621
@@ -82,6 +114,7 @@ agentscope_runtime/engine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
82
114
  agentscope_runtime/engine/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
115
  agentscope_runtime/engine/schemas/agent_schemas.py,sha256=wNUl5khvOX21PJkpd7g5BRvCMHODSylI5OCE8096g-I,27030
84
116
  agentscope_runtime/engine/schemas/embedding.py,sha256=yn6VaKPXkze0bvJuaLKzWIOus_AuT-8Z_XRABk4NH60,891
117
+ agentscope_runtime/engine/schemas/exception.py,sha256=eVZpZD77Dva5l_UsxRzCsgJ6bUOH1XQChP-iid5m37E,16003
85
118
  agentscope_runtime/engine/schemas/modelstudio_llm.py,sha256=mi_1IWjaPq1W4IaVtVtIy-kwfUSFMfWKM3kaPu2KLC4,9803
86
119
  agentscope_runtime/engine/schemas/oai_llm.py,sha256=U0lG4phFd5WYRoYomoprW87voaBm7Mm-N0uqfm5e-20,16645
87
120
  agentscope_runtime/engine/schemas/realtime.py,sha256=caTRKLfCF9v-tKbdurvqMZ1myM9-ft2UeCNuiUIUmEs,7144
@@ -91,14 +124,14 @@ agentscope_runtime/engine/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
91
124
  agentscope_runtime/engine/services/base.py,sha256=g2hTc3ivj2MPjnsu5_09m6_MZ3KDHBfiYKu4F2pLA1I,2096
92
125
  agentscope_runtime/engine/services/service_factory.py,sha256=LTLU6sxlaRL1GtBmXKvBxRD2E8eh2xla6XLVyFH_CFQ,3580
93
126
  agentscope_runtime/engine/services/agent_state/__init__.py,sha256=zASW6ZxMbaVQ3bz85riQ8HF2svk1b8SUxlrPUVL03ng,571
94
- agentscope_runtime/engine/services/agent_state/redis_state_service.py,sha256=mBB2paGiPyp99srmr4F8nCV1b1n3-Uca8H8OXNTvb98,3368
127
+ agentscope_runtime/engine/services/agent_state/redis_state_service.py,sha256=3NZDLoVK9tKcv40jC1JzD_6d5D52vubvUxOmDgNvnlE,5879
95
128
  agentscope_runtime/engine/services/agent_state/state_service.py,sha256=Z7vaZidnU963ldkqCEPTt5MiE5IJGJq0YnMMn5sehQc,5302
96
- agentscope_runtime/engine/services/agent_state/state_service_factory.py,sha256=8s2nLv7Vg-1-HmgLpFVXz4LRGgCxUghLnG0fOD4AArc,1752
129
+ agentscope_runtime/engine/services/agent_state/state_service_factory.py,sha256=Ze-smpoJXaQxZG4OuzCjQ9fPqfvoMM3xCT7-ZvYmU8I,1589
97
130
  agentscope_runtime/engine/services/memory/__init__.py,sha256=KZTLEqUE8CdD5JcY01ZpHAhS54N9bwYD0wwUIgSD4cA,1094
98
131
  agentscope_runtime/engine/services/memory/mem0_memory_service.py,sha256=jmiaFncOBAlx-plEcnz8ljck1Pwi0_czWBOSM7JIJnA,3694
99
132
  agentscope_runtime/engine/services/memory/memory_service.py,sha256=QNNvG3ccUiWznQfKNTtSbYqqcuoA2IJW_9xmNb1KMQI,8591
100
133
  agentscope_runtime/engine/services/memory/memory_service_factory.py,sha256=XLWriAldbRHHczcdzDK3tKaNfK5KrOYCNUUgeE5spbU,4031
101
- agentscope_runtime/engine/services/memory/redis_memory_service.py,sha256=AdLrvuYH-SsK35XKWJtAXrCPPy5FKeAH7K28XAeiA1U,5709
134
+ agentscope_runtime/engine/services/memory/redis_memory_service.py,sha256=XA2piOaxsw2mnOUDi0n5coC4d1gHUAeIDBfIlkg6x60,10699
102
135
  agentscope_runtime/engine/services/memory/reme_personal_memory_service.py,sha256=6wbCL5IRJG5GPQqFuy4yN-tARDG30CgKtJ--iKiUowQ,3007
103
136
  agentscope_runtime/engine/services/memory/reme_task_memory_service.py,sha256=dLIhWfqKZEeXB1r7f8EKPftL2lk4f60TdlCNdQNolNk,330
104
137
  agentscope_runtime/engine/services/memory/tablestore_memory_service.py,sha256=Pf1nyk5d5X7h8Iuy1e7ROCNlap9cmG--TFm7fZNUZ90,10335
@@ -106,7 +139,7 @@ agentscope_runtime/engine/services/sandbox/__init__.py,sha256=eaneUQzqUfWrfdtc8M
106
139
  agentscope_runtime/engine/services/sandbox/sandbox_service.py,sha256=KwJ0FRKxaiAMHKc1w4O6wmLigI_wBmZcgSyMu3L4X1k,6559
107
140
  agentscope_runtime/engine/services/sandbox/sandbox_service_factory.py,sha256=VMx-TeY4gghYU-CEY38M5Q9NoinfE05IfVq57Cu4X08,1595
108
141
  agentscope_runtime/engine/services/session_history/__init__.py,sha256=iTKbWEulLK9TtyQJHl9euam6xSlbY-8yKo2vgNAJ8Qc,929
109
- agentscope_runtime/engine/services/session_history/redis_session_history_service.py,sha256=rKQEGCWWcIYQ8eixGPf1dv4kMU_Yzp_G7ELuBcdSBJk,5117
142
+ agentscope_runtime/engine/services/session_history/redis_session_history_service.py,sha256=ufTyPydJl9OxMTR7mjsJvbuw-prmaqwuJ6DnxGSm5Eo,10138
110
143
  agentscope_runtime/engine/services/session_history/session_history_service.py,sha256=-UHa_OVC8TYPcZcATXE6-pTI0o5dtPwQoVpVi-OjwNE,8476
111
144
  agentscope_runtime/engine/services/session_history/session_history_service_factory.py,sha256=r8Ro_IdRSzAN6iSHo5MzHSld5UGr-GuHmfIhwQ1iQMM,2307
112
145
  agentscope_runtime/engine/services/session_history/tablestore_session_history_service.py,sha256=4PuUC7j7ZROD_cBTVMpmzgea410bnRy4oLu8H7cA2Xg,10160
@@ -121,12 +154,12 @@ agentscope_runtime/engine/tracing/tracing_metric.py,sha256=X1m6yjLx_hnbmozsCxiW9
121
154
  agentscope_runtime/engine/tracing/tracing_util.py,sha256=tzY-vp4k6BzfjHIIpQLrrgswsxQVMiCVMp6gQXFnzDY,3820
122
155
  agentscope_runtime/engine/tracing/wrapper.py,sha256=mgvkdBrIjOt-q7UMSX77gsO7TVzl2PyDdoFUEv8rr-o,31524
123
156
  agentscope_runtime/sandbox/__init__.py,sha256=Rjueu4FRl0ieis-XwHDbW81kopNVudhNRMIso9gAOSo,869
124
- agentscope_runtime/sandbox/build.py,sha256=RAZkV0rFp24BNmJBZiMYAQ4KafUAELO3V1Ys6Afodwc,8451
157
+ agentscope_runtime/sandbox/build.py,sha256=WS1nTvVmFwt5JIJiYb1qBcnSnTucC6_R4ps0wSivQX0,8509
125
158
  agentscope_runtime/sandbox/constant.py,sha256=NzpxJ1hBDkP9J_c45FsG3iDgBkfEkIlkSKjc4X78tiU,1011
126
159
  agentscope_runtime/sandbox/enums.py,sha256=8aAilIiP9Gw4SsPmhsDvGLo7D2ElZ2n0hRCU1TwmCio,1920
127
160
  agentscope_runtime/sandbox/mcp_server.py,sha256=UT3aRZqyeHqEhhm-wZ0Ilhew3eDMHzz9DCN6Qb-eKFk,6012
128
161
  agentscope_runtime/sandbox/registry.py,sha256=3ukwbTOjSINWH7DIOmG1iPgze5nb-zXl2X8M7_AeBwg,4190
129
- agentscope_runtime/sandbox/utils.py,sha256=ROKwlCwQqfbBDHVgYNHBLQF5aKYeodanQtkipLHY_cE,3076
162
+ agentscope_runtime/sandbox/utils.py,sha256=XH0t0QJMUt5RFACa_7FGo5YIC0Z3tPtdBsOtnCovPJU,3199
130
163
  agentscope_runtime/sandbox/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
164
  agentscope_runtime/sandbox/box/sandbox.py,sha256=-BWme4Zxx9xWssRXf6KzH3RVueR9MuzcOcN8Gdu7mTg,5309
132
165
  agentscope_runtime/sandbox/box/agentbay/__init__.py,sha256=R-KRTawGZwblLBh0ZrXz2ESaV8biE3pLqVXUcLUI1-g,101
@@ -148,7 +181,7 @@ agentscope_runtime/sandbox/box/gui/__init__.py,sha256=-tzNU2yYdKjXD83PlNaMtsu5nq
148
181
  agentscope_runtime/sandbox/box/gui/gui_sandbox.py,sha256=UkVGcOX0naQZmxf2T6ltPIQ_FBL2YRZKfX5Iks6HoXY,5204
149
182
  agentscope_runtime/sandbox/box/gui/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
150
183
  agentscope_runtime/sandbox/box/mobile/__init__.py,sha256=x9eL7XEw9oAZIzKr-_6UFbtkfTvfmXJ57Lmc4rXMyv0,95
151
- agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py,sha256=rGYut8X5AOUrxmQcHtv0xRBgvMGAFUPtniGkneqCovQ,7892
184
+ agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py,sha256=a-uynxbBPEXZ_nVNaocYtAzwiJRPwXxCeUVOAGYpQsE,10985
152
185
  agentscope_runtime/sandbox/box/mobile/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
186
  agentscope_runtime/sandbox/box/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
154
187
  agentscope_runtime/sandbox/box/shared/app.py,sha256=bw6l0XPVF86yuh0jO_Sx9S-B-luFE3U3lIb6Qjc3dGU,1107
@@ -157,7 +190,7 @@ agentscope_runtime/sandbox/box/shared/dependencies/deps.py,sha256=pavJWhin5Dbc1f
157
190
  agentscope_runtime/sandbox/box/shared/routers/__init__.py,sha256=QokVfRhfBftiXktqpn3iqdKcSz7TcSn-4Kbf4QhOUXs,273
158
191
  agentscope_runtime/sandbox/box/shared/routers/generic.py,sha256=5hIwNPpC2Pu4uTqKWGcymBKXdKqbYEsyOYD4Vv7XR44,5164
159
192
  agentscope_runtime/sandbox/box/shared/routers/mcp.py,sha256=_2492A88qba3hUPV67oexfWm-mHEFcr9ygzW-Qqhyi0,6046
160
- agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py,sha256=aQEUimxeeve-A-VKx99YeMR4nw7KRpGqzIpMiyNU9dQ,5865
193
+ agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py,sha256=K3t4fg6latjD2bdYpRVB4SdAcN2AjIXOhhh2lnx4YOM,6449
161
194
  agentscope_runtime/sandbox/box/shared/routers/runtime_watcher.py,sha256=v4jAGYtJaYsRJaSTv7e7hmDLHWVAtJqnSnpPq-kFcmU,5344
162
195
  agentscope_runtime/sandbox/box/shared/routers/workspace.py,sha256=cQMbWNQG7ojHZfWN0xFqEivhlpQO4qEDo3amkhVHUBg,9748
163
196
  agentscope_runtime/sandbox/box/training_box/__init__.py,sha256=vG2MQviqdmIUSjHmHiC5N_kiHinMnvOdjwW0AUdfZ3Y,125
@@ -237,9 +270,9 @@ agentscope_runtime/tools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
237
270
  agentscope_runtime/tools/utils/api_key_util.py,sha256=xIIUsvWgSt4etgYP7lS0WnqVIhZ-REzrBLwzAT-TrVI,1210
238
271
  agentscope_runtime/tools/utils/crypto_utils.py,sha256=Wqq4cn3FHQge-2Q1zGSMUyKh4V4A2baiZm8ZNhMqhPo,3382
239
272
  agentscope_runtime/tools/utils/mcp_util.py,sha256=n3GGKBEQPJ-fiNXdYnBx_90GVKWvm9eaNbR2G0q2lOw,905
240
- agentscope_runtime-1.0.1.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
241
- agentscope_runtime-1.0.1.dist-info/METADATA,sha256=XBiVl_6E3fB_BQDp-sOYHd4c4QeehOjQ7jc5D_ueyDc,38416
242
- agentscope_runtime-1.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
243
- agentscope_runtime-1.0.1.dist-info/entry_points.txt,sha256=iYzbpqpPc42a0HzEZ9JR96jlPOXND7Wg2XFJheRg2oo,380
244
- agentscope_runtime-1.0.1.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
245
- agentscope_runtime-1.0.1.dist-info/RECORD,,
273
+ agentscope_runtime-1.0.3.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
274
+ agentscope_runtime-1.0.3.dist-info/METADATA,sha256=KoJsVx5T_5LBQwqALpH3i9syI4PqC1MrBfk533Sq3zQ,41660
275
+ agentscope_runtime-1.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
276
+ agentscope_runtime-1.0.3.dist-info/entry_points.txt,sha256=Mpjpwe0A9lYNsFtWe_VeoGhtDVsKLIi6w9ZKzyhc17M,425
277
+ agentscope_runtime-1.0.3.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
278
+ agentscope_runtime-1.0.3.dist-info/RECORD,,
@@ -1,4 +1,5 @@
1
1
  [console_scripts]
2
+ agentscope = agentscope_runtime.cli.cli:main
2
3
  modelstudio-mcp-server = agentscope_runtime.tools.cli.modelstudio_mcp_server:main
3
4
  runtime-fc-deploy = agentscope_runtime.engine.deployers.cli_fc_deploy:main
4
5
  runtime-sandbox-builder = agentscope_runtime.sandbox.build:main