agentscope-runtime 1.0.0b2__py3-none-any.whl → 1.0.2__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 (71) hide show
  1. agentscope_runtime/adapters/agentscope/message.py +78 -10
  2. agentscope_runtime/adapters/agentscope/stream.py +155 -101
  3. agentscope_runtime/adapters/agentscope/tool/tool.py +1 -3
  4. agentscope_runtime/adapters/agno/__init__.py +0 -0
  5. agentscope_runtime/adapters/agno/message.py +30 -0
  6. agentscope_runtime/adapters/agno/stream.py +122 -0
  7. agentscope_runtime/adapters/langgraph/__init__.py +12 -0
  8. agentscope_runtime/adapters/langgraph/message.py +257 -0
  9. agentscope_runtime/adapters/langgraph/stream.py +205 -0
  10. agentscope_runtime/cli/__init__.py +7 -0
  11. agentscope_runtime/cli/cli.py +63 -0
  12. agentscope_runtime/cli/commands/__init__.py +2 -0
  13. agentscope_runtime/cli/commands/chat.py +815 -0
  14. agentscope_runtime/cli/commands/deploy.py +1062 -0
  15. agentscope_runtime/cli/commands/invoke.py +58 -0
  16. agentscope_runtime/cli/commands/list_cmd.py +103 -0
  17. agentscope_runtime/cli/commands/run.py +176 -0
  18. agentscope_runtime/cli/commands/sandbox.py +128 -0
  19. agentscope_runtime/cli/commands/status.py +60 -0
  20. agentscope_runtime/cli/commands/stop.py +185 -0
  21. agentscope_runtime/cli/commands/web.py +166 -0
  22. agentscope_runtime/cli/loaders/__init__.py +6 -0
  23. agentscope_runtime/cli/loaders/agent_loader.py +295 -0
  24. agentscope_runtime/cli/state/__init__.py +10 -0
  25. agentscope_runtime/cli/utils/__init__.py +18 -0
  26. agentscope_runtime/cli/utils/console.py +378 -0
  27. agentscope_runtime/cli/utils/validators.py +118 -0
  28. agentscope_runtime/engine/app/agent_app.py +15 -5
  29. agentscope_runtime/engine/deployers/__init__.py +1 -0
  30. agentscope_runtime/engine/deployers/agentrun_deployer.py +154 -24
  31. agentscope_runtime/engine/deployers/base.py +27 -2
  32. agentscope_runtime/engine/deployers/kubernetes_deployer.py +158 -31
  33. agentscope_runtime/engine/deployers/local_deployer.py +188 -25
  34. agentscope_runtime/engine/deployers/modelstudio_deployer.py +109 -18
  35. agentscope_runtime/engine/deployers/state/__init__.py +9 -0
  36. agentscope_runtime/engine/deployers/state/manager.py +388 -0
  37. agentscope_runtime/engine/deployers/state/schema.py +96 -0
  38. agentscope_runtime/engine/deployers/utils/build_cache.py +736 -0
  39. agentscope_runtime/engine/deployers/utils/detached_app.py +105 -30
  40. agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py +31 -10
  41. agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py +15 -8
  42. agentscope_runtime/engine/deployers/utils/docker_image_utils/image_factory.py +30 -2
  43. agentscope_runtime/engine/deployers/utils/k8s_utils.py +241 -0
  44. agentscope_runtime/engine/deployers/utils/package.py +56 -6
  45. agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py +68 -9
  46. agentscope_runtime/engine/deployers/utils/service_utils/process_manager.py +155 -5
  47. agentscope_runtime/engine/deployers/utils/wheel_packager.py +107 -123
  48. agentscope_runtime/engine/runner.py +32 -12
  49. agentscope_runtime/engine/schemas/agent_schemas.py +21 -7
  50. agentscope_runtime/engine/schemas/exception.py +580 -0
  51. agentscope_runtime/engine/services/agent_state/__init__.py +2 -0
  52. agentscope_runtime/engine/services/agent_state/state_service_factory.py +55 -0
  53. agentscope_runtime/engine/services/memory/__init__.py +2 -0
  54. agentscope_runtime/engine/services/memory/memory_service_factory.py +126 -0
  55. agentscope_runtime/engine/services/sandbox/__init__.py +2 -0
  56. agentscope_runtime/engine/services/sandbox/sandbox_service_factory.py +49 -0
  57. agentscope_runtime/engine/services/service_factory.py +119 -0
  58. agentscope_runtime/engine/services/session_history/__init__.py +2 -0
  59. agentscope_runtime/engine/services/session_history/session_history_service_factory.py +73 -0
  60. agentscope_runtime/engine/services/utils/tablestore_service_utils.py +35 -10
  61. agentscope_runtime/engine/tracing/wrapper.py +49 -31
  62. agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py +113 -39
  63. agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py +20 -4
  64. agentscope_runtime/sandbox/utils.py +2 -0
  65. agentscope_runtime/version.py +1 -1
  66. {agentscope_runtime-1.0.0b2.dist-info → agentscope_runtime-1.0.2.dist-info}/METADATA +82 -11
  67. {agentscope_runtime-1.0.0b2.dist-info → agentscope_runtime-1.0.2.dist-info}/RECORD +71 -36
  68. {agentscope_runtime-1.0.0b2.dist-info → agentscope_runtime-1.0.2.dist-info}/entry_points.txt +1 -0
  69. {agentscope_runtime-1.0.0b2.dist-info → agentscope_runtime-1.0.2.dist-info}/WHEEL +0 -0
  70. {agentscope_runtime-1.0.0b2.dist-info → agentscope_runtime-1.0.2.dist-info}/licenses/LICENSE +0 -0
  71. {agentscope_runtime-1.0.0b2.dist-info → agentscope_runtime-1.0.2.dist-info}/top_level.txt +0 -0
