agentscope-runtime 0.1.6__py3-none-any.whl → 0.2.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 (87) hide show
  1. agentscope_runtime/common/container_clients/__init__.py +0 -0
  2. agentscope_runtime/{sandbox/manager → common}/container_clients/kubernetes_client.py +546 -6
  3. agentscope_runtime/engine/__init__.py +12 -0
  4. agentscope_runtime/engine/agents/agentscope_agent.py +130 -10
  5. agentscope_runtime/engine/agents/agno_agent.py +8 -10
  6. agentscope_runtime/engine/agents/langgraph_agent.py +52 -9
  7. agentscope_runtime/engine/app/__init__.py +6 -0
  8. agentscope_runtime/engine/app/agent_app.py +239 -0
  9. agentscope_runtime/engine/app/base_app.py +181 -0
  10. agentscope_runtime/engine/app/celery_mixin.py +92 -0
  11. agentscope_runtime/engine/deployers/__init__.py +13 -0
  12. agentscope_runtime/engine/deployers/adapter/responses/__init__.py +0 -0
  13. agentscope_runtime/engine/deployers/adapter/responses/response_api_adapter_utils.py +2890 -0
  14. agentscope_runtime/engine/deployers/adapter/responses/response_api_agent_adapter.py +51 -0
  15. agentscope_runtime/engine/deployers/adapter/responses/response_api_protocol_adapter.py +314 -0
  16. agentscope_runtime/engine/deployers/base.py +1 -0
  17. agentscope_runtime/engine/deployers/cli_fc_deploy.py +203 -0
  18. agentscope_runtime/engine/deployers/kubernetes_deployer.py +272 -0
  19. agentscope_runtime/engine/deployers/local_deployer.py +414 -501
  20. agentscope_runtime/engine/deployers/modelstudio_deployer.py +838 -0
  21. agentscope_runtime/engine/deployers/utils/__init__.py +0 -0
  22. agentscope_runtime/engine/deployers/utils/deployment_modes.py +14 -0
  23. agentscope_runtime/engine/deployers/utils/docker_image_utils/__init__.py +8 -0
  24. agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py +429 -0
  25. agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py +240 -0
  26. agentscope_runtime/engine/deployers/utils/docker_image_utils/runner_image_factory.py +306 -0
  27. agentscope_runtime/engine/deployers/utils/package_project_utils.py +1163 -0
  28. agentscope_runtime/engine/deployers/utils/service_utils/__init__.py +9 -0
  29. agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py +1064 -0
  30. agentscope_runtime/engine/deployers/utils/service_utils/fastapi_templates.py +157 -0
  31. agentscope_runtime/engine/deployers/utils/service_utils/process_manager.py +268 -0
  32. agentscope_runtime/engine/deployers/utils/service_utils/service_config.py +75 -0
  33. agentscope_runtime/engine/deployers/utils/service_utils/service_factory.py +220 -0
  34. agentscope_runtime/engine/deployers/utils/service_utils/standalone_main.py.j2 +211 -0
  35. agentscope_runtime/engine/deployers/utils/wheel_packager.py +389 -0
  36. agentscope_runtime/engine/helpers/agent_api_builder.py +651 -0
  37. agentscope_runtime/engine/runner.py +76 -35
  38. agentscope_runtime/engine/schemas/agent_schemas.py +112 -2
  39. agentscope_runtime/engine/schemas/embedding.py +37 -0
  40. agentscope_runtime/engine/schemas/modelstudio_llm.py +310 -0
  41. agentscope_runtime/engine/schemas/oai_llm.py +538 -0
  42. agentscope_runtime/engine/schemas/realtime.py +254 -0
  43. agentscope_runtime/engine/services/tablestore_memory_service.py +4 -1
  44. agentscope_runtime/engine/tracing/__init__.py +9 -3
  45. agentscope_runtime/engine/tracing/asyncio_util.py +24 -0
  46. agentscope_runtime/engine/tracing/base.py +66 -34
  47. agentscope_runtime/engine/tracing/local_logging_handler.py +45 -31
  48. agentscope_runtime/engine/tracing/message_util.py +528 -0
  49. agentscope_runtime/engine/tracing/tracing_metric.py +20 -8
  50. agentscope_runtime/engine/tracing/tracing_util.py +130 -0
  51. agentscope_runtime/engine/tracing/wrapper.py +794 -169
  52. agentscope_runtime/sandbox/box/base/base_sandbox.py +2 -1
  53. agentscope_runtime/sandbox/box/browser/browser_sandbox.py +2 -1
  54. agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py +2 -1
  55. agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py +2 -1
  56. agentscope_runtime/sandbox/box/gui/gui_sandbox.py +2 -1
  57. agentscope_runtime/sandbox/box/training_box/training_box.py +0 -42
  58. agentscope_runtime/sandbox/client/http_client.py +52 -18
  59. agentscope_runtime/sandbox/constant.py +3 -0
  60. agentscope_runtime/sandbox/custom/custom_sandbox.py +2 -1
  61. agentscope_runtime/sandbox/custom/example.py +2 -1
  62. agentscope_runtime/sandbox/enums.py +0 -1
  63. agentscope_runtime/sandbox/manager/sandbox_manager.py +29 -22
  64. agentscope_runtime/sandbox/model/container.py +6 -0
  65. agentscope_runtime/sandbox/registry.py +1 -1
  66. agentscope_runtime/sandbox/tools/tool.py +4 -0
  67. agentscope_runtime/version.py +1 -1
  68. {agentscope_runtime-0.1.6.dist-info → agentscope_runtime-0.2.0.dist-info}/METADATA +103 -59
  69. {agentscope_runtime-0.1.6.dist-info → agentscope_runtime-0.2.0.dist-info}/RECORD +87 -52
  70. {agentscope_runtime-0.1.6.dist-info → agentscope_runtime-0.2.0.dist-info}/entry_points.txt +1 -0
  71. /agentscope_runtime/{sandbox/manager/container_clients → common}/__init__.py +0 -0
  72. /agentscope_runtime/{sandbox/manager → common}/collections/__init__.py +0 -0
  73. /agentscope_runtime/{sandbox/manager → common}/collections/base_mapping.py +0 -0
  74. /agentscope_runtime/{sandbox/manager → common}/collections/base_queue.py +0 -0
  75. /agentscope_runtime/{sandbox/manager → common}/collections/base_set.py +0 -0
  76. /agentscope_runtime/{sandbox/manager → common}/collections/in_memory_mapping.py +0 -0
  77. /agentscope_runtime/{sandbox/manager → common}/collections/in_memory_queue.py +0 -0
  78. /agentscope_runtime/{sandbox/manager → common}/collections/in_memory_set.py +0 -0
  79. /agentscope_runtime/{sandbox/manager → common}/collections/redis_mapping.py +0 -0
  80. /agentscope_runtime/{sandbox/manager → common}/collections/redis_queue.py +0 -0
  81. /agentscope_runtime/{sandbox/manager → common}/collections/redis_set.py +0 -0
  82. /agentscope_runtime/{sandbox/manager → common}/container_clients/agentrun_client.py +0 -0
  83. /agentscope_runtime/{sandbox/manager → common}/container_clients/base_client.py +0 -0
  84. /agentscope_runtime/{sandbox/manager → common}/container_clients/docker_client.py +0 -0
  85. {agentscope_runtime-0.1.6.dist-info → agentscope_runtime-0.2.0.dist-info}/WHEEL +0 -0
  86. {agentscope_runtime-0.1.6.dist-info → agentscope_runtime-0.2.0.dist-info}/licenses/LICENSE +0 -0
  87. {agentscope_runtime-0.1.6.dist-info → agentscope_runtime-0.2.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentscope-runtime
3
- Version: 0.1.6
3
+ Version: 0.2.0
4
4
  Summary: A production-ready runtime framework for agent applications, providing secure sandboxed execution environments and scalable deployment solutions with multi-framework support.
5
5
  Requires-Python: >=3.10
6
6
  Description-Content-Type: text/markdown
@@ -19,21 +19,22 @@ Requires-Dist: pydantic-settings>=2.9.1
19
19
  Requires-Dist: python-dotenv>=1.0.1
20
20
  Requires-Dist: kubernetes>=33.1.0
21
21
  Requires-Dist: shortuuid>=1.0.13
22
+ Requires-Dist: celery[redis]>=5.3.1
23
+ Requires-Dist: a2a-sdk>=0.3.0
22
24
  Provides-Extra: dev
23
25
  Requires-Dist: pytest>=8.3.5; extra == "dev"
24
26
  Requires-Dist: pytest-asyncio>=0.23.0; extra == "dev"
25
27
  Requires-Dist: pre-commit>=4.2.0; extra == "dev"
26
- Requires-Dist: jupyter-book>=1.0.4.post1; extra == "dev"
28
+ Requires-Dist: jupyter-book<2.0.0,>=1.0.4.post1; extra == "dev"
27
29
  Requires-Dist: furo>=2025.7.19; extra == "dev"
28
30
  Requires-Dist: pytest-cov>=6.2.1; extra == "dev"
29
31
  Requires-Dist: fakeredis>=2.31.0; extra == "dev"
30
32
  Requires-Dist: sphinx-autoapi>=3.6.0; extra == "dev"
33
+ Requires-Dist: pytest-mock>=3.15.1; extra == "dev"
31
34
  Provides-Extra: langgraph
32
35
  Requires-Dist: langgraph>=0.5.3; extra == "langgraph"
33
36
  Provides-Extra: agno
34
- Requires-Dist: agno<2.0.0,>=1.7.5; extra == "agno"
35
- Provides-Extra: a2a
36
- Requires-Dist: a2a-sdk>=0.3.0; extra == "a2a"
37
+ Requires-Dist: agno>=2.0.0; extra == "agno"
37
38
  Provides-Extra: autogen
38
39
  Requires-Dist: autogen-agentchat>=0.7.4; extra == "autogen"
39
40
  Requires-Dist: autogen-ext[openai]>=0.7.4; extra == "autogen"
@@ -61,12 +62,26 @@ Requires-Dist: langchain-community>=0.3.27; extra == "aliyun-tablestore-ext"
61
62
  Provides-Extra: memory-ext
62
63
  Requires-Dist: reme-ai==0.1.9; python_full_version >= "3.12" and extra == "memory-ext"
63
64
  Requires-Dist: mem0ai>=0.1.117; extra == "memory-ext"
65
+ Provides-Extra: deployment
66
+ Requires-Dist: alibabacloud-oss-v2; extra == "deployment"
67
+ Requires-Dist: alibabacloud-bailian20231229>=2.6.0; extra == "deployment"
68
+ Requires-Dist: build; extra == "deployment"
69
+ Requires-Dist: setuptools>=40.8.0; extra == "deployment"
70
+ Requires-Dist: wheel; extra == "deployment"
71
+ Requires-Dist: steel-sdk>=0.1.0; extra == "deployment"
72
+ Requires-Dist: alibabacloud-credentials; extra == "deployment"
73
+ Requires-Dist: jinja2; extra == "deployment"
74
+ Requires-Dist: psutil; extra == "deployment"
75
+ Requires-Dist: shortuuid>=1.0.13; extra == "deployment"
76
+ Requires-Dist: PyYAML; extra == "deployment"
77
+ Requires-Dist: oss2>=2.19.1; extra == "deployment"
64
78
  Dynamic: license-file
65
79
 
66
80
  <div align="center">
67
81
 
68
82
  # AgentScope Runtime
69
83
 
84
+ [![GitHub Repo](https://img.shields.io/badge/GitHub-Repo-black.svg?logo=github)](https://github.com/agentscope-ai/agentscope-runtime)
70
85
  [![PyPI](https://img.shields.io/pypi/v/agentscope-runtime?label=PyPI&color=brightgreen&logo=python)](https://pypi.org/project/agentscope-runtime/)
71
86
  [![Downloads](https://static.pepy.tech/badge/agentscope-runtime)](https://pepy.tech/project/agentscope-runtime)
72
87
  [![Python Version](https://img.shields.io/badge/python-3.10%2B-blue.svg?logo=python&label=Python)](https://python.org)
@@ -96,6 +111,7 @@ Dynamic: license-file
96
111
 
97
112
  ## 🆕 NEWS
98
113
 
114
+ * **[2025-10]** We released `v0.2.0` — introducing **`AgentApp` API server support**, enabling easy use of agent applications and custom API endpoints through synchronous, asynchronous, and streaming interfaces. Check our [cookbook](https://runtime.agentscope.io/en/agent_app.html) for more details.
99
115
  * **[2025-10]** **GUI Sandbox** is added with support for virtual desktop environments, mouse, keyboard, and screen operations. Introduced the **`desktop_url`** property for GUI Sandbox, Browser Sandbox, and Filesystem Sandbox — allowing direct access to the virtual desktop via your browser. Check our [cookbook](https://runtime.agentscope.io/en/sandbox.html#sandbox-usage) for more details.
100
116
 
101
117
  ---
@@ -160,61 +176,63 @@ cd agentscope-runtime
160
176
  pip install -e .
161
177
  ```
162
178
 
163
- ### Basic Agent Usage Example
179
+ ### Basic Agent App Example
164
180
 
165
- This example demonstrates how to create an agentscope agent using AgentScope Runtime and
166
- stream responses from the Qwen model.
181
+ This example demonstrates how to create an agent API server using agentscope `ReActAgent` and `AgentApp`. The server will process your input and return streaming agent-generated responses.
167
182
 
168
183
 
169
184
  ```python
170
- import asyncio
171
185
  import os
172
186
 
173
- from agentscope_runtime.engine import Runner
187
+ from agentscope_runtime.engine import AgentApp
174
188
  from agentscope_runtime.engine.agents.agentscope_agent import AgentScopeAgent
175
- from agentscope_runtime.engine.schemas.agent_schemas import AgentRequest
176
- from agentscope_runtime.engine.services.context_manager import ContextManager
177
189
 
178
190
  from agentscope.agent import ReActAgent
179
191
  from agentscope.model import OpenAIChatModel
180
192
 
181
- async def main():
182
- # Set up the language model and agent
183
- agent = AgentScopeAgent(
184
- name="Friday",
185
- model=OpenAIChatModel(
186
- "gpt-4",
187
- api_key=os.getenv("OPENAI_API_KEY"),
188
- ),
189
- agent_config={
190
- "sys_prompt": "You're a helpful assistant named Friday.",
191
- },
192
- agent_builder=ReActAgent,
193
- )
194
- async with ContextManager() as context_manager:
195
- runner = Runner(agent=agent, context_manager=context_manager)
196
-
197
- # Create a request and stream the response
198
- request = AgentRequest(
199
- input=[
200
- {
201
- "role": "user",
202
- "content": [
203
- {
204
- "type": "text",
205
- "text": "What is the capital of France?",
206
- },
207
- ],
208
- },
209
- ],
210
- )
211
-
212
- async for message in runner.stream_query(request=request):
213
- if hasattr(message, "text"):
214
- print(f"Streamed Answer: {message.text}")
215
-
216
-
217
- asyncio.run(main())
193
+
194
+ agent = AgentScopeAgent(
195
+ name="Friday",
196
+ model=OpenAIChatModel(
197
+ "gpt-4",
198
+ api_key=os.getenv("OPENAI_API_KEY"),
199
+ ),
200
+ agent_config={
201
+ "sys_prompt": "You're a helpful assistant named Friday.",
202
+ },
203
+ agent_builder=ReActAgent, # Or use your own agent builder
204
+ )
205
+ app = AgentApp(agent=agent, endpoint_path="/process")
206
+
207
+ app.run(host="0.0.0.0", port=8090)
208
+ ```
209
+
210
+ The server will start and listen on: `http://localhost:8090/process`. You can send JSON input to the API using `curl`:
211
+
212
+ ```bash
213
+ curl -N \
214
+ -X POST "http://localhost:8090/process" \
215
+ -H "Content-Type: application/json" \
216
+ -d '{
217
+ "input": [
218
+ {
219
+ "role": "user",
220
+ "content": [
221
+ { "type": "text", "text": "What is the capital of France?" }
222
+ ]
223
+ }
224
+ ]
225
+ }'
226
+ ```
227
+
228
+ You’ll see output streamed in **Server-Sent Events (SSE)** format:
229
+
230
+ ```bash
231
+ data: {"sequence_number":0,"object":"response","status":"created", ... }
232
+ data: {"sequence_number":1,"object":"response","status":"in_progress", ... }
233
+ data: {"sequence_number":2,"object":"content","status":"in_progress","text":"The" }
234
+ data: {"sequence_number":3,"object":"content","status":"in_progress","text":" capital of France is Paris." }
235
+ data: {"sequence_number":4,"object":"message","status":"completed","text":"The capital of France is Paris." }
218
236
  ```
219
237
 
220
238
  ### Basic Sandbox Usage Example
@@ -354,7 +372,7 @@ agentscope-registry.ap-southeast-1.cr.aliyuncs.com/agentscope/runtime-sandbox-ba
354
372
 
355
373
  ---
356
374
 
357
- ## 🔌 Agent Framework Integration
375
+ ## 🔌 Other Agent Framework Integration
358
376
 
359
377
  ### Agno Integration
360
378
 
@@ -439,25 +457,45 @@ agent = LangGraphAgent(graph=compiled_graph)
439
457
 
440
458
  ## 🏗️ Deployment
441
459
 
442
- The agent runner exposes a `deploy` method that takes a `DeployManager` instance and deploys the agent. The service port is set as the parameter `port` when creating the `LocalDeployManager`. The service endpoint path is set as the parameter `endpoint_path` when deploying the agent. In this example, we set the endpoint path to `/process`. After deployment, you can access the service at `http://localhost:8090/process`.
460
+ The app exposes a `deploy` method that takes a `DeployManager` instance and deploys the agent.
461
+ The service port is set as the parameter `port` when creating the `LocalDeployManager`.
462
+ The service endpoint path is set as the parameter `endpoint_path` when deploying the agent.
463
+
464
+ The deployer will automatically add common agent protocols, such as **A2A**, **Response API** based on the default endpoint `/process`.
465
+
466
+ In this example, we set the endpoint path to `/process`,
467
+ after deployment, users can access the service at `http://localhost:8090/process`, and can also access the service from OpenAI SDK by Response API.
443
468
 
444
469
  ```python
445
470
  from agentscope_runtime.engine.deployers import LocalDeployManager
446
471
 
447
472
  # Create deployment manager
448
- deploy_manager = LocalDeployManager(
449
- host="localhost",
473
+ deployer = LocalDeployManager(
474
+ host="0.0.0.0",
450
475
  port=8090,
451
476
  )
452
477
 
453
- # Deploy the agent as a streaming service
454
- deploy_result = await runner.deploy(
455
- deploy_manager=deploy_manager,
456
- endpoint_path="/process",
457
- stream=True, # Enable streaming responses
478
+ # Deploy the app as a streaming service
479
+ deploy_result = await app.deploy(deployer=deployer)
480
+
481
+ ```
482
+
483
+ Then user could query the deployment by OpenAI SDK.
484
+
485
+ ```python
486
+ from openai import OpenAI
487
+
488
+ client = OpenAI(base_url="http://0.0.0.0:8090/compatible-mode/v1")
489
+
490
+ response = client.responses.create(
491
+ model="any_name",
492
+ input="What is the weather in Beijing?"
458
493
  )
494
+
495
+ print(response)
459
496
  ```
460
497
 
498
+
461
499
  ---
462
500
 
463
501
  ## 🤝 Contributing
@@ -507,7 +545,7 @@ limitations under the License.
507
545
 
508
546
  ## Contributors ✨
509
547
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
510
- [![All Contributors](https://img.shields.io/badge/all_contributors-14-orange.svg?style=flat-square)](#contributors-)
548
+ [![All Contributors](https://img.shields.io/badge/all_contributors-18-orange.svg?style=flat-square)](#contributors-)
511
549
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
512
550
 
513
551
  Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
@@ -535,6 +573,12 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
535
573
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/Sodawyx"><img src="https://avatars.githubusercontent.com/u/34974468?v=4?s=100" width="100px;" alt="Yuxuan Wu"/><br /><sub><b>Yuxuan Wu</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=Sodawyx" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=Sodawyx" title="Documentation">📖</a></td>
536
574
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/TianYu92"><img src="https://avatars.githubusercontent.com/u/12960468?v=4?s=100" width="100px;" alt="Fear1es5"/><br /><sub><b>Fear1es5</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/issues?q=author%3ATianYu92" title="Bug reports">🐛</a></td>
537
575
  </tr>
576
+ <tr>
577
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/ms-cs"><img src="https://avatars.githubusercontent.com/u/43086458?v=4?s=100" width="100px;" alt="zhiyong"/><br /><sub><b>zhiyong</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=ms-cs" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/issues?q=author%3Ams-cs" title="Bug reports">🐛</a></td>
578
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/jooojo"><img src="https://avatars.githubusercontent.com/u/11719425?v=4?s=100" width="100px;" alt="jooojo"/><br /><sub><b>jooojo</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=jooojo" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/issues?q=author%3Ajooojo" title="Bug reports">🐛</a></td>
579
+ <td align="center" valign="top" width="14.28%"><a href="http://ceshihao.github.io"><img src="https://avatars.githubusercontent.com/u/7711875?v=4?s=100" width="100px;" alt="Zheng Dayu"/><br /><sub><b>Zheng Dayu</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=ceshihao" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/issues?q=author%3Aceshihao" title="Bug reports">🐛</a></td>
580
+ <td align="center" valign="top" width="14.28%"><a href="http://lokk.cn/about"><img src="https://avatars.githubusercontent.com/u/39740818?v=4?s=100" width="100px;" alt="quanyu"/><br /><sub><b>quanyu</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=taoquanyus" title="Code">💻</a></td>
581
+ </tr>
538
582
  </tbody>
539
583
  <tfoot>
540
584
  <tr>
@@ -1,28 +1,75 @@
1
1
  agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
2
- agentscope_runtime/version.py,sha256=UYxF4KixRQR_inyGWXpFQncI3EGrq_k2FaANhHeAEWE,47
3
- agentscope_runtime/engine/__init__.py,sha256=jsvYM1LlZVP4EFzsE5uu5ycgBU9CVnug7UyTzBmpX5g,213
4
- agentscope_runtime/engine/runner.py,sha256=TZY4xHEDU8PYBAFnOQXvqpt9rt3eytQ-D4lrN5VsUqQ,6789
2
+ agentscope_runtime/version.py,sha256=lk7e5JPfzsoOQ5FOT6mRCZxF_z8eQRndv9V44YjDTss,47
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=K9Ugto3RB0KksEqjbOlkYk2mvEFxcvwbvjqASCTT_jc,8536
5
21
  agentscope_runtime/engine/agents/__init__.py,sha256=xHp7FY6QM-nAhQAECi7xzrJkRkYZpAa5_zHRhO6Zogc,54
6
- agentscope_runtime/engine/agents/agentscope_agent.py,sha256=sCknnVrWWGeFTFGtAPpJZh7_ntKKd1FoTP0B4NyKOgQ,15711
7
- agentscope_runtime/engine/agents/agno_agent.py,sha256=ORv0ivIk4yxQDdKLtwvjjW27FxGGb10vBwITEyfLiqA,6754
22
+ agentscope_runtime/engine/agents/agentscope_agent.py,sha256=ZJ2cXQCq97-NdORr873fA68a0lRdI1ss6Qhp5L8pnZY,20980
23
+ agentscope_runtime/engine/agents/agno_agent.py,sha256=Mq3NHGQsjQHVT6Y6d3GRrjS8GMk1tXWlC2RDFX3AHg4,6713
8
24
  agentscope_runtime/engine/agents/autogen_agent.py,sha256=bpPLpCAz34QD3suJyc4KT3spR5h0ZlvS_FsSlHkU2K0,7844
9
25
  agentscope_runtime/engine/agents/base_agent.py,sha256=fGf4MNKmfm_fsU2orTPLpt7TT5HkZZZYR05rhp5s7-E,782
10
- agentscope_runtime/engine/agents/langgraph_agent.py,sha256=05Z5js7g9Dxy-MWj0W00jOtFMNnHzSPjlP3WIIVHTtQ,1416
26
+ agentscope_runtime/engine/agents/langgraph_agent.py,sha256=GV6fHp0XhnB6oYFN8Fyw6Ov5RlvOZ1MMlgjYI8sv8do,3164
11
27
  agentscope_runtime/engine/agents/utils.py,sha256=tddHPNLDWc2_ascNjPi4hLgCe_tC2FSmKsVgTVnrCys,1801
12
- agentscope_runtime/engine/deployers/__init__.py,sha256=2eUo6uvloMt4AstmalkwcBgR7gPyppNqlmjld0Ztpxk,103
13
- agentscope_runtime/engine/deployers/base.py,sha256=0bb3zQiVE1jTMG0NCsjhcSeP7lhnbn1KPQRx1H5hues,494
14
- agentscope_runtime/engine/deployers/local_deployer.py,sha256=LaxGzSMW4aoF717GheYno7N38Y66ifIO4Zt2qRkT_Qg,20691
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=uUOoq9xjmKsVTmgmxpD3O-eh6S7MdbT3qLBPoep5DXk,31436
15
38
  agentscope_runtime/engine/deployers/adapter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
39
  agentscope_runtime/engine/deployers/adapter/protocol_adapter.py,sha256=OpLfBWiFY_xC0uG53UYSeQuUnw7vZzvNnm5w6QFr9_w,737
17
40
  agentscope_runtime/engine/deployers/adapter/a2a/__init__.py,sha256=3D6TxH-seVfR7_SqYttNSkGkZv3o_TS9R5XqUkVxed4,83
18
41
  agentscope_runtime/engine/deployers/adapter/a2a/a2a_adapter_utils.py,sha256=VZ4f7Ne9sRWFiLhuxoKDhwSpsxZTg_uLygoOlI-KlEA,11441
19
42
  agentscope_runtime/engine/deployers/adapter/a2a/a2a_agent_adapter.py,sha256=h7wwl2CiKcGUxhKkrWN7DpaIpTltoRm-6ETS_fJHmEk,2147
20
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=5z3LtbfTAk5BTMKMSiBGbPm17XOD7BNoOAeIeJXj_FY,98441
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
21
64
  agentscope_runtime/engine/helpers/helper.py,sha256=P4JvHbvhQaypitznc9NhSJv9QTZa7c6fKeKzTCvmKeQ,4914
22
65
  agentscope_runtime/engine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
66
  agentscope_runtime/engine/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- agentscope_runtime/engine/schemas/agent_schemas.py,sha256=9PSCAuz33dEpE0_cNfOJKSK8ocOprofiR2YYfGezDyo,21194
67
+ agentscope_runtime/engine/schemas/agent_schemas.py,sha256=V-blrkOFvwKPp1otLXqTicICNph-jCIAt0RSmlhziMo,23872
25
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
26
73
  agentscope_runtime/engine/services/__init__.py,sha256=SAsmwIr8etoUbqz5W1K2pH5ONlFzooXMQ0UFXTXfHwM,271
27
74
  agentscope_runtime/engine/services/base.py,sha256=g2hTc3ivj2MPjnsu5_09m6_MZ3KDHBfiYKu4F2pLA1I,2096
28
75
  agentscope_runtime/engine/services/context_manager.py,sha256=CzL7BgZtkWh74dJV-Sa3bNfqNbiihHIQbbvZuYraqXg,5314
@@ -37,38 +84,41 @@ agentscope_runtime/engine/services/reme_personal_memory_service.py,sha256=Cmd0Fp
37
84
  agentscope_runtime/engine/services/reme_task_memory_service.py,sha256=d1QV9e1ifAQIO4Kr-Q9gzx7OhKH_CkUhuyygHRLprWo,338
38
85
  agentscope_runtime/engine/services/sandbox_service.py,sha256=WJp9dZSHYm3eJkw7EoLLj9LgTCjnvrH6xxhWucIKYbI,6038
39
86
  agentscope_runtime/engine/services/session_history_service.py,sha256=C77KwRclXbnMDE3iT5WHglRFYI0aSwDg4EChJCgknzQ,8088
40
- agentscope_runtime/engine/services/tablestore_memory_service.py,sha256=UX3daPzkvFs6YXs-7KirAe_TtD8zXJKKE49rkL4W5y0,10486
87
+ agentscope_runtime/engine/services/tablestore_memory_service.py,sha256=MRDSAsMGuXtpQ_IQRld-TaUj6UUwNpUHXuCFqVgdmFk,10558
41
88
  agentscope_runtime/engine/services/tablestore_rag_service.py,sha256=uGx8I8OGFJPBQs_lTd8Ew-OXMEivEODHA1i9yiFh3Ns,5188
42
89
  agentscope_runtime/engine/services/tablestore_session_history_service.py,sha256=peCon6o4Ryyiu3E2AQDgbB8NFsdPi4tIZK4TEiuvFUA,10353
43
90
  agentscope_runtime/engine/services/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
91
  agentscope_runtime/engine/services/utils/tablestore_service_utils.py,sha256=tqJ6RdxHZSGBorZ12iSMdMSbvqUG_c_rtCKrWMaLANE,11005
45
- agentscope_runtime/engine/tracing/__init__.py,sha256=DuM6Zp_IJ-ixgTTomtrMbpcYiMJOHMrJHwKIqcLzrfA,1133
46
- agentscope_runtime/engine/tracing/base.py,sha256=fYTHN0QmTWa_4zbT4fBduNndOuh03-JE302ssBJtu30,9747
47
- agentscope_runtime/engine/tracing/local_logging_handler.py,sha256=LP-2NX7kRPhEN-WtnLNuhMKDSpxhT03kLtHFKkuQFjQ,12315
48
- agentscope_runtime/engine/tracing/tracing_metric.py,sha256=3qHqBRiTWijqBPLchxyERfPZCstTo8Y5LuL-eCuQas0,2115
49
- agentscope_runtime/engine/tracing/wrapper.py,sha256=ioeKSRJDJgcW34OfFmAq7vgE0FNEFXa_4QLSf7kUBfU,11236
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
50
100
  agentscope_runtime/sandbox/__init__.py,sha256=2q36ii6765TpuRET1cHwd69HgOEXjxxCpKD8d-Mrahs,440
51
101
  agentscope_runtime/sandbox/build.py,sha256=RAZkV0rFp24BNmJBZiMYAQ4KafUAELO3V1Ys6Afodwc,8451
52
- agentscope_runtime/sandbox/constant.py,sha256=LylGJTFylyTzdRfAbTPCjavyKioeGZdlwmBGNn1ykZk,942
53
- agentscope_runtime/sandbox/enums.py,sha256=pccPle1bXihQrZHfgN4XKRKHmBNhJA7P2XT4jgT0HWI,1896
102
+ agentscope_runtime/sandbox/constant.py,sha256=NzpxJ1hBDkP9J_c45FsG3iDgBkfEkIlkSKjc4X78tiU,1011
103
+ agentscope_runtime/sandbox/enums.py,sha256=xwDao512RlmgkuxYsOeEblNtzgKpPvggA8x8sDHdBr8,1872
54
104
  agentscope_runtime/sandbox/mcp_server.py,sha256=UT3aRZqyeHqEhhm-wZ0Ilhew3eDMHzz9DCN6Qb-eKFk,6012
55
- agentscope_runtime/sandbox/registry.py,sha256=E4APDpk1oxhJCh8dEIDjZ1DtQJ-mPaRGYXr3AbTsnmc,4191
105
+ agentscope_runtime/sandbox/registry.py,sha256=3ukwbTOjSINWH7DIOmG1iPgze5nb-zXl2X8M7_AeBwg,4190
56
106
  agentscope_runtime/sandbox/utils.py,sha256=l0gpIM3KjPMlVUtrhOia3Se4HbA4U_MuylySjpoHdrY,3970
57
107
  agentscope_runtime/sandbox/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
108
  agentscope_runtime/sandbox/box/sandbox.py,sha256=-BWme4Zxx9xWssRXf6KzH3RVueR9MuzcOcN8Gdu7mTg,5309
59
109
  agentscope_runtime/sandbox/box/base/__init__.py,sha256=a68IgljSWvNn1mWaCOeEm2C-7Gf7JiUdDnJpBfID198,89
60
- agentscope_runtime/sandbox/box/base/base_sandbox.py,sha256=EW3F05WSEU1mwx-FB8B5a6kn-RbG76Osa6kP67aTses,1048
110
+ agentscope_runtime/sandbox/box/base/base_sandbox.py,sha256=tV8Ox_AUSUkzrwhjx53J5azLVUipxOQ9y8JTAQznbWw,1085
61
111
  agentscope_runtime/sandbox/box/base/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
112
  agentscope_runtime/sandbox/box/browser/__init__.py,sha256=thrkAvtLQ23jR8sM_bSsfmsqFiwpExgh72vnrVUcweQ,98
63
- agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=acM6xuveaGuEIG2t2mfnv_g5V472Sz-2hJ5BBqZpiqI,5505
113
+ agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=wDJb-CBSuzBl2i3NjtkgXFLJppsiooSAlfjzI3Bhs-Q,5542
64
114
  agentscope_runtime/sandbox/box/browser/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
115
  agentscope_runtime/sandbox/box/dummy/__init__.py,sha256=RErHmUx7hFXX69nohtYBS_QSHEWENZHZbWG3434ZDls,92
66
- agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py,sha256=Bqy3M_0Rj2iNSlOX2S1wVgffaVj0qAUhdxawRbNHB7w,668
116
+ agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py,sha256=KAsCEbgZu48qklNMWLd7yPCb7TP1RPFXVi8CQ9Z-kPo,705
67
117
  agentscope_runtime/sandbox/box/filesystem/__init__.py,sha256=OsYCqFfattl6y5M55XMwHTeXVnb-pL3cWMJKjTZIu-s,107
68
- agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py,sha256=ishXzQeT1XlXw-5P2sva2vZ9yMpdoCt3nSjO7_hFgRQ,2645
118
+ agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py,sha256=VlSwBtDi-AK1PWzQTKgNPLB1NHgK1Ayu8N4Q3qOyZ20,2682
69
119
  agentscope_runtime/sandbox/box/filesystem/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
120
  agentscope_runtime/sandbox/box/gui/__init__.py,sha256=-tzNU2yYdKjXD83PlNaMtsu5nqO1yBi2LDevIda2eqo,108
71
- agentscope_runtime/sandbox/box/gui/gui_sandbox.py,sha256=UAHh5ucgCn2NyQXwn_zcsyEc95iJSuMPz7fRGjZmXQk,2557
121
+ agentscope_runtime/sandbox/box/gui/gui_sandbox.py,sha256=RYvwwdtXMaX95P3jUrzshWW3cIYmI9ezfuLkRRf5VcY,2594
72
122
  agentscope_runtime/sandbox/box/gui/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
123
  agentscope_runtime/sandbox/box/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
124
  agentscope_runtime/sandbox/box/shared/app.py,sha256=bw6l0XPVF86yuh0jO_Sx9S-B-luFE3U3lIb6Qjc3dGU,1107
@@ -84,7 +134,7 @@ agentscope_runtime/sandbox/box/training_box/__init__.py,sha256=vG2MQviqdmIUSjHmH
84
134
  agentscope_runtime/sandbox/box/training_box/base.py,sha256=iUPsfA8oiGDR3BMVU7qisvO-UT8HtCx78ayW67DQ0WQ,3307
85
135
  agentscope_runtime/sandbox/box/training_box/env_service.py,sha256=YoMswhQrX8VmE202tpFq-bQo6gOd2oemBhTG_MD9Rwg,22616
86
136
  agentscope_runtime/sandbox/box/training_box/registry.py,sha256=6fTMZvJbakhEqkaO61K-wIfX6uau7g4nFP63bQ7jiNI,1362
87
- agentscope_runtime/sandbox/box/training_box/training_box.py,sha256=b4FS8KPbVCIKeqP0bunekFzLopeCphQBLnH3ADA9jg0,10186
137
+ agentscope_runtime/sandbox/box/training_box/training_box.py,sha256=duX1QNaXz8lOjjXP5Uw1wykw91YVklhRMlcnZw8NvEA,8877
88
138
  agentscope_runtime/sandbox/box/training_box/environments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
139
  agentscope_runtime/sandbox/box/training_box/environments/appworld/appworld_env.py,sha256=FJc0eb6bnKL6lxx_4EKWr7kmKLi2jLsykNstecXEqkc,27786
90
140
  agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_dataprocess.py,sha256=jkg8wDwDXdZZU7q777tnyqc-C9hRlPF0pffJ4DX5upQ,7352
@@ -92,28 +142,13 @@ agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_env.py,sha256
92
142
  agentscope_runtime/sandbox/box/training_box/environments/bfcl/env_handler.py,sha256=T-W9w4nKI7_BXgF9caqV3KMeX5d6yvdfhQu0o2oWTUE,30114
93
143
  agentscope_runtime/sandbox/box/training_box/src/trajectory.py,sha256=cFr3uVUPq5gHKPa6ALi7QCLBVkgYOyPgyJrOzgBHf3k,7885
94
144
  agentscope_runtime/sandbox/client/__init__.py,sha256=KiNsTToc1jICqCC1BcH762jZgHuOkCPiG32oXGo6dQE,176
95
- agentscope_runtime/sandbox/client/http_client.py,sha256=boFNTZyjWVzD73PUiSDl1TSc4mBleP4d3gAj0XuDjnA,17176
145
+ agentscope_runtime/sandbox/client/http_client.py,sha256=ra5vACr862VRRPmogYZkRqS2PXACcDYwvbtIE7NqaMY,17940
96
146
  agentscope_runtime/sandbox/client/training_client.py,sha256=WIhGBib2IWQZwUoSJUn8kuIGrtd6Yz3VOxCh0tft630,7625
97
147
  agentscope_runtime/sandbox/custom/__init__.py,sha256=wpu0DlzdLohYzOVM9yZloIWid3w_ME6dPtOjCZKbRZ8,463
98
- agentscope_runtime/sandbox/custom/custom_sandbox.py,sha256=NmLPYqz-DWGe5o6EuKJrbhAtpyfZbEOXzbw5hn0CNhM,972
99
- agentscope_runtime/sandbox/custom/example.py,sha256=KDX3fT3BxvmEme9pMfN3xf96MS8CWNVmLyZyboE9hHI,928
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
100
150
  agentscope_runtime/sandbox/manager/__init__.py,sha256=KNHc1uDaUWBH_ZnWjH5NHRBiQM_zDyi9B2xKVNtAWIg,98
101
- agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=mZbL4MK1RJEsQa170JHlpECBnotoE0UfY8Wx-D2v2c8,27359
102
- agentscope_runtime/sandbox/manager/collections/__init__.py,sha256=teQPF7huMB2yEX_CAFsmIJhQxH7ldHR7gr11W3jlx4o,582
103
- agentscope_runtime/sandbox/manager/collections/base_mapping.py,sha256=IIVNwvaGVAiL6XxV0LvUHx-JmDvUc19iOGyRyAccMaI,361
104
- agentscope_runtime/sandbox/manager/collections/base_queue.py,sha256=eCwb5eovwzSV83J_Nq3HX_4IQ8rjYw9wdeVRS5sRQHA,424
105
- agentscope_runtime/sandbox/manager/collections/base_set.py,sha256=RasZxcXDkvdu89KhZc8Z_4TB5zIDTavCTLVVadfbB8w,449
106
- agentscope_runtime/sandbox/manager/collections/in_memory_mapping.py,sha256=7qU-3C-CX5rPuDjWUH9lnH6yvKIwCfnRwMm2vXy1Olo,645
107
- agentscope_runtime/sandbox/manager/collections/in_memory_queue.py,sha256=wTbmT77DI0KLYAgFbmcMl7sr5aB6WjyW_USQXqF9gJ0,612
108
- agentscope_runtime/sandbox/manager/collections/in_memory_set.py,sha256=7qek5ZB3f_mdNJ4PUPoYv1yujHybdMjgpCYlFMosyMs,602
109
- agentscope_runtime/sandbox/manager/collections/redis_mapping.py,sha256=OBEYiOsYknw3RLs_DFOFPQV1BxDKCimK1EdrlIGo7u0,1296
110
- agentscope_runtime/sandbox/manager/collections/redis_queue.py,sha256=4MCIDs7SgSfdngTvqxWWv2H-8XTpFQOmXG4-fxN20ew,792
111
- agentscope_runtime/sandbox/manager/collections/redis_set.py,sha256=eRCnMXc4hcDF2qyxFiNnrn2o4QjvtgDb6rEcblmV1o8,654
112
- agentscope_runtime/sandbox/manager/container_clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
- agentscope_runtime/sandbox/manager/container_clients/agentrun_client.py,sha256=nibFHR5N3tfNDcREi_2obm09a6GZoXV3iZkYq3NsLvY,40672
114
- agentscope_runtime/sandbox/manager/container_clients/base_client.py,sha256=_uvxRh65lbMNXDcHjq01aYuNUrcxRlNzRtRIPMgWFGc,992
115
- agentscope_runtime/sandbox/manager/container_clients/docker_client.py,sha256=eP7NcUWdTuV1wwF9FeuQCZBDrVOUVRiKOcz3GYD4K-o,7724
116
- agentscope_runtime/sandbox/manager/container_clients/kubernetes_client.py,sha256=74qtE2f6BU5__gfwUiA7Lb8CQKKP3ccdu64yiIxie88,20759
151
+ agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=watibBh_ujgJ7g4GW3pVRruhmHw0IVnWyEACLrR8Jo4,27533
117
152
  agentscope_runtime/sandbox/manager/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
153
  agentscope_runtime/sandbox/manager/server/app.py,sha256=MIq8B8TBuwg7JQNgVLzjYjC9Fq2r2m5dcmgeyKk5mcA,13045
119
154
  agentscope_runtime/sandbox/manager/server/config.py,sha256=L5Gz0CzmX7-teWQsciUgW4Fmg82G_WjmU7TUi7_bcuM,3944
@@ -124,13 +159,13 @@ agentscope_runtime/sandbox/manager/storage/local_storage.py,sha256=o6fkV-yUtBihh
124
159
  agentscope_runtime/sandbox/manager/storage/oss_storage.py,sha256=fIUxgOkOaH_1vlgWBnCM-e4UvD3xS_ycFe2yvSyXzBE,2970
125
160
  agentscope_runtime/sandbox/model/__init__.py,sha256=WoDOSD_67T-UkZdXOtJzwG4-0E8ABwUBJF6WSCs_sO0,182
126
161
  agentscope_runtime/sandbox/model/api.py,sha256=Sjxw6DHkGa8Sp5dUU5kaajkHPj7eiX1EgFZk-zOPafM,400
127
- agentscope_runtime/sandbox/model/container.py,sha256=_-QYCu2ZsvpMs5M07Dj_x1B_WpM1ygv85HerXGTl0gU,1267
162
+ agentscope_runtime/sandbox/model/container.py,sha256=f7dj4ir4sxXjZ_zm4iEkjskraacZLX2SR_l1WSl0FOo,1405
128
163
  agentscope_runtime/sandbox/model/manager_config.py,sha256=0zaxRJnt-r9O0iPSUfT5I6ysUo-B3xufB2nS1IeBMf4,8016
129
164
  agentscope_runtime/sandbox/tools/__init__.py,sha256=ioRqvKFLma8Vq0ePwOR5MekijpcHs2USNYA4Dnr-e6M,287
130
165
  agentscope_runtime/sandbox/tools/function_tool.py,sha256=mH4dq3M26pdk-XqxIm1wtsvQz5i8SXcP4Gz0-7_L7cQ,10309
131
166
  agentscope_runtime/sandbox/tools/mcp_tool.py,sha256=9wvzS_t_mlHlUlXvVigV9YcxWAh0BJqJw5K0zvoI_vQ,6213
132
167
  agentscope_runtime/sandbox/tools/sandbox_tool.py,sha256=wHkgixb0dy6DexXbfXVOKUFfLL9QOI2H5oiQ2NntoWM,3067
133
- agentscope_runtime/sandbox/tools/tool.py,sha256=f2-14tP1V2Vgw5krr0q-uEM3lOAQUF6GdttqYdZkIdI,7361
168
+ agentscope_runtime/sandbox/tools/tool.py,sha256=8QIpHtMoHZ7Rq6IA1d-RAsRqp2HVSeRAgiXCK6MBzlc,7432
134
169
  agentscope_runtime/sandbox/tools/utils.py,sha256=QksPQK-2DszaQsRw4Srug5hEwrf6hothf-Xp8a1056c,2098
135
170
  agentscope_runtime/sandbox/tools/base/__init__.py,sha256=Aboc1tFjgWriw4gqDrX5axpC_Bx469mcn8l8nbNdSXg,143
136
171
  agentscope_runtime/sandbox/tools/base/tool.py,sha256=5rCZ_SdDiRCZyQfdsWC1FPq7jwnSSbnKxyjQQK3PAS8,1347
@@ -140,9 +175,9 @@ agentscope_runtime/sandbox/tools/filesystem/__init__.py,sha256=AJK88YU0ceJe99H7T
140
175
  agentscope_runtime/sandbox/tools/filesystem/tool.py,sha256=CPsl4TMf76BOSQtG1dqDcVdymciKhMknIG5FffoI2Eg,9847
141
176
  agentscope_runtime/sandbox/tools/gui/__init__.py,sha256=agr8SMmuLbtk7aTMhnD-b70bbYbYI-ymPS5yPw6HRyM,91
142
177
  agentscope_runtime/sandbox/tools/gui/tool.py,sha256=8gLZgEMJDiGoob56ptnvnjh19dWw40XsDL93AGWplto,4064
143
- agentscope_runtime-0.1.6.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
144
- agentscope_runtime-0.1.6.dist-info/METADATA,sha256=wMZ3CapsJ_amQfE8pzwzUMPd6ZOsp36BCKCsvCTPxS0,27892
145
- agentscope_runtime-0.1.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
146
- agentscope_runtime-0.1.6.dist-info/entry_points.txt,sha256=SGQZqgozJYj1yJtiyzqiJ2_iYmDvTl2lexxmXENY3wE,223
147
- agentscope_runtime-0.1.6.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
148
- agentscope_runtime-0.1.6.dist-info/RECORD,,
178
+ agentscope_runtime-0.2.0.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
179
+ agentscope_runtime-0.2.0.dist-info/METADATA,sha256=Ahk_8ylVq8Efqc6d3eYFSpbKPj7lU-5oWIbJTNG0oho,31269
180
+ agentscope_runtime-0.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
181
+ agentscope_runtime-0.2.0.dist-info/entry_points.txt,sha256=K8Tb95DEHzRW3AxsZAXghmqeDcPpO7n7rNmU5glfmaU,298
182
+ agentscope_runtime-0.2.0.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
183
+ agentscope_runtime-0.2.0.dist-info/RECORD,,
@@ -1,4 +1,5 @@
1
1
  [console_scripts]
2
+ runtime-fc-deploy = agentscope_runtime.engine.deployers.cli_fc_deploy:main
2
3
  runtime-sandbox-builder = agentscope_runtime.sandbox.build:main
3
4
  runtime-sandbox-mcp = agentscope_runtime.sandbox.mcp_server:main
4
5
  runtime-sandbox-server = agentscope_runtime.sandbox.manager.server.app:main