agentscope-runtime 0.2.0b2__py3-none-any.whl → 1.0.0b1__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 (183) 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 +474 -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 +256 -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 +170 -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/sandbox/__init__.py +10 -2
  80. agentscope_runtime/sandbox/box/agentbay/__init__.py +4 -0
  81. agentscope_runtime/sandbox/box/agentbay/agentbay_sandbox.py +559 -0
  82. agentscope_runtime/sandbox/box/base/base_sandbox.py +12 -0
  83. agentscope_runtime/sandbox/box/browser/browser_sandbox.py +115 -11
  84. agentscope_runtime/sandbox/box/cloud/__init__.py +4 -0
  85. agentscope_runtime/sandbox/box/cloud/cloud_sandbox.py +254 -0
  86. agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py +66 -0
  87. agentscope_runtime/sandbox/box/gui/gui_sandbox.py +42 -0
  88. agentscope_runtime/sandbox/box/mobile/__init__.py +4 -0
  89. agentscope_runtime/sandbox/box/mobile/box/__init__.py +0 -0
  90. agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py +216 -0
  91. agentscope_runtime/sandbox/box/training_box/training_box.py +2 -2
  92. agentscope_runtime/sandbox/client/http_client.py +1 -0
  93. agentscope_runtime/sandbox/enums.py +2 -0
  94. agentscope_runtime/sandbox/manager/sandbox_manager.py +18 -2
  95. agentscope_runtime/sandbox/manager/server/app.py +12 -0
  96. agentscope_runtime/sandbox/manager/server/config.py +19 -0
  97. agentscope_runtime/sandbox/model/manager_config.py +79 -2
  98. agentscope_runtime/sandbox/utils.py +0 -18
  99. agentscope_runtime/tools/RAGs/__init__.py +0 -0
  100. agentscope_runtime/tools/RAGs/modelstudio_rag.py +377 -0
  101. agentscope_runtime/tools/RAGs/modelstudio_rag_lite.py +219 -0
  102. agentscope_runtime/tools/__init__.py +119 -0
  103. agentscope_runtime/tools/_constants.py +18 -0
  104. agentscope_runtime/tools/alipay/__init__.py +4 -0
  105. agentscope_runtime/tools/alipay/base.py +334 -0
  106. agentscope_runtime/tools/alipay/payment.py +835 -0
  107. agentscope_runtime/tools/alipay/subscribe.py +551 -0
  108. agentscope_runtime/tools/base.py +264 -0
  109. agentscope_runtime/tools/cli/__init__.py +0 -0
  110. agentscope_runtime/tools/cli/modelstudio_mcp_server.py +78 -0
  111. agentscope_runtime/tools/generations/__init__.py +75 -0
  112. agentscope_runtime/tools/generations/async_image_to_video.py +350 -0
  113. agentscope_runtime/tools/generations/async_image_to_video_wan25.py +366 -0
  114. agentscope_runtime/tools/generations/async_speech_to_video.py +422 -0
  115. agentscope_runtime/tools/generations/async_text_to_video.py +320 -0
  116. agentscope_runtime/tools/generations/async_text_to_video_wan25.py +334 -0
  117. agentscope_runtime/tools/generations/image_edit.py +208 -0
  118. agentscope_runtime/tools/generations/image_edit_wan25.py +193 -0
  119. agentscope_runtime/tools/generations/image_generation.py +202 -0
  120. agentscope_runtime/tools/generations/image_generation_wan25.py +201 -0
  121. agentscope_runtime/tools/generations/image_style_repaint.py +208 -0
  122. agentscope_runtime/tools/generations/image_to_video.py +233 -0
  123. agentscope_runtime/tools/generations/qwen_image_edit.py +205 -0
  124. agentscope_runtime/tools/generations/qwen_image_generation.py +214 -0
  125. agentscope_runtime/tools/generations/qwen_text_to_speech.py +154 -0
  126. agentscope_runtime/tools/generations/speech_to_text.py +260 -0
  127. agentscope_runtime/tools/generations/speech_to_video.py +314 -0
  128. agentscope_runtime/tools/generations/text_to_video.py +221 -0
  129. agentscope_runtime/tools/mcp_wrapper.py +215 -0
  130. agentscope_runtime/tools/realtime_clients/__init__.py +13 -0
  131. agentscope_runtime/tools/realtime_clients/asr_client.py +27 -0
  132. agentscope_runtime/tools/realtime_clients/azure_asr_client.py +195 -0
  133. agentscope_runtime/tools/realtime_clients/azure_tts_client.py +383 -0
  134. agentscope_runtime/tools/realtime_clients/modelstudio_asr_client.py +151 -0
  135. agentscope_runtime/tools/realtime_clients/modelstudio_tts_client.py +199 -0
  136. agentscope_runtime/tools/realtime_clients/realtime_tool.py +55 -0
  137. agentscope_runtime/tools/realtime_clients/tts_client.py +33 -0
  138. agentscope_runtime/tools/searches/__init__.py +3 -0
  139. agentscope_runtime/tools/searches/modelstudio_search.py +877 -0
  140. agentscope_runtime/tools/searches/modelstudio_search_lite.py +310 -0
  141. agentscope_runtime/tools/utils/__init__.py +0 -0
  142. agentscope_runtime/tools/utils/api_key_util.py +45 -0
  143. agentscope_runtime/tools/utils/crypto_utils.py +99 -0
  144. agentscope_runtime/tools/utils/mcp_util.py +35 -0
  145. agentscope_runtime/version.py +1 -1
  146. {agentscope_runtime-0.2.0b2.dist-info → agentscope_runtime-1.0.0b1.dist-info}/METADATA +234 -165
  147. agentscope_runtime-1.0.0b1.dist-info/RECORD +240 -0
  148. {agentscope_runtime-0.2.0b2.dist-info → agentscope_runtime-1.0.0b1.dist-info}/entry_points.txt +1 -0
  149. agentscope_runtime/engine/agents/__init__.py +0 -2
  150. agentscope_runtime/engine/agents/agentscope_agent.py +0 -488
  151. agentscope_runtime/engine/agents/agno_agent.py +0 -220
  152. agentscope_runtime/engine/agents/autogen_agent.py +0 -250
  153. agentscope_runtime/engine/agents/base_agent.py +0 -29
  154. agentscope_runtime/engine/agents/langgraph_agent.py +0 -59
  155. agentscope_runtime/engine/agents/utils.py +0 -53
  156. agentscope_runtime/engine/deployers/utils/package_project_utils.py +0 -1163
  157. agentscope_runtime/engine/deployers/utils/service_utils/service_config.py +0 -75
  158. agentscope_runtime/engine/deployers/utils/service_utils/service_factory.py +0 -220
  159. agentscope_runtime/engine/helpers/helper.py +0 -179
  160. agentscope_runtime/engine/schemas/context.py +0 -54
  161. agentscope_runtime/engine/services/context_manager.py +0 -164
  162. agentscope_runtime/engine/services/environment_manager.py +0 -50
  163. agentscope_runtime/engine/services/manager.py +0 -174
  164. agentscope_runtime/engine/services/rag_service.py +0 -195
  165. agentscope_runtime/engine/services/tablestore_rag_service.py +0 -143
  166. agentscope_runtime/sandbox/tools/__init__.py +0 -12
  167. agentscope_runtime/sandbox/tools/base/__init__.py +0 -8
  168. agentscope_runtime/sandbox/tools/base/tool.py +0 -52
  169. agentscope_runtime/sandbox/tools/browser/__init__.py +0 -57
  170. agentscope_runtime/sandbox/tools/browser/tool.py +0 -597
  171. agentscope_runtime/sandbox/tools/filesystem/__init__.py +0 -32
  172. agentscope_runtime/sandbox/tools/filesystem/tool.py +0 -319
  173. agentscope_runtime/sandbox/tools/function_tool.py +0 -321
  174. agentscope_runtime/sandbox/tools/gui/__init__.py +0 -7
  175. agentscope_runtime/sandbox/tools/gui/tool.py +0 -77
  176. agentscope_runtime/sandbox/tools/mcp_tool.py +0 -195
  177. agentscope_runtime/sandbox/tools/sandbox_tool.py +0 -104
  178. agentscope_runtime/sandbox/tools/tool.py +0 -238
  179. agentscope_runtime/sandbox/tools/utils.py +0 -68
  180. agentscope_runtime-0.2.0b2.dist-info/RECORD +0 -183
  181. {agentscope_runtime-0.2.0b2.dist-info → agentscope_runtime-1.0.0b1.dist-info}/WHEEL +0 -0
  182. {agentscope_runtime-0.2.0b2.dist-info → agentscope_runtime-1.0.0b1.dist-info}/licenses/LICENSE +0 -0
  183. {agentscope_runtime-0.2.0b2.dist-info → agentscope_runtime-1.0.0b1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,240 @@
1
+ agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
2
+ agentscope_runtime/version.py,sha256=yOMzjiBgCTJn4No0P10fQG-RDeZO0V-e17TXnO4tDT8,49
3
+ agentscope_runtime/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
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=ht0A5PckYXlCZNl9jXqXu-KQrbtEglsffJpa2KPiu6U,19669
7
+ agentscope_runtime/adapters/agentscope/long_term_memory/__init__.py,sha256=Hg4ghENb8u49svojY_q89HEjKImvLjKMQwmL8Y3wGgE,135
8
+ agentscope_runtime/adapters/agentscope/long_term_memory/_long_term_memory_adapter.py,sha256=dwUS6-xvn9g4VlVcHL89gCbHjdw-VWKEBNpVkmzUAgE,7873
9
+ agentscope_runtime/adapters/agentscope/memory/__init__.py,sha256=zqVxvsJv1t1mjJKdOjtP6dUGNOrc0LLwZx_yZCNq7Xs,137
10
+ agentscope_runtime/adapters/agentscope/memory/_memory_adapter.py,sha256=DDyhzzT2Y-3q4L0AkS8am1y5jsylxZpgJXWxB2abefQ,4535
11
+ agentscope_runtime/adapters/agentscope/tool/__init__.py,sha256=wrBKu2FidSJuGBuhy2BEG0Xy9J9pZldtHxsKBs3iWQ0,249
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
14
+ agentscope_runtime/adapters/autogen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ agentscope_runtime/adapters/autogen/tool/__init__.py,sha256=FJXusI2gPKYOuAIN_eqMIPUxnJ34_NCPwtScTKosrWM,152
16
+ agentscope_runtime/adapters/autogen/tool/tool.py,sha256=NFSitBvL5uP3sVwHQfxprbsG6B39SmDVlT2vHTguUII,6587
17
+ agentscope_runtime/adapters/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ agentscope_runtime/adapters/text/stream.py,sha256=qtk-WIj8itvOUZO0IHzNPBNWX4V5Dm13nhsNlDyYWKc,682
19
+ agentscope_runtime/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ agentscope_runtime/common/collections/__init__.py,sha256=teQPF7huMB2yEX_CAFsmIJhQxH7ldHR7gr11W3jlx4o,582
21
+ agentscope_runtime/common/collections/base_mapping.py,sha256=IIVNwvaGVAiL6XxV0LvUHx-JmDvUc19iOGyRyAccMaI,361
22
+ agentscope_runtime/common/collections/base_queue.py,sha256=eCwb5eovwzSV83J_Nq3HX_4IQ8rjYw9wdeVRS5sRQHA,424
23
+ agentscope_runtime/common/collections/base_set.py,sha256=RasZxcXDkvdu89KhZc8Z_4TB5zIDTavCTLVVadfbB8w,449
24
+ agentscope_runtime/common/collections/in_memory_mapping.py,sha256=7qU-3C-CX5rPuDjWUH9lnH6yvKIwCfnRwMm2vXy1Olo,645
25
+ agentscope_runtime/common/collections/in_memory_queue.py,sha256=wTbmT77DI0KLYAgFbmcMl7sr5aB6WjyW_USQXqF9gJ0,612
26
+ agentscope_runtime/common/collections/in_memory_set.py,sha256=7qek5ZB3f_mdNJ4PUPoYv1yujHybdMjgpCYlFMosyMs,602
27
+ agentscope_runtime/common/collections/redis_mapping.py,sha256=a608hRTfDWWTFq6nBPBlUNE0mHsjVJSP4yhfX99zA3E,1340
28
+ agentscope_runtime/common/collections/redis_queue.py,sha256=4MCIDs7SgSfdngTvqxWWv2H-8XTpFQOmXG4-fxN20ew,792
29
+ agentscope_runtime/common/collections/redis_set.py,sha256=eRCnMXc4hcDF2qyxFiNnrn2o4QjvtgDb6rEcblmV1o8,654
30
+ agentscope_runtime/common/container_clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ agentscope_runtime/common/container_clients/agentrun_client.py,sha256=nibFHR5N3tfNDcREi_2obm09a6GZoXV3iZkYq3NsLvY,40672
32
+ agentscope_runtime/common/container_clients/base_client.py,sha256=_uvxRh65lbMNXDcHjq01aYuNUrcxRlNzRtRIPMgWFGc,992
33
+ agentscope_runtime/common/container_clients/docker_client.py,sha256=eP7NcUWdTuV1wwF9FeuQCZBDrVOUVRiKOcz3GYD4K-o,7724
34
+ agentscope_runtime/common/container_clients/fc_client.py,sha256=l10m0Xdu4k41P4MQBLEH5lm_HJEZjMJTk_v0YgYNHi4,32677
35
+ agentscope_runtime/common/container_clients/kubernetes_client.py,sha256=8_X091fbcR97_chFVMiWNDj5QmkBPG3tkS5zlXs-OCk,39550
36
+ agentscope_runtime/common/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ agentscope_runtime/common/utils/lazy_loader.py,sha256=YbhbKNJrm1d3adCZ6gM6ljZE0QCCcpt4yGDCjNWtkJ4,1937
38
+ agentscope_runtime/engine/__init__.py,sha256=lJV0pGExSfUmyW43MNdTG06jOTNnMrLHSgBS2AhYvyQ,656
39
+ agentscope_runtime/engine/constant.py,sha256=KOXujjNLky8Jcm8D_gPhQLsQdzPcU4RfrQzAvJUCrpU,128
40
+ agentscope_runtime/engine/runner.py,sha256=EeHAbFBzGjk_XEO9w53yib0rRihFZWnQKYjL3Yqr8YU,8961
41
+ 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
43
+ agentscope_runtime/engine/app/base_app.py,sha256=ILLp4GUVslRtLxSjCTrpTX6f1E5QhM9oXefxy4sA28I,2290
44
+ 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
48
+ 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
52
+ agentscope_runtime/engine/deployers/adapter/__init__.py,sha256=11R2POJNbfH5WE3hntYvhUOm_bq-LB-EaUGfbPwCHuQ,66
53
+ 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
55
+ agentscope_runtime/engine/deployers/adapter/a2a/a2a_adapter_utils.py,sha256=7nuyfkN7rR8PjpWPKh2acsd9VztbtcZOQdzSp4dWVUY,10956
56
+ 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
58
+ agentscope_runtime/engine/deployers/adapter/responses/__init__.py,sha256=0f1SVBagTz0Kex8kX9_QapqmBPJUHcRejnV4P39PaBc,93
59
+ agentscope_runtime/engine/deployers/adapter/responses/response_api_adapter_utils.py,sha256=MmvLkHDbb1cQMS2kQKnS3FT_6DUOQRdL2vb_HMA6eFo,98448
60
+ agentscope_runtime/engine/deployers/adapter/responses/response_api_agent_adapter.py,sha256=B3F1GOvu_HFFdH8gnKJtVlr8u34jjRV3iKMgVz1XHVY,1593
61
+ agentscope_runtime/engine/deployers/adapter/responses/response_api_protocol_adapter.py,sha256=hm0bSy9QDh8har4KMv8GsSjLsqin-eII75xh8ytiXAE,10345
62
+ agentscope_runtime/engine/deployers/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
+ agentscope_runtime/engine/deployers/utils/app_runner_utils.py,sha256=v47ztKLiGfc3YabxGU7Ubv6W2TM_Vb-N530sL4nHyu0,754
64
+ 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
68
+ 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
72
+ 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
74
+ 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
76
+ agentscope_runtime/engine/deployers/utils/templates/app_main.py.j2,sha256=cgaSFV7_SNu6wfI4myTku1tgBcAgykv9a10QMFGAaSI,2175
77
+ agentscope_runtime/engine/deployers/utils/templates/runner_main.py.j2,sha256=W__KQfZ0qpdQwlkFMpahEVt7HhKnB71dS3R3zNg0hho,2464
78
+ agentscope_runtime/engine/deployers/utils/templates/standalone_main.py.j2,sha256=AfFDaSjM9t7gMgGvhfcQ2vBPusc29rkDHNaPHnbhKas,5621
79
+ agentscope_runtime/engine/helpers/agent_api_builder.py,sha256=mSixBHF9QDro8UNqijq4A5bM7O89z1i2jz42hMAVdio,18779
80
+ agentscope_runtime/engine/helpers/runner.py,sha256=xB9F95nkAxM7J8ZCwPhZSidvD9y4DN_bw3CQOICGZEY,855
81
+ agentscope_runtime/engine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
+ agentscope_runtime/engine/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
+ agentscope_runtime/engine/schemas/agent_schemas.py,sha256=d5wr0814Wcp4oCX46y2f07Vh0z3-_W11zbyorTsa018,26745
84
+ agentscope_runtime/engine/schemas/embedding.py,sha256=yn6VaKPXkze0bvJuaLKzWIOus_AuT-8Z_XRABk4NH60,891
85
+ agentscope_runtime/engine/schemas/modelstudio_llm.py,sha256=mi_1IWjaPq1W4IaVtVtIy-kwfUSFMfWKM3kaPu2KLC4,9803
86
+ agentscope_runtime/engine/schemas/oai_llm.py,sha256=U0lG4phFd5WYRoYomoprW87voaBm7Mm-N0uqfm5e-20,16645
87
+ agentscope_runtime/engine/schemas/realtime.py,sha256=caTRKLfCF9v-tKbdurvqMZ1myM9-ft2UeCNuiUIUmEs,7144
88
+ agentscope_runtime/engine/schemas/response_api.py,sha256=YWR1ZFrVbepdO9ZyLCe09siQoh5qysXGWhvPNq1eTKM,2090
89
+ agentscope_runtime/engine/schemas/session.py,sha256=ctSMlTJHdd2HaJ_6tEOxNDZbLcexxSSiB8YI_vmBviw,627
90
+ agentscope_runtime/engine/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
+ agentscope_runtime/engine/services/base.py,sha256=g2hTc3ivj2MPjnsu5_09m6_MZ3KDHBfiYKu4F2pLA1I,2096
92
+ agentscope_runtime/engine/services/agent_state/__init__.py,sha256=oUtrN53dhf7Hg2hNKxoCBqZOyQ_ltCZH9XdL8QA8i6I,455
93
+ agentscope_runtime/engine/services/agent_state/redis_state_service.py,sha256=mBB2paGiPyp99srmr4F8nCV1b1n3-Uca8H8OXNTvb98,3368
94
+ agentscope_runtime/engine/services/agent_state/state_service.py,sha256=Z7vaZidnU963ldkqCEPTt5MiE5IJGJq0YnMMn5sehQc,5302
95
+ agentscope_runtime/engine/services/memory/__init__.py,sha256=rpuJIxWu6j4IQg1mzLpYLTW__9g40SoyZ3WMXtZXqaE,974
96
+ agentscope_runtime/engine/services/memory/mem0_memory_service.py,sha256=jmiaFncOBAlx-plEcnz8ljck1Pwi0_czWBOSM7JIJnA,3694
97
+ agentscope_runtime/engine/services/memory/memory_service.py,sha256=QNNvG3ccUiWznQfKNTtSbYqqcuoA2IJW_9xmNb1KMQI,8591
98
+ agentscope_runtime/engine/services/memory/redis_memory_service.py,sha256=AdLrvuYH-SsK35XKWJtAXrCPPy5FKeAH7K28XAeiA1U,5709
99
+ agentscope_runtime/engine/services/memory/reme_personal_memory_service.py,sha256=6wbCL5IRJG5GPQqFuy4yN-tARDG30CgKtJ--iKiUowQ,3007
100
+ agentscope_runtime/engine/services/memory/reme_task_memory_service.py,sha256=dLIhWfqKZEeXB1r7f8EKPftL2lk4f60TdlCNdQNolNk,330
101
+ 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
103
+ 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
105
+ agentscope_runtime/engine/services/session_history/redis_session_history_service.py,sha256=rKQEGCWWcIYQ8eixGPf1dv4kMU_Yzp_G7ELuBcdSBJk,5117
106
+ agentscope_runtime/engine/services/session_history/session_history_service.py,sha256=-UHa_OVC8TYPcZcATXE6-pTI0o5dtPwQoVpVi-OjwNE,8476
107
+ agentscope_runtime/engine/services/session_history/tablestore_session_history_service.py,sha256=4PuUC7j7ZROD_cBTVMpmzgea410bnRy4oLu8H7cA2Xg,10160
108
+ 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
110
+ agentscope_runtime/engine/tracing/__init__.py,sha256=yUmXYDqApqGOlZJqJ_jb8TvSYUAUk4VInmNSSiICGoI,1237
111
+ agentscope_runtime/engine/tracing/asyncio_util.py,sha256=aPaOPiLq3YVm6XS_wn8zWK2pK3aHwV0bRwD62pAJ9xQ,685
112
+ agentscope_runtime/engine/tracing/base.py,sha256=Y9rU289wC72Fjax4FeHZP0AzxVwQvFCV6UUogqRRl54,10635
113
+ agentscope_runtime/engine/tracing/local_logging_handler.py,sha256=scx_eJeZHonLYklohmaDAikKerxVrPRlZAUQB2KmNJU,12447
114
+ agentscope_runtime/engine/tracing/message_util.py,sha256=9ldwWNcm6VqAZ04orHOf8namw0I0CEiU5v89fyKEO_c,18551
115
+ agentscope_runtime/engine/tracing/tracing_metric.py,sha256=X1m6yjLx_hnbmozsCxiW9X3t1gWgrKlbsYEfCMqNSx0,2375
116
+ agentscope_runtime/engine/tracing/tracing_util.py,sha256=tzY-vp4k6BzfjHIIpQLrrgswsxQVMiCVMp6gQXFnzDY,3820
117
+ agentscope_runtime/engine/tracing/wrapper.py,sha256=n6x2tDOBmWxO7oobQnjTbi1LBj8joneJgpgelok3oRU,30892
118
+ agentscope_runtime/sandbox/__init__.py,sha256=Rjueu4FRl0ieis-XwHDbW81kopNVudhNRMIso9gAOSo,869
119
+ agentscope_runtime/sandbox/build.py,sha256=RAZkV0rFp24BNmJBZiMYAQ4KafUAELO3V1Ys6Afodwc,8451
120
+ agentscope_runtime/sandbox/constant.py,sha256=NzpxJ1hBDkP9J_c45FsG3iDgBkfEkIlkSKjc4X78tiU,1011
121
+ agentscope_runtime/sandbox/enums.py,sha256=8aAilIiP9Gw4SsPmhsDvGLo7D2ElZ2n0hRCU1TwmCio,1920
122
+ agentscope_runtime/sandbox/mcp_server.py,sha256=UT3aRZqyeHqEhhm-wZ0Ilhew3eDMHzz9DCN6Qb-eKFk,6012
123
+ agentscope_runtime/sandbox/registry.py,sha256=3ukwbTOjSINWH7DIOmG1iPgze5nb-zXl2X8M7_AeBwg,4190
124
+ agentscope_runtime/sandbox/utils.py,sha256=ROKwlCwQqfbBDHVgYNHBLQF5aKYeodanQtkipLHY_cE,3076
125
+ agentscope_runtime/sandbox/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
+ agentscope_runtime/sandbox/box/sandbox.py,sha256=-BWme4Zxx9xWssRXf6KzH3RVueR9MuzcOcN8Gdu7mTg,5309
127
+ agentscope_runtime/sandbox/box/agentbay/__init__.py,sha256=R-KRTawGZwblLBh0ZrXz2ESaV8biE3pLqVXUcLUI1-g,101
128
+ agentscope_runtime/sandbox/box/agentbay/agentbay_sandbox.py,sha256=id19HKUq2RFDZHW90UlGj74ZKkknbK5juL1w4qniC0g,17827
129
+ agentscope_runtime/sandbox/box/base/__init__.py,sha256=a68IgljSWvNn1mWaCOeEm2C-7Gf7JiUdDnJpBfID198,89
130
+ agentscope_runtime/sandbox/box/base/base_sandbox.py,sha256=H0MGEVpM9q6a7Ts2EfslNfWgeGuBUtL8ISvAkv34zQA,1323
131
+ agentscope_runtime/sandbox/box/base/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
+ agentscope_runtime/sandbox/box/browser/__init__.py,sha256=thrkAvtLQ23jR8sM_bSsfmsqFiwpExgh72vnrVUcweQ,98
133
+ agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=oCDD2cp9Mc7mTDi6gFXPlH7jjpOGnxBBlai5JGiJQIc,9380
134
+ agentscope_runtime/sandbox/box/browser/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
+ agentscope_runtime/sandbox/box/cloud/__init__.py,sha256=eydrq0JZ55M6WQry4E0N-By7P-3NnrXS1GwBYWbIovk,92
136
+ agentscope_runtime/sandbox/box/cloud/cloud_sandbox.py,sha256=y5lh5C3UqgzHUmkb_VqQ7627653r2MZ7YLmxLna-Htw,7660
137
+ agentscope_runtime/sandbox/box/dummy/__init__.py,sha256=RErHmUx7hFXX69nohtYBS_QSHEWENZHZbWG3434ZDls,92
138
+ agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py,sha256=KAsCEbgZu48qklNMWLd7yPCb7TP1RPFXVi8CQ9Z-kPo,705
139
+ agentscope_runtime/sandbox/box/filesystem/__init__.py,sha256=OsYCqFfattl6y5M55XMwHTeXVnb-pL3cWMJKjTZIu-s,107
140
+ agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py,sha256=ORxCMAd32rs5BOBosyp7bYm2izwxvL2-h1YUziNl2cU,4834
141
+ agentscope_runtime/sandbox/box/filesystem/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
+ agentscope_runtime/sandbox/box/gui/__init__.py,sha256=-tzNU2yYdKjXD83PlNaMtsu5nqO1yBi2LDevIda2eqo,108
143
+ agentscope_runtime/sandbox/box/gui/gui_sandbox.py,sha256=UkVGcOX0naQZmxf2T6ltPIQ_FBL2YRZKfX5Iks6HoXY,5204
144
+ agentscope_runtime/sandbox/box/gui/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
+ agentscope_runtime/sandbox/box/mobile/__init__.py,sha256=x9eL7XEw9oAZIzKr-_6UFbtkfTvfmXJ57Lmc4rXMyv0,95
146
+ agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py,sha256=rGYut8X5AOUrxmQcHtv0xRBgvMGAFUPtniGkneqCovQ,7892
147
+ agentscope_runtime/sandbox/box/mobile/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
+ agentscope_runtime/sandbox/box/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
+ agentscope_runtime/sandbox/box/shared/app.py,sha256=bw6l0XPVF86yuh0jO_Sx9S-B-luFE3U3lIb6Qjc3dGU,1107
150
+ agentscope_runtime/sandbox/box/shared/dependencies/__init__.py,sha256=e1x-6L6vsBbQBrtjrDsdK8eqk-lCqxOIPrSqWyxoG50,98
151
+ agentscope_runtime/sandbox/box/shared/dependencies/deps.py,sha256=pavJWhin5Dbc1f452PDNaCYo9RkK-y95dwLyYZQMOPQ,687
152
+ agentscope_runtime/sandbox/box/shared/routers/__init__.py,sha256=QokVfRhfBftiXktqpn3iqdKcSz7TcSn-4Kbf4QhOUXs,273
153
+ agentscope_runtime/sandbox/box/shared/routers/generic.py,sha256=5hIwNPpC2Pu4uTqKWGcymBKXdKqbYEsyOYD4Vv7XR44,5164
154
+ 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
156
+ agentscope_runtime/sandbox/box/shared/routers/runtime_watcher.py,sha256=v4jAGYtJaYsRJaSTv7e7hmDLHWVAtJqnSnpPq-kFcmU,5344
157
+ agentscope_runtime/sandbox/box/shared/routers/workspace.py,sha256=cQMbWNQG7ojHZfWN0xFqEivhlpQO4qEDo3amkhVHUBg,9748
158
+ agentscope_runtime/sandbox/box/training_box/__init__.py,sha256=vG2MQviqdmIUSjHmHiC5N_kiHinMnvOdjwW0AUdfZ3Y,125
159
+ agentscope_runtime/sandbox/box/training_box/base.py,sha256=iUPsfA8oiGDR3BMVU7qisvO-UT8HtCx78ayW67DQ0WQ,3307
160
+ agentscope_runtime/sandbox/box/training_box/env_service.py,sha256=YoMswhQrX8VmE202tpFq-bQo6gOd2oemBhTG_MD9Rwg,22616
161
+ agentscope_runtime/sandbox/box/training_box/registry.py,sha256=6fTMZvJbakhEqkaO61K-wIfX6uau7g4nFP63bQ7jiNI,1362
162
+ agentscope_runtime/sandbox/box/training_box/training_box.py,sha256=SFQ5m0eLuLA4s8ZdiTMXl6LsrecBuo44VMhnzDYGw4o,8829
163
+ agentscope_runtime/sandbox/box/training_box/environments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
+ agentscope_runtime/sandbox/box/training_box/environments/appworld/appworld_env.py,sha256=FJc0eb6bnKL6lxx_4EKWr7kmKLi2jLsykNstecXEqkc,27786
165
+ agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_dataprocess.py,sha256=jkg8wDwDXdZZU7q777tnyqc-C9hRlPF0pffJ4DX5upQ,7352
166
+ agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_env.py,sha256=22hfq1yO5abZocG8FfaabCXD4HGg-RT_8AY1dHbtvxM,11878
167
+ agentscope_runtime/sandbox/box/training_box/environments/bfcl/env_handler.py,sha256=T-W9w4nKI7_BXgF9caqV3KMeX5d6yvdfhQu0o2oWTUE,30114
168
+ agentscope_runtime/sandbox/box/training_box/src/trajectory.py,sha256=cFr3uVUPq5gHKPa6ALi7QCLBVkgYOyPgyJrOzgBHf3k,7885
169
+ agentscope_runtime/sandbox/client/__init__.py,sha256=KiNsTToc1jICqCC1BcH762jZgHuOkCPiG32oXGo6dQE,176
170
+ agentscope_runtime/sandbox/client/http_client.py,sha256=ffP2jqWfBbHzbms-S1D9jDIDZZ-6r54Y-XEK4FuDIP4,18010
171
+ agentscope_runtime/sandbox/client/training_client.py,sha256=WIhGBib2IWQZwUoSJUn8kuIGrtd6Yz3VOxCh0tft630,7625
172
+ agentscope_runtime/sandbox/custom/__init__.py,sha256=wpu0DlzdLohYzOVM9yZloIWid3w_ME6dPtOjCZKbRZ8,463
173
+ agentscope_runtime/sandbox/custom/custom_sandbox.py,sha256=ZKE7otTimLZ2-ZV9PMVLRA6P1hH0a4fT-d_K4Ga59og,1008
174
+ agentscope_runtime/sandbox/custom/example.py,sha256=iU5G7Vb-oq3wsJ_Kl8oFAwi0HNbt5V_8fWAAyiQ8RuY,964
175
+ agentscope_runtime/sandbox/manager/__init__.py,sha256=KNHc1uDaUWBH_ZnWjH5NHRBiQM_zDyi9B2xKVNtAWIg,98
176
+ agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=S89Ho6QhCHVT79oYiwgKmFOUiwXRL-z8FJDgMPzojJs,28016
177
+ agentscope_runtime/sandbox/manager/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
+ agentscope_runtime/sandbox/manager/server/app.py,sha256=Qa6443dBuqg41hslqw14SsN7UPQJ-CqI3z5DU5Xpf3c,13641
179
+ agentscope_runtime/sandbox/manager/server/config.py,sha256=yXiricKpA_r2zoMF7YpRgIxtJck89rzN9iwaVVLhK60,4451
180
+ agentscope_runtime/sandbox/manager/server/models.py,sha256=rCibF0HsotFcqsQVTSUoOTJCFQU3oqKvpOiWMWIRLyY,304
181
+ agentscope_runtime/sandbox/manager/storage/__init__.py,sha256=jGmpfXV1E2X7AqkGeF1xu1EHiSTvbH3TSIviLbKBFh4,210
182
+ agentscope_runtime/sandbox/manager/storage/data_storage.py,sha256=mGwf7LYbp_fRjLN9BZay6cm3eNziEdU6OlSBeFnIBMQ,475
183
+ agentscope_runtime/sandbox/manager/storage/local_storage.py,sha256=o6fkV-yUtBihhfZtLEdBUhF1K8_psSl92AWJFtYQxtk,1521
184
+ agentscope_runtime/sandbox/manager/storage/oss_storage.py,sha256=fIUxgOkOaH_1vlgWBnCM-e4UvD3xS_ycFe2yvSyXzBE,2970
185
+ agentscope_runtime/sandbox/model/__init__.py,sha256=WoDOSD_67T-UkZdXOtJzwG4-0E8ABwUBJF6WSCs_sO0,182
186
+ agentscope_runtime/sandbox/model/api.py,sha256=Sjxw6DHkGa8Sp5dUU5kaajkHPj7eiX1EgFZk-zOPafM,400
187
+ agentscope_runtime/sandbox/model/container.py,sha256=f7dj4ir4sxXjZ_zm4iEkjskraacZLX2SR_l1WSl0FOo,1405
188
+ agentscope_runtime/sandbox/model/manager_config.py,sha256=YbXYgv_R03QcJb9aqU3fXDoHVAPk0R1SaY8uYVSmZRU,10371
189
+ agentscope_runtime/tools/__init__.py,sha256=YdRrEv_DTUEdgSSTSURYObrbv_CTe9QqJpmbpTelFuI,3660
190
+ agentscope_runtime/tools/_constants.py,sha256=DFjHNMaAkX__104b8_cyn6-nLuoJ3eVOr3wMpNBY-EA,525
191
+ agentscope_runtime/tools/base.py,sha256=InY9_1Ys9eVA5UgZ8aQM_IEFI9BFNZt3PZlhUNskjLg,7759
192
+ agentscope_runtime/tools/mcp_wrapper.py,sha256=sWHXY7fhXZajNpA-61rsNAFgyvy8Y2nXvr2lJ5AP9YY,8032
193
+ agentscope_runtime/tools/RAGs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
+ agentscope_runtime/tools/RAGs/modelstudio_rag.py,sha256=jp6xxU5y2pxVkfSstUHPEnIB3UTH_AgVF0vf4oYXpjQ,12749
195
+ agentscope_runtime/tools/RAGs/modelstudio_rag_lite.py,sha256=m33ckuXN7xOvvArO7N8I8vuyRuflXq2mJJgPVoIhApY,7150
196
+ agentscope_runtime/tools/alipay/__init__.py,sha256=I4aav316pa07IAw__Qh1bWnDLky2cAWWvmQOKHqtbLk,92
197
+ agentscope_runtime/tools/alipay/base.py,sha256=zr6R4Aip_Eko0tGvt8joFj2C5lAA7UTmtfo-CyjaCjk,10670
198
+ agentscope_runtime/tools/alipay/payment.py,sha256=rWnms98szrEfttPwKpeo-u_4eFD4Myk86LobNZZJ2eg,29157
199
+ agentscope_runtime/tools/alipay/subscribe.py,sha256=gJenFuM0YJwhyKM_CGTmzvqIY_LMtGVk9wCuBK8ckNM,17962
200
+ agentscope_runtime/tools/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
+ agentscope_runtime/tools/cli/modelstudio_mcp_server.py,sha256=o_5SEKIF6d6IuDNM2AYiHyo-Qi7Tc9P166ZffZydLvY,2044
202
+ agentscope_runtime/tools/generations/__init__.py,sha256=X9IprWTGvtGa6rygUOj615-s92zsslb-M-Q6234RqL4,1697
203
+ agentscope_runtime/tools/generations/async_image_to_video.py,sha256=675xCB-BL-seXBZyqPy24XsY4fSo5l3uEsKPlXA778Q,11741
204
+ agentscope_runtime/tools/generations/async_image_to_video_wan25.py,sha256=LLtjaBmkyHQPpGxlKxLC1BAc-J4QxDmrrAenGwr5hXs,12473
205
+ agentscope_runtime/tools/generations/async_speech_to_video.py,sha256=X1xrL8gASfIHDGmL5cthXJZLmaIXteMe3mgbyBrxXvE,13676
206
+ agentscope_runtime/tools/generations/async_text_to_video.py,sha256=DTC2qmriB_1p2SFOs7ZUTbfPSNu0TUI8oWXL_Uu6Nvw,10348
207
+ agentscope_runtime/tools/generations/async_text_to_video_wan25.py,sha256=glNAP4tL-88NQrjA6NF04Wbx8a-dbh185VATXY-IkH0,11067
208
+ agentscope_runtime/tools/generations/image_edit.py,sha256=rZ2E2k3Zgm8TUjZ_q9Wm7QlRd4muYfEFrHB5Hg_SQdE,7203
209
+ agentscope_runtime/tools/generations/image_edit_wan25.py,sha256=yEomon7QSx3z43MBWg-AlRhTLGMd7IeNjIS62RUThEE,6477
210
+ agentscope_runtime/tools/generations/image_generation.py,sha256=24Du_043oB5tVxQcO1nzYFSYbGeHTP9yNw-FfCDjJQs,6890
211
+ agentscope_runtime/tools/generations/image_generation_wan25.py,sha256=yP4496X_qWo8oPYZsMcJ7HjSAlf_94z08Ds87ut7sm0,6845
212
+ agentscope_runtime/tools/generations/image_style_repaint.py,sha256=I4yZAQQ5QwYixfblm7-5yutiqHEpQ3qDYzu8LbYejgw,6810
213
+ agentscope_runtime/tools/generations/image_to_video.py,sha256=D1VukdekSIWGI12FDEBquMAFPJ3XO_60V60ssIOgaUg,8006
214
+ agentscope_runtime/tools/generations/qwen_image_edit.py,sha256=CLwik07ZwFrjJDqDPu4UrSdhmwYumJeWM5IYogI55GA,7130
215
+ agentscope_runtime/tools/generations/qwen_image_generation.py,sha256=_C1BuuaUbXSM1DJPGvgeWCfTouOSCi6OsajHRUismGA,7420
216
+ agentscope_runtime/tools/generations/qwen_text_to_speech.py,sha256=jgxOUqO_JM280o6ORBWxhFHjNKl6xcFzyaKtxRGDmKM,4607
217
+ agentscope_runtime/tools/generations/speech_to_text.py,sha256=1X4b8kc9UEhxYEA0wmkubd6qGwVDQwO6rUBbl0tmPRM,9371
218
+ agentscope_runtime/tools/generations/speech_to_video.py,sha256=rHqTszP_g6C1OJCZPmj7quX0E0yL-xUZNlEBp6-Jfb4,10519
219
+ agentscope_runtime/tools/generations/text_to_video.py,sha256=fvW6HsoJUERW9uKOFnzWZ6dJsivGwfpV3IMfF48OhSI,7516
220
+ agentscope_runtime/tools/realtime_clients/__init__.py,sha256=fOK8KH0gSTYS8Kwz6OC94nwYjMb4pEhADsvq8iiVA-Q,394
221
+ agentscope_runtime/tools/realtime_clients/asr_client.py,sha256=hTMKRNvoBnw0X-G4pVY-9ec9aHgB0_bImkb-T_FT7Pk,605
222
+ agentscope_runtime/tools/realtime_clients/azure_asr_client.py,sha256=w5PzBO5SpIfy4759ZmejHM4ZCsAYhKHQTreQM_lAvJQ,6960
223
+ agentscope_runtime/tools/realtime_clients/azure_tts_client.py,sha256=EO31gE38xtSHIovGP1_5QALMBP_BL3cBwLG8i5YSNQQ,12805
224
+ agentscope_runtime/tools/realtime_clients/modelstudio_asr_client.py,sha256=B5A9LrwpQ25CUZA5WFVrYX3Jo0rQCcejv-sj4U21btM,4408
225
+ agentscope_runtime/tools/realtime_clients/modelstudio_tts_client.py,sha256=-IrYaWfn6CMwHEcaehPmRQdEgCUX4mOrGzOHmC8oCbI,6149
226
+ agentscope_runtime/tools/realtime_clients/realtime_tool.py,sha256=Xld4ahM35hgHuXJAR-sRnAuWyCdJHZsn-5RvunIWg0g,1100
227
+ agentscope_runtime/tools/realtime_clients/tts_client.py,sha256=FYZqHocvmrNUjv_3m9Pi71i1A2yz_DdltBwwQUuuV2o,780
228
+ agentscope_runtime/tools/searches/__init__.py,sha256=WH2kWbhWm1mMXtbMLMvQqUssV1gQUNAu2ZWtoeWyScw,97
229
+ agentscope_runtime/tools/searches/modelstudio_search.py,sha256=anvmXEsfmVZmBmyes05q-5_6s--zsmTqNonKvVPOl7o,34398
230
+ agentscope_runtime/tools/searches/modelstudio_search_lite.py,sha256=OPmRh9hCwTWvjUPEK1oqUTCWZFgReCoivwtGhpFnJHU,9775
231
+ agentscope_runtime/tools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
+ agentscope_runtime/tools/utils/api_key_util.py,sha256=xIIUsvWgSt4etgYP7lS0WnqVIhZ-REzrBLwzAT-TrVI,1210
233
+ agentscope_runtime/tools/utils/crypto_utils.py,sha256=Wqq4cn3FHQge-2Q1zGSMUyKh4V4A2baiZm8ZNhMqhPo,3382
234
+ agentscope_runtime/tools/utils/mcp_util.py,sha256=n3GGKBEQPJ-fiNXdYnBx_90GVKWvm9eaNbR2G0q2lOw,905
235
+ agentscope_runtime-1.0.0b1.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
236
+ agentscope_runtime-1.0.0b1.dist-info/METADATA,sha256=mdCU34pRctP839liDy3SSYTm3mc_r1ytuTDrmhjbk94,35222
237
+ agentscope_runtime-1.0.0b1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
238
+ agentscope_runtime-1.0.0b1.dist-info/entry_points.txt,sha256=iYzbpqpPc42a0HzEZ9JR96jlPOXND7Wg2XFJheRg2oo,380
239
+ agentscope_runtime-1.0.0b1.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
240
+ agentscope_runtime-1.0.0b1.dist-info/RECORD,,
@@ -1,4 +1,5 @@
1
1
  [console_scripts]
2
+ modelstudio-mcp-server = agentscope_runtime.tools.cli.modelstudio_mcp_server:main
2
3
  runtime-fc-deploy = agentscope_runtime.engine.deployers.cli_fc_deploy:main
3
4
  runtime-sandbox-builder = agentscope_runtime.sandbox.build:main
4
5
  runtime-sandbox-mcp = agentscope_runtime.sandbox.mcp_server:main
@@ -1,2 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- from .base_agent import Agent