@@ -1,21 +1,45 @@
1
1
  agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
2
- agentscope_runtime/version.py,sha256=hgie0jkmrUKvruOn51H4rrCOC1w8NeJLz9hMspmajRE,49
2
+ agentscope_runtime/version.py,sha256=1WRwjmkMrY3KYF9w0Q4ng-38_Fa1JzKPFaY6gFkzDgY,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=cq7O8A0wkAaibfWk8ULCywnPnUKATPfkb719I1DYZKs,20330
6
- agentscope_runtime/adapters/agentscope/stream.py,sha256=pghgNYzTmndb5G9XjU3bCa_QZ7L_KD0UGBVmNoTikH0,21258
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
10
10
  agentscope_runtime/adapters/agentscope/memory/_memory_adapter.py,sha256=DDyhzzT2Y-3q4L0AkS8am1y5jsylxZpgJXWxB2abefQ,4535
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
- agentscope_runtime/adapters/agentscope/tool/tool.py,sha256=1ytZmXQ0u3Y-rGni_F2YFuNxMaeuZVwm0DE443jtYuM,7263
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=AIN7c1XKMiKRX4DR02W6kZcf1M4ccNMrYzfTzs-zvxs,32408
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
@@ -37,18 +61,18 @@ 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=EeHAbFBzGjk_XEO9w53yib0rRihFZWnQKYjL3Yqr8YU,8961
64
+ agentscope_runtime/engine/runner.py,sha256=94fNmQGl7m0s-Glc5iz9FA2gmUQCMoalOZB2SPeeDA4,9929
41
65
  agentscope_runtime/engine/app/__init__.py,sha256=8asUQNRTjIEyoWjl955mn3gLkcYna8-CK4A810Eol0Y,87
42
- agentscope_runtime/engine/app/agent_app.py,sha256=E874OipHIAKN_nRDm-RF-bz0xsys-SQhtz4Zs1cnjyc,10417
66
+ agentscope_runtime/engine/app/agent_app.py,sha256=gsVx5TzbgWV8M97HvgfOHN_S8Q-bT6f0ggYqQNVztMU,10715
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=yo6qY4V6JYqvzxgZjVy97RR9xeNF2sZxkDILN5YSmCM,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=dKAx5HuImlbI-0t7SJwOsQxcAnE3UelUOJQ1nEmRL78,13390
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
78
  agentscope_runtime/engine/deployers/adapter/a2a/__init__.py,sha256=3D6TxH-seVfR7_SqYttNSkGkZv3o_TS9R5XqUkVxed4,83
