agentscope-runtime 0.2.0b2__py3-none-any.whl → 1.0.0__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 (184) hide show
  1. agentscope_runtime/adapters/__init__.py +0 -0
  2. agentscope_runtime/adapters/agentscope/__init__.py +0 -0
  3. agentscope_runtime/adapters/agentscope/long_term_memory/__init__.py +6 -0
  4. agentscope_runtime/adapters/agentscope/long_term_memory/_long_term_memory_adapter.py +258 -0
  5. agentscope_runtime/adapters/agentscope/memory/__init__.py +6 -0
  6. agentscope_runtime/adapters/agentscope/memory/_memory_adapter.py +152 -0
  7. agentscope_runtime/adapters/agentscope/message.py +535 -0
  8. agentscope_runtime/adapters/agentscope/stream.py +506 -0
  9. agentscope_runtime/adapters/agentscope/tool/__init__.py +9 -0
  10. agentscope_runtime/adapters/agentscope/tool/sandbox_tool.py +69 -0
  11. agentscope_runtime/adapters/agentscope/tool/tool.py +233 -0
  12. agentscope_runtime/adapters/autogen/__init__.py +0 -0
  13. agentscope_runtime/adapters/autogen/tool/__init__.py +7 -0
  14. agentscope_runtime/adapters/autogen/tool/tool.py +211 -0
  15. agentscope_runtime/adapters/text/__init__.py +0 -0
  16. agentscope_runtime/adapters/text/stream.py +29 -0
  17. agentscope_runtime/common/collections/redis_mapping.py +4 -1
  18. agentscope_runtime/common/container_clients/fc_client.py +855 -0
  19. agentscope_runtime/common/utils/__init__.py +0 -0
  20. agentscope_runtime/common/utils/lazy_loader.py +57 -0
  21. agentscope_runtime/engine/__init__.py +25 -18
  22. agentscope_runtime/engine/app/agent_app.py +161 -91
  23. agentscope_runtime/engine/app/base_app.py +4 -118
  24. agentscope_runtime/engine/constant.py +8 -0
  25. agentscope_runtime/engine/deployers/__init__.py +8 -0
  26. agentscope_runtime/engine/deployers/adapter/__init__.py +2 -0
  27. agentscope_runtime/engine/deployers/adapter/a2a/a2a_adapter_utils.py +0 -21
  28. agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py +28 -9
  29. agentscope_runtime/engine/deployers/adapter/responses/__init__.py +2 -0
  30. agentscope_runtime/engine/deployers/adapter/responses/response_api_adapter_utils.py +5 -2
  31. agentscope_runtime/engine/deployers/adapter/responses/response_api_protocol_adapter.py +1 -1
  32. agentscope_runtime/engine/deployers/agentrun_deployer.py +2541 -0
  33. agentscope_runtime/engine/deployers/cli_fc_deploy.py +1 -1
  34. agentscope_runtime/engine/deployers/kubernetes_deployer.py +9 -21
  35. agentscope_runtime/engine/deployers/local_deployer.py +47 -74
  36. agentscope_runtime/engine/deployers/modelstudio_deployer.py +216 -50
  37. agentscope_runtime/engine/deployers/utils/app_runner_utils.py +29 -0
  38. agentscope_runtime/engine/deployers/utils/detached_app.py +510 -0
  39. agentscope_runtime/engine/deployers/utils/docker_image_utils/__init__.py +1 -1
  40. agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py +1 -1
  41. agentscope_runtime/engine/deployers/utils/docker_image_utils/{runner_image_factory.py → image_factory.py} +121 -61
  42. agentscope_runtime/engine/deployers/utils/package.py +693 -0
  43. agentscope_runtime/engine/deployers/utils/service_utils/__init__.py +0 -5
  44. agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py +301 -282
  45. agentscope_runtime/engine/deployers/utils/service_utils/fastapi_templates.py +2 -4
  46. agentscope_runtime/engine/deployers/utils/service_utils/process_manager.py +23 -1
  47. agentscope_runtime/engine/deployers/utils/templates/app_main.py.j2 +84 -0
  48. agentscope_runtime/engine/deployers/utils/templates/runner_main.py.j2 +95 -0
  49. agentscope_runtime/engine/deployers/utils/{service_utils → templates}/standalone_main.py.j2 +0 -45
  50. agentscope_runtime/engine/deployers/utils/wheel_packager.py +119 -18
  51. agentscope_runtime/engine/helpers/runner.py +40 -0
  52. agentscope_runtime/engine/runner.py +171 -130
  53. agentscope_runtime/engine/schemas/agent_schemas.py +114 -3
  54. agentscope_runtime/engine/schemas/modelstudio_llm.py +4 -2
  55. agentscope_runtime/engine/schemas/oai_llm.py +23 -23
  56. agentscope_runtime/engine/schemas/response_api.py +65 -0
  57. agentscope_runtime/engine/schemas/session.py +24 -0
  58. agentscope_runtime/engine/services/__init__.py +0 -9
  59. agentscope_runtime/engine/services/agent_state/__init__.py +16 -0
  60. agentscope_runtime/engine/services/agent_state/redis_state_service.py +113 -0
  61. agentscope_runtime/engine/services/agent_state/state_service.py +179 -0
  62. agentscope_runtime/engine/services/memory/__init__.py +24 -0
  63. agentscope_runtime/engine/services/{mem0_memory_service.py → memory/mem0_memory_service.py} +17 -13
  64. agentscope_runtime/engine/services/{memory_service.py → memory/memory_service.py} +28 -7
  65. agentscope_runtime/engine/services/{redis_memory_service.py → memory/redis_memory_service.py} +1 -1
  66. agentscope_runtime/engine/services/{reme_personal_memory_service.py → memory/reme_personal_memory_service.py} +9 -6
  67. agentscope_runtime/engine/services/{reme_task_memory_service.py → memory/reme_task_memory_service.py} +2 -2
  68. agentscope_runtime/engine/services/{tablestore_memory_service.py → memory/tablestore_memory_service.py} +12 -18
  69. agentscope_runtime/engine/services/sandbox/__init__.py +13 -0
  70. agentscope_runtime/engine/services/{sandbox_service.py → sandbox/sandbox_service.py} +86 -71
  71. agentscope_runtime/engine/services/session_history/__init__.py +23 -0
  72. agentscope_runtime/engine/services/{redis_session_history_service.py → session_history/redis_session_history_service.py} +3 -2
  73. agentscope_runtime/engine/services/{session_history_service.py → session_history/session_history_service.py} +44 -34
  74. agentscope_runtime/engine/services/{tablestore_session_history_service.py → session_history/tablestore_session_history_service.py} +14 -19
  75. agentscope_runtime/engine/services/utils/tablestore_service_utils.py +2 -2
  76. agentscope_runtime/engine/tracing/base.py +10 -9
  77. agentscope_runtime/engine/tracing/message_util.py +1 -1
  78. agentscope_runtime/engine/tracing/tracing_util.py +7 -2
  79. agentscope_runtime/engine/tracing/wrapper.py +49 -31
  80. agentscope_runtime/sandbox/__init__.py +10 -2
  81. agentscope_runtime/sandbox/box/agentbay/__init__.py +4 -0
  82. agentscope_runtime/sandbox/box/agentbay/agentbay_sandbox.py +559 -0
  83. agentscope_runtime/sandbox/box/base/base_sandbox.py +12 -0
  84. agentscope_runtime/sandbox/box/browser/browser_sandbox.py +115 -11
  85. agentscope_runtime/sandbox/box/cloud/__init__.py +4 -0
  86. agentscope_runtime/sandbox/box/cloud/cloud_sandbox.py +254 -0
  87. agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py +66 -0
  88. agentscope_runtime/sandbox/box/gui/gui_sandbox.py +42 -0
  89. agentscope_runtime/sandbox/box/mobile/__init__.py +4 -0
  90. agentscope_runtime/sandbox/box/mobile/box/__init__.py +0 -0
  91. agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py +216 -0
  92. agentscope_runtime/sandbox/box/training_box/training_box.py +2 -2
  93. agentscope_runtime/sandbox/client/http_client.py +1 -0
  94. agentscope_runtime/sandbox/enums.py +2 -0
  95. agentscope_runtime/sandbox/manager/sandbox_manager.py +15 -2
  96. agentscope_runtime/sandbox/manager/server/app.py +12 -0
  97. agentscope_runtime/sandbox/manager/server/config.py +19 -0
  98. agentscope_runtime/sandbox/model/manager_config.py +79 -2
  99. agentscope_runtime/sandbox/utils.py +0 -18
  100. agentscope_runtime/tools/RAGs/__init__.py +0 -0
  101. agentscope_runtime/tools/RAGs/modelstudio_rag.py +377 -0
  102. agentscope_runtime/tools/RAGs/modelstudio_rag_lite.py +219 -0
  103. agentscope_runtime/tools/__init__.py +119 -0
  104. agentscope_runtime/tools/_constants.py +18 -0
  105. agentscope_runtime/tools/alipay/__init__.py +4 -0
  106. agentscope_runtime/tools/alipay/base.py +334 -0
  107. agentscope_runtime/tools/alipay/payment.py +835 -0
  108. agentscope_runtime/tools/alipay/subscribe.py +551 -0
  109. agentscope_runtime/tools/base.py +264 -0
  110. agentscope_runtime/tools/cli/__init__.py +0 -0
  111. agentscope_runtime/tools/cli/modelstudio_mcp_server.py +78 -0
  112. agentscope_runtime/tools/generations/__init__.py +75 -0
  113. agentscope_runtime/tools/generations/async_image_to_video.py +350 -0
  114. agentscope_runtime/tools/generations/async_image_to_video_wan25.py +366 -0
  115. agentscope_runtime/tools/generations/async_speech_to_video.py +422 -0
  116. agentscope_runtime/tools/generations/async_text_to_video.py +320 -0
  117. agentscope_runtime/tools/generations/async_text_to_video_wan25.py +334 -0
  118. agentscope_runtime/tools/generations/image_edit.py +208 -0
  119. agentscope_runtime/tools/generations/image_edit_wan25.py +193 -0
  120. agentscope_runtime/tools/generations/image_generation.py +202 -0
  121. agentscope_runtime/tools/generations/image_generation_wan25.py +201 -0
  122. agentscope_runtime/tools/generations/image_style_repaint.py +208 -0
  123. agentscope_runtime/tools/generations/image_to_video.py +233 -0
  124. agentscope_runtime/tools/generations/qwen_image_edit.py +205 -0
  125. agentscope_runtime/tools/generations/qwen_image_generation.py +214 -0
  126. agentscope_runtime/tools/generations/qwen_text_to_speech.py +154 -0
  127. agentscope_runtime/tools/generations/speech_to_text.py +260 -0
  128. agentscope_runtime/tools/generations/speech_to_video.py +314 -0
  129. agentscope_runtime/tools/generations/text_to_video.py +221 -0
  130. agentscope_runtime/tools/mcp_wrapper.py +215 -0
  131. agentscope_runtime/tools/realtime_clients/__init__.py +13 -0
  132. agentscope_runtime/tools/realtime_clients/asr_client.py +27 -0
  133. agentscope_runtime/tools/realtime_clients/azure_asr_client.py +195 -0
  134. agentscope_runtime/tools/realtime_clients/azure_tts_client.py +383 -0
  135. agentscope_runtime/tools/realtime_clients/modelstudio_asr_client.py +151 -0
  136. agentscope_runtime/tools/realtime_clients/modelstudio_tts_client.py +199 -0
  137. agentscope_runtime/tools/realtime_clients/realtime_tool.py +55 -0
  138. agentscope_runtime/tools/realtime_clients/tts_client.py +33 -0
  139. agentscope_runtime/tools/searches/__init__.py +3 -0
  140. agentscope_runtime/tools/searches/modelstudio_search.py +877 -0
  141. agentscope_runtime/tools/searches/modelstudio_search_lite.py +310 -0
  142. agentscope_runtime/tools/utils/__init__.py +0 -0
  143. agentscope_runtime/tools/utils/api_key_util.py +45 -0
  144. agentscope_runtime/tools/utils/crypto_utils.py +99 -0
  145. agentscope_runtime/tools/utils/mcp_util.py +35 -0
  146. agentscope_runtime/version.py +1 -1
  147. {agentscope_runtime-0.2.0b2.dist-info → agentscope_runtime-1.0.0.dist-info}/METADATA +240 -168
  148. agentscope_runtime-1.0.0.dist-info/RECORD +240 -0
  149. {agentscope_runtime-0.2.0b2.dist-info → agentscope_runtime-1.0.0.dist-info}/entry_points.txt +1 -0
  150. agentscope_runtime/engine/agents/__init__.py +0 -2
  151. agentscope_runtime/engine/agents/agentscope_agent.py +0 -488
  152. agentscope_runtime/engine/agents/agno_agent.py +0 -220
  153. agentscope_runtime/engine/agents/autogen_agent.py +0 -250
  154. agentscope_runtime/engine/agents/base_agent.py +0 -29
  155. agentscope_runtime/engine/agents/langgraph_agent.py +0 -59
  156. agentscope_runtime/engine/agents/utils.py +0 -53
  157. agentscope_runtime/engine/deployers/utils/package_project_utils.py +0 -1163
  158. agentscope_runtime/engine/deployers/utils/service_utils/service_config.py +0 -75
  159. agentscope_runtime/engine/deployers/utils/service_utils/service_factory.py +0 -220
  160. agentscope_runtime/engine/helpers/helper.py +0 -179
  161. agentscope_runtime/engine/schemas/context.py +0 -54
  162. agentscope_runtime/engine/services/context_manager.py +0 -164
  163. agentscope_runtime/engine/services/environment_manager.py +0 -50
  164. agentscope_runtime/engine/services/manager.py +0 -174
  165. agentscope_runtime/engine/services/rag_service.py +0 -195
  166. agentscope_runtime/engine/services/tablestore_rag_service.py +0 -143
  167. agentscope_runtime/sandbox/tools/__init__.py +0 -12
  168. agentscope_runtime/sandbox/tools/base/__init__.py +0 -8
  169. agentscope_runtime/sandbox/tools/base/tool.py +0 -52
  170. agentscope_runtime/sandbox/tools/browser/__init__.py +0 -57
  171. agentscope_runtime/sandbox/tools/browser/tool.py +0 -597
  172. agentscope_runtime/sandbox/tools/filesystem/__init__.py +0 -32
  173. agentscope_runtime/sandbox/tools/filesystem/tool.py +0 -319
  174. agentscope_runtime/sandbox/tools/function_tool.py +0 -321
  175. agentscope_runtime/sandbox/tools/gui/__init__.py +0 -7
  176. agentscope_runtime/sandbox/tools/gui/tool.py +0 -77
  177. agentscope_runtime/sandbox/tools/mcp_tool.py +0 -195
  178. agentscope_runtime/sandbox/tools/sandbox_tool.py +0 -104
  179. agentscope_runtime/sandbox/tools/tool.py +0 -238
  180. agentscope_runtime/sandbox/tools/utils.py +0 -68
  181. agentscope_runtime-0.2.0b2.dist-info/RECORD +0 -183
  182. {agentscope_runtime-0.2.0b2.dist-info → agentscope_runtime-1.0.0.dist-info}/WHEEL +0 -0
  183. {agentscope_runtime-0.2.0b2.dist-info → agentscope_runtime-1.0.0.dist-info}/licenses/LICENSE +0 -0
  184. {agentscope_runtime-0.2.0b2.dist-info → agentscope_runtime-1.0.0.dist-info}/top_level.txt +0 -0