@@ -59,20 +83,25 @@ agentscope_runtime/engine/deployers/adapter/responses/__init__.py,sha256=0f1SVBa
59
83
  agentscope_runtime/engine/deployers/adapter/responses/response_api_adapter_utils.py,sha256=MmvLkHDbb1cQMS2kQKnS3FT_6DUOQRdL2vb_HMA6eFo,98448
60
84
  agentscope_runtime/engine/deployers/adapter/responses/response_api_agent_adapter.py,sha256=B3F1GOvu_HFFdH8gnKJtVlr8u34jjRV3iKMgVz1XHVY,1593
61
85
  agentscope_runtime/engine/deployers/adapter/responses/response_api_protocol_adapter.py,sha256=hm0bSy9QDh8har4KMv8GsSjLsqin-eII75xh8ytiXAE,10345
86
+ agentscope_runtime/engine/deployers/state/__init__.py,sha256=82FD16dRBpbRxgwXgWz48ncwW1IeOl7Ia4N_IVIS0TU,278
87
+ agentscope_runtime/engine/deployers/state/manager.py,sha256=k3XT4Dz-x5luAq6hBAAt7Vx4pPBupCrBGaucVp1gfAU,14101
88
+ agentscope_runtime/engine/deployers/state/schema.py,sha256=pKkVCGdRGLeEP6D-A4ZvkBOEABrgigh-Ogzks9RaHPM,2624
62
89
  agentscope_runtime/engine/deployers/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
90
  agentscope_runtime/engine/deployers/utils/app_runner_utils.py,sha256=v47ztKLiGfc3YabxGU7Ubv6W2TM_Vb-N530sL4nHyu0,754
91
+ agentscope_runtime/engine/deployers/utils/build_cache.py,sha256=VNbUIZQ_-s9HZufnRjnefJimMrHmurndGJ9tXGGlhs0,23894
64
92
  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
93
+ agentscope_runtime/engine/deployers/utils/detached_app.py,sha256=-6wTiqMYssKYDGduRMHeehuqvHigz9qoUMj-pereVpU,18707
94
+ agentscope_runtime/engine/deployers/utils/k8s_utils.py,sha256=lgVYTewDBhtSwigEJ3Fok39wwrXPTuPmonyaB6mmaOo,7381
95
+ agentscope_runtime/engine/deployers/utils/package.py,sha256=L7W5j6iAyVFYLOsotCbagnA_otfktQ6Y9DF_xG7fwc4,22970
96
+ agentscope_runtime/engine/deployers/utils/wheel_packager.py,sha256=GFMvLnLoQhs0joGfDz2x60Dy9WTMbpSNYP7XQgYP__E,14475
68
97
  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
98
+ agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py,sha256=5hnjfauzlbQf3j7v8EaPXCn6HsxkTB4NmbkPIBruF3Q,14179
99
+ agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py,sha256=at2kQDdZBqzChGnFLEHpyqyba3LxPQlz5A1Rd4Fu9pM,7742
100
+ agentscope_runtime/engine/deployers/utils/docker_image_utils/image_factory.py,sha256=Ij-QZA6dIoHEgfsZU2x2Y6rVxXj6yYYjTIGnaQmpWD4,13568
72
101
  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=SJHfkBggTC_fW_K2jsEzyxTHR6QMctX85xCgdSs2EnE,36615
102
+ agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py,sha256=9e5qlsNbCuvHPrFvNSxL8XUh80p13MBvnrjvk2-J7NU,39030
74
103
  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
104
+ agentscope_runtime/engine/deployers/utils/service_utils/process_manager.py,sha256=rZIN4RP2cbPeqrHsNm5xll0KPwGL-exj0krO8qGo0sk,13777
76
105
  agentscope_runtime/engine/deployers/utils/templates/app_main.py.j2,sha256=cgaSFV7_SNu6wfI4myTku1tgBcAgykv9a10QMFGAaSI,2175
77
106
  agentscope_runtime/engine/deployers/utils/templates/runner_main.py.j2,sha256=W__KQfZ0qpdQwlkFMpahEVt7HhKnB71dS3R3zNg0hho,2464
78
107
  agentscope_runtime/engine/deployers/utils/templates/standalone_main.py.j2,sha256=AfFDaSjM9t7gMgGvhfcQ2vBPusc29rkDHNaPHnbhKas,5621
@@ -80,8 +109,9 @@ agentscope_runtime/engine/helpers/agent_api_builder.py,sha256=mSixBHF9QDro8UNqij
80
109
  agentscope_runtime/engine/helpers/runner.py,sha256=xB9F95nkAxM7J8ZCwPhZSidvD9y4DN_bw3CQOICGZEY,855
81
110
  agentscope_runtime/engine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
111
  agentscope_runtime/engine/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
- agentscope_runtime/engine/schemas/agent_schemas.py,sha256=d5wr0814Wcp4oCX46y2f07Vh0z3-_W11zbyorTsa018,26745
112
+ agentscope_runtime/engine/schemas/agent_schemas.py,sha256=wNUl5khvOX21PJkpd7g5BRvCMHODSylI5OCE8096g-I,27030
84
113
  agentscope_runtime/engine/schemas/embedding.py,sha256=yn6VaKPXkze0bvJuaLKzWIOus_AuT-8Z_XRABk4NH60,891
114
+ agentscope_runtime/engine/schemas/exception.py,sha256=hozLtfAHo384Gx2-42Nwmh-wF9frCsHfPUYUiF5Idd8,15300
85
115
  agentscope_runtime/engine/schemas/modelstudio_llm.py,sha256=mi_1IWjaPq1W4IaVtVtIy-kwfUSFMfWKM3kaPu2KLC4,9803
86
116
  agentscope_runtime/engine/schemas/oai_llm.py,sha256=U0lG4phFd5WYRoYomoprW87voaBm7Mm-N0uqfm5e-20,16645
87
117
  agentscope_runtime/engine/schemas/realtime.py,sha256=caTRKLfCF9v-tKbdurvqMZ1myM9-ft2UeCNuiUIUmEs,7144
@@ -89,24 +119,29 @@ agentscope_runtime/engine/schemas/response_api.py,sha256=YWR1ZFrVbepdO9ZyLCe09si
89
119
  agentscope_runtime/engine/schemas/session.py,sha256=ctSMlTJHdd2HaJ_6tEOxNDZbLcexxSSiB8YI_vmBviw,627
90
120
  agentscope_runtime/engine/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
121
  agentscope_runtime/engine/services/base.py,sha256=g2hTc3ivj2MPjnsu5_09m6_MZ3KDHBfiYKu4F2pLA1I,2096
92
- agentscope_runtime/engine/services/agent_state/__init__.py,sha256=oUtrN53dhf7Hg2hNKxoCBqZOyQ_ltCZH9XdL8QA8i6I,455
122
+ agentscope_runtime/engine/services/service_factory.py,sha256=LTLU6sxlaRL1GtBmXKvBxRD2E8eh2xla6XLVyFH_CFQ,3580
123
+ agentscope_runtime/engine/services/agent_state/__init__.py,sha256=zASW6ZxMbaVQ3bz85riQ8HF2svk1b8SUxlrPUVL03ng,571
93
124
  agentscope_runtime/engine/services/agent_state/redis_state_service.py,sha256=mBB2paGiPyp99srmr4F8nCV1b1n3-Uca8H8OXNTvb98,3368
94
125
  agentscope_runtime/engine/services/agent_state/state_service.py,sha256=Z7vaZidnU963ldkqCEPTt5MiE5IJGJq0YnMMn5sehQc,5302
95
- agentscope_runtime/engine/services/memory/__init__.py,sha256=rpuJIxWu6j4IQg1mzLpYLTW__9g40SoyZ3WMXtZXqaE,974
126
+ agentscope_runtime/engine/services/agent_state/state_service_factory.py,sha256=8s2nLv7Vg-1-HmgLpFVXz4LRGgCxUghLnG0fOD4AArc,1752
127
+ agentscope_runtime/engine/services/memory/__init__.py,sha256=KZTLEqUE8CdD5JcY01ZpHAhS54N9bwYD0wwUIgSD4cA,1094
96
128
  agentscope_runtime/engine/services/memory/mem0_memory_service.py,sha256=jmiaFncOBAlx-plEcnz8ljck1Pwi0_czWBOSM7JIJnA,3694