@@ -1,183 +0,0 @@
1
- agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
2
- agentscope_runtime/version.py,sha256=mutocz89mUpOBw6d0U9YceMbOgyUV-udkRPCsE6KWjM,49
3
- agentscope_runtime/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- agentscope_runtime/common/collections/__init__.py,sha256=teQPF7huMB2yEX_CAFsmIJhQxH7ldHR7gr11W3jlx4o,582
5
- agentscope_runtime/common/collections/base_mapping.py,sha256=IIVNwvaGVAiL6XxV0LvUHx-JmDvUc19iOGyRyAccMaI,361
6
- agentscope_runtime/common/collections/base_queue.py,sha256=eCwb5eovwzSV83J_Nq3HX_4IQ8rjYw9wdeVRS5sRQHA,424
7
- agentscope_runtime/common/collections/base_set.py,sha256=RasZxcXDkvdu89KhZc8Z_4TB5zIDTavCTLVVadfbB8w,449
8
- agentscope_runtime/common/collections/in_memory_mapping.py,sha256=7qU-3C-CX5rPuDjWUH9lnH6yvKIwCfnRwMm2vXy1Olo,645
9
- agentscope_runtime/common/collections/in_memory_queue.py,sha256=wTbmT77DI0KLYAgFbmcMl7sr5aB6WjyW_USQXqF9gJ0,612
10
- agentscope_runtime/common/collections/in_memory_set.py,sha256=7qek5ZB3f_mdNJ4PUPoYv1yujHybdMjgpCYlFMosyMs,602
11
- agentscope_runtime/common/collections/redis_mapping.py,sha256=OBEYiOsYknw3RLs_DFOFPQV1BxDKCimK1EdrlIGo7u0,1296
12
- agentscope_runtime/common/collections/redis_queue.py,sha256=4MCIDs7SgSfdngTvqxWWv2H-8XTpFQOmXG4-fxN20ew,792
13
- agentscope_runtime/common/collections/redis_set.py,sha256=eRCnMXc4hcDF2qyxFiNnrn2o4QjvtgDb6rEcblmV1o8,654
14
- agentscope_runtime/common/container_clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- agentscope_runtime/common/container_clients/agentrun_client.py,sha256=nibFHR5N3tfNDcREi_2obm09a6GZoXV3iZkYq3NsLvY,40672
16
- agentscope_runtime/common/container_clients/base_client.py,sha256=_uvxRh65lbMNXDcHjq01aYuNUrcxRlNzRtRIPMgWFGc,992
17
- agentscope_runtime/common/container_clients/docker_client.py,sha256=eP7NcUWdTuV1wwF9FeuQCZBDrVOUVRiKOcz3GYD4K-o,7724
18
- agentscope_runtime/common/container_clients/kubernetes_client.py,sha256=8_X091fbcR97_chFVMiWNDj5QmkBPG3tkS5zlXs-OCk,39550
19
- agentscope_runtime/engine/__init__.py,sha256=L7hR6q4VqS6UkHYL8zLSstD7ly4mwxojqlD311Drgq8,418
20
- agentscope_runtime/engine/runner.py,sha256=cy049XBOJamuoOuWYlWW4nLfLmvbj9TLX1-sib2b1yg,8396
21
- agentscope_runtime/engine/agents/__init__.py,sha256=xHp7FY6QM-nAhQAECi7xzrJkRkYZpAa5_zHRhO6Zogc,54
22
- agentscope_runtime/engine/agents/agentscope_agent.py,sha256=eMwbpk6xU-8ZBNNWr2-WULwhPaGwcJmsXFuPC6Emyc0,17453
23
- agentscope_runtime/engine/agents/agno_agent.py,sha256=Mq3NHGQsjQHVT6Y6d3GRrjS8GMk1tXWlC2RDFX3AHg4,6713
24
- agentscope_runtime/engine/agents/autogen_agent.py,sha256=bpPLpCAz34QD3suJyc4KT3spR5h0ZlvS_FsSlHkU2K0,7844
25
- agentscope_runtime/engine/agents/base_agent.py,sha256=fGf4MNKmfm_fsU2orTPLpt7TT5HkZZZYR05rhp5s7-E,782
26
- agentscope_runtime/engine/agents/langgraph_agent.py,sha256=05Z5js7g9Dxy-MWj0W00jOtFMNnHzSPjlP3WIIVHTtQ,1416
27
- agentscope_runtime/engine/agents/utils.py,sha256=tddHPNLDWc2_ascNjPi4hLgCe_tC2FSmKsVgTVnrCys,1801
28
- agentscope_runtime/engine/app/__init__.py,sha256=8asUQNRTjIEyoWjl955mn3gLkcYna8-CK4A810Eol0Y,87
29
- agentscope_runtime/engine/app/agent_app.py,sha256=w8NdPTUWjMRZuJTD7wRVPkBv3ejaYlXGzQLlOkpyWrE,8145
30
- agentscope_runtime/engine/app/base_app.py,sha256=pK73-knOkJMDWX2CMaNdrCpsIr5Z_TH5GHiZlrvs_qo,5966
31
- agentscope_runtime/engine/app/celery_mixin.py,sha256=fDPc4loHieUXvgJYRYWAv-3qOSssdbfKH9Fiu-ShrIs,2929
32
- agentscope_runtime/engine/deployers/__init__.py,sha256=l6AVY1bFpsraNbdf7H-djukEfm7Wz63xka_xj3s6H48,362
33
- agentscope_runtime/engine/deployers/base.py,sha256=hqDaLIzGizTxKq-_-n61lYyL21knZxCTSa90UScpLh4,519
34
- agentscope_runtime/engine/deployers/cli_fc_deploy.py,sha256=3t1rjAfgM-SBatF6_WoF3u-zPL7z7D2ADXksGRpFMUs,6069
35
- agentscope_runtime/engine/deployers/kubernetes_deployer.py,sha256=qxhAng5jpIusxaG4jAWWFnpi4PNeZhiURI-qfcHOWkA,9514
36
- agentscope_runtime/engine/deployers/local_deployer.py,sha256=P2W2m1qahCzww0vBiieJyqvawwL5f5QORlZft5TaAu8,17482
37
- agentscope_runtime/engine/deployers/modelstudio_deployer.py,sha256=vpzr231o8KqhxhMRu_cIZGuQM8iO585LeLszera6H8k,25257
38
- agentscope_runtime/engine/deployers/adapter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
- agentscope_runtime/engine/deployers/adapter/protocol_adapter.py,sha256=OpLfBWiFY_xC0uG53UYSeQuUnw7vZzvNnm5w6QFr9_w,737
40
- agentscope_runtime/engine/deployers/adapter/a2a/__init__.py,sha256=3D6TxH-seVfR7_SqYttNSkGkZv3o_TS9R5XqUkVxed4,83
41
- agentscope_runtime/engine/deployers/adapter/a2a/a2a_adapter_utils.py,sha256=VZ4f7Ne9sRWFiLhuxoKDhwSpsxZTg_uLygoOlI-KlEA,11441
42
- agentscope_runtime/engine/deployers/adapter/a2a/a2a_agent_adapter.py,sha256=h7wwl2CiKcGUxhKkrWN7DpaIpTltoRm-6ETS_fJHmEk,2147
43
- agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py,sha256=eDBDu3WTLjZ6TWA3jG48EIos1kZqiKHBXPSVzfNvniM,1905
44
- agentscope_runtime/engine/deployers/adapter/responses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- agentscope_runtime/engine/deployers/adapter/responses/response_api_adapter_utils.py,sha256=rsdHgCU0RxTy2lIxjN7wZ9aAH5y4k1XPWibRYhDlONo,98335
46
- agentscope_runtime/engine/deployers/adapter/responses/response_api_agent_adapter.py,sha256=B3F1GOvu_HFFdH8gnKJtVlr8u34jjRV3iKMgVz1XHVY,1593
47
- agentscope_runtime/engine/deployers/adapter/responses/response_api_protocol_adapter.py,sha256=rzicbo0QRqH2Vc2942UO4PsuGNAzXiypWa1wy-M5nyo,10337
48
- agentscope_runtime/engine/deployers/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
- agentscope_runtime/engine/deployers/utils/deployment_modes.py,sha256=vr2UzA1bzAAzxjToj9bVGzRWm47Za6w6cDI0nF1NMD0,448
50
- agentscope_runtime/engine/deployers/utils/package_project_utils.py,sha256=CzQ-uw13hCTDCqfuvsHDYoyFPLryqIpUEFRA3u2vQIk,47242
51
- agentscope_runtime/engine/deployers/utils/wheel_packager.py,sha256=ivCMCLltBXGoui-efpz6AnvcW0uW2daqnc55lYbrku4,11827
52
- agentscope_runtime/engine/deployers/utils/docker_image_utils/__init__.py,sha256=8y1N1N7VJduS4YdLL9EN1okB5DFOyvIiuHa9HQqm_RU,248
53
- agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py,sha256=KCH_AtyaYPCAwnFjjyVlS1GgtOt-V1y0mvDDKLvBZFI,13543
54
- agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py,sha256=YfO_S-G8pYZ_E6XKHnCc3fmnU9V-ec0bCpvuYCpy2i8,7520
55
- agentscope_runtime/engine/deployers/utils/docker_image_utils/runner_image_factory.py,sha256=coo-Kih2Wml4m9OAdN-0anBWIFpup0wx_cWE3rSR_ag,10482
56
- agentscope_runtime/engine/deployers/utils/service_utils/__init__.py,sha256=KaCyUxNXHOSViZi50Ytz7YtS5XJ8jo3YcEmAqjdmw6Q,261
57
- agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py,sha256=ywdyvkkOxexaQfI2jzIYjXiwFGKukIdd3cKdyt9CQBk,38316
58
- agentscope_runtime/engine/deployers/utils/service_utils/fastapi_templates.py,sha256=mw09nY7IBMG2b5HSUYiT1XtPb6xOGnnokZO8mUZBX3w,4879
59
- agentscope_runtime/engine/deployers/utils/service_utils/process_manager.py,sha256=DW7VTnwOsf2Qln-rfJzGKKWpLdwfz9MSJ74rRMrsJLk,7661
60
- agentscope_runtime/engine/deployers/utils/service_utils/service_config.py,sha256=D00CPmMnaX1j4ija_hSUEvmkVZClElzYVwpwrzN-J54,1911
61
- agentscope_runtime/engine/deployers/utils/service_utils/service_factory.py,sha256=ZXq8LhLGl2DOF84r5kOj644bGStz_RljLjnAymd1_RA,6939
62
- agentscope_runtime/engine/deployers/utils/service_utils/standalone_main.py.j2,sha256=-mPOAIvBt9KSroPmNwJ1FzLFbdyiGi3ZKU-QS4szeJE,7279
63
- agentscope_runtime/engine/helpers/agent_api_builder.py,sha256=mSixBHF9QDro8UNqijq4A5bM7O89z1i2jz42hMAVdio,18779
64
- agentscope_runtime/engine/helpers/helper.py,sha256=P4JvHbvhQaypitznc9NhSJv9QTZa7c6fKeKzTCvmKeQ,4914
65
- agentscope_runtime/engine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
- agentscope_runtime/engine/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
- agentscope_runtime/engine/schemas/agent_schemas.py,sha256=V-blrkOFvwKPp1otLXqTicICNph-jCIAt0RSmlhziMo,23872
68
- agentscope_runtime/engine/schemas/context.py,sha256=Qd2ee4HCYNmD5VHsacrScdpNq8q2aJwsRtsrBZarI9M,1550
69
- agentscope_runtime/engine/schemas/embedding.py,sha256=yn6VaKPXkze0bvJuaLKzWIOus_AuT-8Z_XRABk4NH60,891
70
- agentscope_runtime/engine/schemas/modelstudio_llm.py,sha256=4f-vnqmH0Csm5Gcq0N1-b0ReW8hAJX875ppjIY0mgCY,9771
71
- agentscope_runtime/engine/schemas/oai_llm.py,sha256=850Wj9VhbStz6qFJy7xTp630l6HwvYnQS25hiwOGAWY,16790
72
- agentscope_runtime/engine/schemas/realtime.py,sha256=caTRKLfCF9v-tKbdurvqMZ1myM9-ft2UeCNuiUIUmEs,7144
73
- agentscope_runtime/engine/services/__init__.py,sha256=SAsmwIr8etoUbqz5W1K2pH5ONlFzooXMQ0UFXTXfHwM,271
74
- agentscope_runtime/engine/services/base.py,sha256=g2hTc3ivj2MPjnsu5_09m6_MZ3KDHBfiYKu4F2pLA1I,2096
75
- agentscope_runtime/engine/services/context_manager.py,sha256=CzL7BgZtkWh74dJV-Sa3bNfqNbiihHIQbbvZuYraqXg,5314
76
- agentscope_runtime/engine/services/environment_manager.py,sha256=Bd3vmgX5KkN9gTY60o7Pozpsw0S8etpSJns63woSlDU,1347
77
- agentscope_runtime/engine/services/manager.py,sha256=r-TcHti8sEMXjZbwPWlG32J8iiMHUXuUJmAiwPvgn_Q,6282
78
- agentscope_runtime/engine/services/mem0_memory_service.py,sha256=0n75PNhFmCpCF4lmMPG2OR75nOfXMHStNxhAG7QhdgE,3569
79
- agentscope_runtime/engine/services/memory_service.py,sha256=hlJKHDoClYL7BOcUhLWve5WV4dCkMUNrpeJ04VO6AsM,7914
80
- agentscope_runtime/engine/services/rag_service.py,sha256=iPmQtFXG5_mva4GFQi4V2Buscj6MXlPtxzYMoqZ6k9U,5614
81
- agentscope_runtime/engine/services/redis_memory_service.py,sha256=2A6ouYghs80jby_MUcwiKfCScmYUbIcYsMlmEMynuqg,5708
82
- agentscope_runtime/engine/services/redis_session_history_service.py,sha256=wQ_1d4In5nQkP3Hx-_xRxvgyuXTCLowITiNlaw9Z4II,5086
83
- agentscope_runtime/engine/services/reme_personal_memory_service.py,sha256=Cmd0FpHulv8h5IXWKnymHMViXSr2Z8dFtXDj3d8y4Vo,2962
84
- agentscope_runtime/engine/services/reme_task_memory_service.py,sha256=d1QV9e1ifAQIO4Kr-Q9gzx7OhKH_CkUhuyygHRLprWo,338
85
- agentscope_runtime/engine/services/sandbox_service.py,sha256=WJp9dZSHYm3eJkw7EoLLj9LgTCjnvrH6xxhWucIKYbI,6038
86
- agentscope_runtime/engine/services/session_history_service.py,sha256=C77KwRclXbnMDE3iT5WHglRFYI0aSwDg4EChJCgknzQ,8088
87
- agentscope_runtime/engine/services/tablestore_memory_service.py,sha256=MRDSAsMGuXtpQ_IQRld-TaUj6UUwNpUHXuCFqVgdmFk,10558
88
- agentscope_runtime/engine/services/tablestore_rag_service.py,sha256=uGx8I8OGFJPBQs_lTd8Ew-OXMEivEODHA1i9yiFh3Ns,5188
89
- agentscope_runtime/engine/services/tablestore_session_history_service.py,sha256=peCon6o4Ryyiu3E2AQDgbB8NFsdPi4tIZK4TEiuvFUA,10353
90
- agentscope_runtime/engine/services/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
- agentscope_runtime/engine/services/utils/tablestore_service_utils.py,sha256=tqJ6RdxHZSGBorZ12iSMdMSbvqUG_c_rtCKrWMaLANE,11005
92
- agentscope_runtime/engine/tracing/__init__.py,sha256=yUmXYDqApqGOlZJqJ_jb8TvSYUAUk4VInmNSSiICGoI,1237
93
- agentscope_runtime/engine/tracing/asyncio_util.py,sha256=aPaOPiLq3YVm6XS_wn8zWK2pK3aHwV0bRwD62pAJ9xQ,685
94
- agentscope_runtime/engine/tracing/base.py,sha256=Em3Er14PxTb953Qkg-BxLIFziZP68Vg246EytpBPFEc,10621
95
- agentscope_runtime/engine/tracing/local_logging_handler.py,sha256=scx_eJeZHonLYklohmaDAikKerxVrPRlZAUQB2KmNJU,12447
96
- agentscope_runtime/engine/tracing/message_util.py,sha256=VGDS2P6XemrWX-6_KUt4EuKqcQgxAwIKTYJAmCm5OUc,18550
97
- agentscope_runtime/engine/tracing/tracing_metric.py,sha256=X1m6yjLx_hnbmozsCxiW9X3t1gWgrKlbsYEfCMqNSx0,2375
98
- agentscope_runtime/engine/tracing/tracing_util.py,sha256=MnPQ4SeRPciv5WHK_Ku3OkGrS15Ov8au3houyUDamD8,3748
99
- agentscope_runtime/engine/tracing/wrapper.py,sha256=n6x2tDOBmWxO7oobQnjTbi1LBj8joneJgpgelok3oRU,30892
100
- agentscope_runtime/sandbox/__init__.py,sha256=2q36ii6765TpuRET1cHwd69HgOEXjxxCpKD8d-Mrahs,440
101
- agentscope_runtime/sandbox/build.py,sha256=RAZkV0rFp24BNmJBZiMYAQ4KafUAELO3V1Ys6Afodwc,8451
102
- agentscope_runtime/sandbox/constant.py,sha256=NzpxJ1hBDkP9J_c45FsG3iDgBkfEkIlkSKjc4X78tiU,1011
103
- agentscope_runtime/sandbox/enums.py,sha256=xwDao512RlmgkuxYsOeEblNtzgKpPvggA8x8sDHdBr8,1872
104
- agentscope_runtime/sandbox/mcp_server.py,sha256=UT3aRZqyeHqEhhm-wZ0Ilhew3eDMHzz9DCN6Qb-eKFk,6012
105
- agentscope_runtime/sandbox/registry.py,sha256=3ukwbTOjSINWH7DIOmG1iPgze5nb-zXl2X8M7_AeBwg,4190
106
- agentscope_runtime/sandbox/utils.py,sha256=l0gpIM3KjPMlVUtrhOia3Se4HbA4U_MuylySjpoHdrY,3970
107
- agentscope_runtime/sandbox/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
- agentscope_runtime/sandbox/box/sandbox.py,sha256=-BWme4Zxx9xWssRXf6KzH3RVueR9MuzcOcN8Gdu7mTg,5309
109
- agentscope_runtime/sandbox/box/base/__init__.py,sha256=a68IgljSWvNn1mWaCOeEm2C-7Gf7JiUdDnJpBfID198,89
110
- agentscope_runtime/sandbox/box/base/base_sandbox.py,sha256=tV8Ox_AUSUkzrwhjx53J5azLVUipxOQ9y8JTAQznbWw,1085
111
- agentscope_runtime/sandbox/box/base/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
- agentscope_runtime/sandbox/box/browser/__init__.py,sha256=thrkAvtLQ23jR8sM_bSsfmsqFiwpExgh72vnrVUcweQ,98
113
- agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=wDJb-CBSuzBl2i3NjtkgXFLJppsiooSAlfjzI3Bhs-Q,5542
114
- agentscope_runtime/sandbox/box/browser/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
- agentscope_runtime/sandbox/box/dummy/__init__.py,sha256=RErHmUx7hFXX69nohtYBS_QSHEWENZHZbWG3434ZDls,92
116
- agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py,sha256=KAsCEbgZu48qklNMWLd7yPCb7TP1RPFXVi8CQ9Z-kPo,705
117
- agentscope_runtime/sandbox/box/filesystem/__init__.py,sha256=OsYCqFfattl6y5M55XMwHTeXVnb-pL3cWMJKjTZIu-s,107
118
- agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py,sha256=VlSwBtDi-AK1PWzQTKgNPLB1NHgK1Ayu8N4Q3qOyZ20,2682
119
- agentscope_runtime/sandbox/box/filesystem/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
- agentscope_runtime/sandbox/box/gui/__init__.py,sha256=-tzNU2yYdKjXD83PlNaMtsu5nqO1yBi2LDevIda2eqo,108
121
- agentscope_runtime/sandbox/box/gui/gui_sandbox.py,sha256=RYvwwdtXMaX95P3jUrzshWW3cIYmI9ezfuLkRRf5VcY,2594
122
- agentscope_runtime/sandbox/box/gui/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
- agentscope_runtime/sandbox/box/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
- agentscope_runtime/sandbox/box/shared/app.py,sha256=bw6l0XPVF86yuh0jO_Sx9S-B-luFE3U3lIb6Qjc3dGU,1107
125
- agentscope_runtime/sandbox/box/shared/dependencies/__init__.py,sha256=e1x-6L6vsBbQBrtjrDsdK8eqk-lCqxOIPrSqWyxoG50,98
126
- agentscope_runtime/sandbox/box/shared/dependencies/deps.py,sha256=pavJWhin5Dbc1f452PDNaCYo9RkK-y95dwLyYZQMOPQ,687
127
- agentscope_runtime/sandbox/box/shared/routers/__init__.py,sha256=QokVfRhfBftiXktqpn3iqdKcSz7TcSn-4Kbf4QhOUXs,273
128
- agentscope_runtime/sandbox/box/shared/routers/generic.py,sha256=5hIwNPpC2Pu4uTqKWGcymBKXdKqbYEsyOYD4Vv7XR44,5164
129
- agentscope_runtime/sandbox/box/shared/routers/mcp.py,sha256=_2492A88qba3hUPV67oexfWm-mHEFcr9ygzW-Qqhyi0,6046
130
- agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py,sha256=aQEUimxeeve-A-VKx99YeMR4nw7KRpGqzIpMiyNU9dQ,5865
131
- agentscope_runtime/sandbox/box/shared/routers/runtime_watcher.py,sha256=v4jAGYtJaYsRJaSTv7e7hmDLHWVAtJqnSnpPq-kFcmU,5344
132
- agentscope_runtime/sandbox/box/shared/routers/workspace.py,sha256=cQMbWNQG7ojHZfWN0xFqEivhlpQO4qEDo3amkhVHUBg,9748
133
- agentscope_runtime/sandbox/box/training_box/__init__.py,sha256=vG2MQviqdmIUSjHmHiC5N_kiHinMnvOdjwW0AUdfZ3Y,125
134
- agentscope_runtime/sandbox/box/training_box/base.py,sha256=iUPsfA8oiGDR3BMVU7qisvO-UT8HtCx78ayW67DQ0WQ,3307
135
- agentscope_runtime/sandbox/box/training_box/env_service.py,sha256=YoMswhQrX8VmE202tpFq-bQo6gOd2oemBhTG_MD9Rwg,22616
136
- agentscope_runtime/sandbox/box/training_box/registry.py,sha256=6fTMZvJbakhEqkaO61K-wIfX6uau7g4nFP63bQ7jiNI,1362
137
- agentscope_runtime/sandbox/box/training_box/training_box.py,sha256=duX1QNaXz8lOjjXP5Uw1wykw91YVklhRMlcnZw8NvEA,8877
138
- agentscope_runtime/sandbox/box/training_box/environments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
- agentscope_runtime/sandbox/box/training_box/environments/appworld/appworld_env.py,sha256=FJc0eb6bnKL6lxx_4EKWr7kmKLi2jLsykNstecXEqkc,27786
140
- agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_dataprocess.py,sha256=jkg8wDwDXdZZU7q777tnyqc-C9hRlPF0pffJ4DX5upQ,7352
141
- agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_env.py,sha256=22hfq1yO5abZocG8FfaabCXD4HGg-RT_8AY1dHbtvxM,11878
142
- agentscope_runtime/sandbox/box/training_box/environments/bfcl/env_handler.py,sha256=T-W9w4nKI7_BXgF9caqV3KMeX5d6yvdfhQu0o2oWTUE,30114
143
- agentscope_runtime/sandbox/box/training_box/src/trajectory.py,sha256=cFr3uVUPq5gHKPa6ALi7QCLBVkgYOyPgyJrOzgBHf3k,7885
144
- agentscope_runtime/sandbox/client/__init__.py,sha256=KiNsTToc1jICqCC1BcH762jZgHuOkCPiG32oXGo6dQE,176
145
- agentscope_runtime/sandbox/client/http_client.py,sha256=ra5vACr862VRRPmogYZkRqS2PXACcDYwvbtIE7NqaMY,17940
146
- agentscope_runtime/sandbox/client/training_client.py,sha256=WIhGBib2IWQZwUoSJUn8kuIGrtd6Yz3VOxCh0tft630,7625
147
- agentscope_runtime/sandbox/custom/__init__.py,sha256=wpu0DlzdLohYzOVM9yZloIWid3w_ME6dPtOjCZKbRZ8,463
148
- agentscope_runtime/sandbox/custom/custom_sandbox.py,sha256=ZKE7otTimLZ2-ZV9PMVLRA6P1hH0a4fT-d_K4Ga59og,1008
149
- agentscope_runtime/sandbox/custom/example.py,sha256=iU5G7Vb-oq3wsJ_Kl8oFAwi0HNbt5V_8fWAAyiQ8RuY,964
150
- agentscope_runtime/sandbox/manager/__init__.py,sha256=KNHc1uDaUWBH_ZnWjH5NHRBiQM_zDyi9B2xKVNtAWIg,98
151
- agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=watibBh_ujgJ7g4GW3pVRruhmHw0IVnWyEACLrR8Jo4,27533
152
- agentscope_runtime/sandbox/manager/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
- agentscope_runtime/sandbox/manager/server/app.py,sha256=MIq8B8TBuwg7JQNgVLzjYjC9Fq2r2m5dcmgeyKk5mcA,13045
154
- agentscope_runtime/sandbox/manager/server/config.py,sha256=L5Gz0CzmX7-teWQsciUgW4Fmg82G_WjmU7TUi7_bcuM,3944
155
- agentscope_runtime/sandbox/manager/server/models.py,sha256=rCibF0HsotFcqsQVTSUoOTJCFQU3oqKvpOiWMWIRLyY,304
156
- agentscope_runtime/sandbox/manager/storage/__init__.py,sha256=jGmpfXV1E2X7AqkGeF1xu1EHiSTvbH3TSIviLbKBFh4,210
157
- agentscope_runtime/sandbox/manager/storage/data_storage.py,sha256=mGwf7LYbp_fRjLN9BZay6cm3eNziEdU6OlSBeFnIBMQ,475
158
- agentscope_runtime/sandbox/manager/storage/local_storage.py,sha256=o6fkV-yUtBihhfZtLEdBUhF1K8_psSl92AWJFtYQxtk,1521
159
- agentscope_runtime/sandbox/manager/storage/oss_storage.py,sha256=fIUxgOkOaH_1vlgWBnCM-e4UvD3xS_ycFe2yvSyXzBE,2970
160
- agentscope_runtime/sandbox/model/__init__.py,sha256=WoDOSD_67T-UkZdXOtJzwG4-0E8ABwUBJF6WSCs_sO0,182
161
- agentscope_runtime/sandbox/model/api.py,sha256=Sjxw6DHkGa8Sp5dUU5kaajkHPj7eiX1EgFZk-zOPafM,400
162
- agentscope_runtime/sandbox/model/container.py,sha256=f7dj4ir4sxXjZ_zm4iEkjskraacZLX2SR_l1WSl0FOo,1405
163
- agentscope_runtime/sandbox/model/manager_config.py,sha256=0zaxRJnt-r9O0iPSUfT5I6ysUo-B3xufB2nS1IeBMf4,8016
164
- agentscope_runtime/sandbox/tools/__init__.py,sha256=ioRqvKFLma8Vq0ePwOR5MekijpcHs2USNYA4Dnr-e6M,287
165
- agentscope_runtime/sandbox/tools/function_tool.py,sha256=mH4dq3M26pdk-XqxIm1wtsvQz5i8SXcP4Gz0-7_L7cQ,10309
166
- agentscope_runtime/sandbox/tools/mcp_tool.py,sha256=9wvzS_t_mlHlUlXvVigV9YcxWAh0BJqJw5K0zvoI_vQ,6213
167
- agentscope_runtime/sandbox/tools/sandbox_tool.py,sha256=wHkgixb0dy6DexXbfXVOKUFfLL9QOI2H5oiQ2NntoWM,3067
168
- agentscope_runtime/sandbox/tools/tool.py,sha256=8QIpHtMoHZ7Rq6IA1d-RAsRqp2HVSeRAgiXCK6MBzlc,7432
169
- agentscope_runtime/sandbox/tools/utils.py,sha256=QksPQK-2DszaQsRw4Srug5hEwrf6hothf-Xp8a1056c,2098
170
- agentscope_runtime/sandbox/tools/base/__init__.py,sha256=Aboc1tFjgWriw4gqDrX5axpC_Bx469mcn8l8nbNdSXg,143
171
- agentscope_runtime/sandbox/tools/base/tool.py,sha256=5rCZ_SdDiRCZyQfdsWC1FPq7jwnSSbnKxyjQQK3PAS8,1347
172
- agentscope_runtime/sandbox/tools/browser/__init__.py,sha256=gXQx3tXclYqAhPDrXb1-Z5ynTBQ3XQsoU2kvFN7LcYw,1280
173
- agentscope_runtime/sandbox/tools/browser/tool.py,sha256=EJ-uhHX9oIb4Q-hXQhTS-7VRJ-AdCRWXb9HVdOQ5JAc,19206
174
- agentscope_runtime/sandbox/tools/filesystem/__init__.py,sha256=AJK88YU0ceJe99H7T-on2tgaow4ujqGJ1jwv0sd1TtE,607
175
- agentscope_runtime/sandbox/tools/filesystem/tool.py,sha256=CPsl4TMf76BOSQtG1dqDcVdymciKhMknIG5FffoI2Eg,9847
176
- agentscope_runtime/sandbox/tools/gui/__init__.py,sha256=agr8SMmuLbtk7aTMhnD-b70bbYbYI-ymPS5yPw6HRyM,91
177
- agentscope_runtime/sandbox/tools/gui/tool.py,sha256=8gLZgEMJDiGoob56ptnvnjh19dWw40XsDL93AGWplto,4064
178
- agentscope_runtime-0.2.0b2.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
179
- agentscope_runtime-0.2.0b2.dist-info/METADATA,sha256=uqi9YzYRssV3vZ1rrrGoun5ZGL47LdrzxaD3WxUuBWM,29643
180
- agentscope_runtime-0.2.0b2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
181
- agentscope_runtime-0.2.0b2.dist-info/entry_points.txt,sha256=K8Tb95DEHzRW3AxsZAXghmqeDcPpO7n7rNmU5glfmaU,298
182
- agentscope_runtime-0.2.0b2.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
183
- agentscope_runtime-0.2.0b2.dist-info/RECORD,,