97
129
  agentscope_runtime/engine/services/memory/memory_service.py,sha256=QNNvG3ccUiWznQfKNTtSbYqqcuoA2IJW_9xmNb1KMQI,8591
130
+ agentscope_runtime/engine/services/memory/memory_service_factory.py,sha256=XLWriAldbRHHczcdzDK3tKaNfK5KrOYCNUUgeE5spbU,4031
98
131
  agentscope_runtime/engine/services/memory/redis_memory_service.py,sha256=AdLrvuYH-SsK35XKWJtAXrCPPy5FKeAH7K28XAeiA1U,5709
99
132
  agentscope_runtime/engine/services/memory/reme_personal_memory_service.py,sha256=6wbCL5IRJG5GPQqFuy4yN-tARDG30CgKtJ--iKiUowQ,3007
100
133
  agentscope_runtime/engine/services/memory/reme_task_memory_service.py,sha256=dLIhWfqKZEeXB1r7f8EKPftL2lk4f60TdlCNdQNolNk,330
101
134
  agentscope_runtime/engine/services/memory/tablestore_memory_service.py,sha256=Pf1nyk5d5X7h8Iuy1e7ROCNlap9cmG--TFm7fZNUZ90,10335
102
- agentscope_runtime/engine/services/sandbox/__init__.py,sha256=ZvkP1GHhWN_ZRJVqTpG50bBFf6l9YgSgj-tja_Zli6w,283
135
+ agentscope_runtime/engine/services/sandbox/__init__.py,sha256=eaneUQzqUfWrfdtc8MdzpGmrQDO_MSzGje1nZJ6Aay4,407
103
136
  agentscope_runtime/engine/services/sandbox/sandbox_service.py,sha256=KwJ0FRKxaiAMHKc1w4O6wmLigI_wBmZcgSyMu3L4X1k,6559
104
- agentscope_runtime/engine/services/session_history/__init__.py,sha256=zCxMwFH7wzEAl3P_XIBtUM1D3qNjlGH04s7OMB2_QY8,775
137
+ agentscope_runtime/engine/services/sandbox/sandbox_service_factory.py,sha256=VMx-TeY4gghYU-CEY38M5Q9NoinfE05IfVq57Cu4X08,1595
138
+ agentscope_runtime/engine/services/session_history/__init__.py,sha256=iTKbWEulLK9TtyQJHl9euam6xSlbY-8yKo2vgNAJ8Qc,929
105
139
  agentscope_runtime/engine/services/session_history/redis_session_history_service.py,sha256=rKQEGCWWcIYQ8eixGPf1dv4kMU_Yzp_G7ELuBcdSBJk,5117
106
140
  agentscope_runtime/engine/services/session_history/session_history_service.py,sha256=-UHa_OVC8TYPcZcATXE6-pTI0o5dtPwQoVpVi-OjwNE,8476
141
+ agentscope_runtime/engine/services/session_history/session_history_service_factory.py,sha256=r8Ro_IdRSzAN6iSHo5MzHSld5UGr-GuHmfIhwQ1iQMM,2307
107
142
  agentscope_runtime/engine/services/session_history/tablestore_session_history_service.py,sha256=4PuUC7j7ZROD_cBTVMpmzgea410bnRy4oLu8H7cA2Xg,10160
108
143
  agentscope_runtime/engine/services/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
- agentscope_runtime/engine/services/utils/tablestore_service_utils.py,sha256=lGxGmxU6Q4fajnVlrIILozYD3QNhVgIJucdc0PDPs8A,10998
144
+ agentscope_runtime/engine/services/utils/tablestore_service_utils.py,sha256=YA4gojQy9c0SdXD6XJwTrBWVEPRjJmnzTYRDExPYuHg,11599
110
145
  agentscope_runtime/engine/tracing/__init__.py,sha256=yUmXYDqApqGOlZJqJ_jb8TvSYUAUk4VInmNSSiICGoI,1237
111
146
  agentscope_runtime/engine/tracing/asyncio_util.py,sha256=aPaOPiLq3YVm6XS_wn8zWK2pK3aHwV0bRwD62pAJ9xQ,685
112
147
  agentscope_runtime/engine/tracing/base.py,sha256=Y9rU289wC72Fjax4FeHZP0AzxVwQvFCV6UUogqRRl54,10635
@@ -114,14 +149,14 @@ agentscope_runtime/engine/tracing/local_logging_handler.py,sha256=scx_eJeZHonLYk
114
149
  agentscope_runtime/engine/tracing/message_util.py,sha256=9ldwWNcm6VqAZ04orHOf8namw0I0CEiU5v89fyKEO_c,18551
115
150
  agentscope_runtime/engine/tracing/tracing_metric.py,sha256=X1m6yjLx_hnbmozsCxiW9X3t1gWgrKlbsYEfCMqNSx0,2375
116
151
  agentscope_runtime/engine/tracing/tracing_util.py,sha256=tzY-vp4k6BzfjHIIpQLrrgswsxQVMiCVMp6gQXFnzDY,3820
117
- agentscope_runtime/engine/tracing/wrapper.py,sha256=n6x2tDOBmWxO7oobQnjTbi1LBj8joneJgpgelok3oRU,30892
152
+ agentscope_runtime/engine/tracing/wrapper.py,sha256=mgvkdBrIjOt-q7UMSX77gsO7TVzl2PyDdoFUEv8rr-o,31524
118
153
  agentscope_runtime/sandbox/__init__.py,sha256=Rjueu4FRl0ieis-XwHDbW81kopNVudhNRMIso9gAOSo,869
119
154
  agentscope_runtime/sandbox/build.py,sha256=RAZkV0rFp24BNmJBZiMYAQ4KafUAELO3V1Ys6Afodwc,8451
120
155
  agentscope_runtime/sandbox/constant.py,sha256=NzpxJ1hBDkP9J_c45FsG3iDgBkfEkIlkSKjc4X78tiU,1011
121
156
  agentscope_runtime/sandbox/enums.py,sha256=8aAilIiP9Gw4SsPmhsDvGLo7D2ElZ2n0hRCU1TwmCio,1920
122
157
  agentscope_runtime/sandbox/mcp_server.py,sha256=UT3aRZqyeHqEhhm-wZ0Ilhew3eDMHzz9DCN6Qb-eKFk,6012
123
158
  agentscope_runtime/sandbox/registry.py,sha256=3ukwbTOjSINWH7DIOmG1iPgze5nb-zXl2X8M7_AeBwg,4190
124
- agentscope_runtime/sandbox/utils.py,sha256=ROKwlCwQqfbBDHVgYNHBLQF5aKYeodanQtkipLHY_cE,3076
159
+ agentscope_runtime/sandbox/utils.py,sha256=XH0t0QJMUt5RFACa_7FGo5YIC0Z3tPtdBsOtnCovPJU,3199
125
160
  agentscope_runtime/sandbox/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
161
  agentscope_runtime/sandbox/box/sandbox.py,sha256=-BWme4Zxx9xWssRXf6KzH3RVueR9MuzcOcN8Gdu7mTg,5309
127
162
  agentscope_runtime/sandbox/box/agentbay/__init__.py,sha256=R-KRTawGZwblLBh0ZrXz2ESaV8biE3pLqVXUcLUI1-g,101
@@ -143,7 +178,7 @@ agentscope_runtime/sandbox/box/gui/__init__.py,sha256=-tzNU2yYdKjXD83PlNaMtsu5nq
143
178
  agentscope_runtime/sandbox/box/gui/gui_sandbox.py,sha256=UkVGcOX0naQZmxf2T6ltPIQ_FBL2YRZKfX5Iks6HoXY,5204
144
179
  agentscope_runtime/sandbox/box/gui/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
180
  agentscope_runtime/sandbox/box/mobile/__init__.py,sha256=x9eL7XEw9oAZIzKr-_6UFbtkfTvfmXJ57Lmc4rXMyv0,95
146
- agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py,sha256=rGYut8X5AOUrxmQcHtv0xRBgvMGAFUPtniGkneqCovQ,7892
181
+ agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py,sha256=a-uynxbBPEXZ_nVNaocYtAzwiJRPwXxCeUVOAGYpQsE,10985
147
182
  agentscope_runtime/sandbox/box/mobile/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
183
  agentscope_runtime/sandbox/box/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
184
  agentscope_runtime/sandbox/box/shared/app.py,sha256=bw6l0XPVF86yuh0jO_Sx9S-B-luFE3U3lIb6Qjc3dGU,1107
@@ -152,7 +187,7 @@ agentscope_runtime/sandbox/box/shared/dependencies/deps.py,sha256=pavJWhin5Dbc1f
152
187
  agentscope_runtime/sandbox/box/shared/routers/__init__.py,sha256=QokVfRhfBftiXktqpn3iqdKcSz7TcSn-4Kbf4QhOUXs,273
153
188
  agentscope_runtime/sandbox/box/shared/routers/generic.py,sha256=5hIwNPpC2Pu4uTqKWGcymBKXdKqbYEsyOYD4Vv7XR44,5164
154
189
  agentscope_runtime/sandbox/box/shared/routers/mcp.py,sha256=_2492A88qba3hUPV67oexfWm-mHEFcr9ygzW-Qqhyi0,6046
155
- agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py,sha256=aQEUimxeeve-A-VKx99YeMR4nw7KRpGqzIpMiyNU9dQ,5865
190
+ agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py,sha256=K3t4fg6latjD2bdYpRVB4SdAcN2AjIXOhhh2lnx4YOM,6449
156
191
  agentscope_runtime/sandbox/box/shared/routers/runtime_watcher.py,sha256=v4jAGYtJaYsRJaSTv7e7hmDLHWVAtJqnSnpPq-kFcmU,5344
157
192
  agentscope_runtime/sandbox/box/shared/routers/workspace.py,sha256=cQMbWNQG7ojHZfWN0xFqEivhlpQO4qEDo3amkhVHUBg,9748
158
193
  agentscope_runtime/sandbox/box/training_box/__init__.py,sha256=vG2MQviqdmIUSjHmHiC5N_kiHinMnvOdjwW0AUdfZ3Y,125
@@ -232,9 +267,9 @@ agentscope_runtime/tools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
232
267
  agentscope_runtime/tools/utils/api_key_util.py,sha256=xIIUsvWgSt4etgYP7lS0WnqVIhZ-REzrBLwzAT-TrVI,1210
233
268
  agentscope_runtime/tools/utils/crypto_utils.py,sha256=Wqq4cn3FHQge-2Q1zGSMUyKh4V4A2baiZm8ZNhMqhPo,3382
234
269
  agentscope_runtime/tools/utils/mcp_util.py,sha256=n3GGKBEQPJ-fiNXdYnBx_90GVKWvm9eaNbR2G0q2lOw,905
235
- agentscope_runtime-1.0.0b2.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
236
- agentscope_runtime-1.0.0b2.dist-info/METADATA,sha256=8T1b3SjBKTDC5gvP54eMh7T4gf_fpYqP8hDXDNG95S4,35222
237
- agentscope_runtime-1.0.0b2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
238
- agentscope_runtime-1.0.0b2.dist-info/entry_points.txt,sha256=iYzbpqpPc42a0HzEZ9JR96jlPOXND7Wg2XFJheRg2oo,380
239
- agentscope_runtime-1.0.0b2.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
240
- agentscope_runtime-1.0.0b2.dist-info/RECORD,,
270
+ agentscope_runtime-1.0.2.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
271
+ agentscope_runtime-1.0.2.dist-info/METADATA,sha256=QqGmESmRD5aSZu3bKhHFBIH0iHQFGRtOQw0MVRDjzY0,40260
272
+ agentscope_runtime-1.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
273
+ agentscope_runtime-1.0.2.dist-info/entry_points.txt,sha256=Mpjpwe0A9lYNsFtWe_VeoGhtDVsKLIi6w9ZKzyhc17M,425
274
+ agentscope_runtime-1.0.2.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
275
+ agentscope_runtime-1.0.2.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