agentscope-runtime 1.0.3__py3-none-any.whl → 1.0.4__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 (49) hide show
  1. agentscope_runtime/adapters/agentscope/stream.py +2 -9
  2. agentscope_runtime/adapters/ms_agent_framework/__init__.py +0 -0
  3. agentscope_runtime/adapters/ms_agent_framework/message.py +205 -0
  4. agentscope_runtime/adapters/ms_agent_framework/stream.py +418 -0
  5. agentscope_runtime/adapters/utils.py +6 -0
  6. agentscope_runtime/cli/commands/deploy.py +371 -0
  7. agentscope_runtime/common/container_clients/knative_client.py +466 -0
  8. agentscope_runtime/engine/__init__.py +4 -0
  9. agentscope_runtime/engine/constant.py +1 -0
  10. agentscope_runtime/engine/deployers/__init__.py +12 -0
  11. agentscope_runtime/engine/deployers/adapter/a2a/__init__.py +26 -51
  12. agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py +19 -10
  13. agentscope_runtime/engine/deployers/adapter/a2a/a2a_registry.py +4 -201
  14. agentscope_runtime/engine/deployers/adapter/a2a/nacos_a2a_registry.py +134 -25
  15. agentscope_runtime/engine/deployers/agentrun_deployer.py +2 -2
  16. agentscope_runtime/engine/deployers/fc_deployer.py +1506 -0
  17. agentscope_runtime/engine/deployers/knative_deployer.py +290 -0
  18. agentscope_runtime/engine/runner.py +12 -0
  19. agentscope_runtime/engine/services/agent_state/redis_state_service.py +2 -2
  20. agentscope_runtime/engine/services/memory/redis_memory_service.py +2 -2
  21. agentscope_runtime/engine/services/session_history/redis_session_history_service.py +2 -2
  22. agentscope_runtime/engine/tracing/wrapper.py +18 -4
  23. agentscope_runtime/sandbox/__init__.py +14 -6
  24. agentscope_runtime/sandbox/box/base/__init__.py +2 -2
  25. agentscope_runtime/sandbox/box/base/base_sandbox.py +51 -1
  26. agentscope_runtime/sandbox/box/browser/__init__.py +2 -2
  27. agentscope_runtime/sandbox/box/browser/browser_sandbox.py +198 -2
  28. agentscope_runtime/sandbox/box/filesystem/__init__.py +2 -2
  29. agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py +99 -2
  30. agentscope_runtime/sandbox/box/gui/__init__.py +2 -2
  31. agentscope_runtime/sandbox/box/gui/gui_sandbox.py +117 -1
  32. agentscope_runtime/sandbox/box/mobile/__init__.py +2 -2
  33. agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py +247 -100
  34. agentscope_runtime/sandbox/box/sandbox.py +98 -65
  35. agentscope_runtime/sandbox/box/shared/routers/generic.py +36 -29
  36. agentscope_runtime/sandbox/client/__init__.py +6 -1
  37. agentscope_runtime/sandbox/client/async_http_client.py +339 -0
  38. agentscope_runtime/sandbox/client/base.py +74 -0
  39. agentscope_runtime/sandbox/client/http_client.py +108 -329
  40. agentscope_runtime/sandbox/enums.py +7 -0
  41. agentscope_runtime/sandbox/manager/sandbox_manager.py +264 -4
  42. agentscope_runtime/sandbox/manager/server/app.py +7 -1
  43. agentscope_runtime/version.py +1 -1
  44. {agentscope_runtime-1.0.3.dist-info → agentscope_runtime-1.0.4.dist-info}/METADATA +102 -28
  45. {agentscope_runtime-1.0.3.dist-info → agentscope_runtime-1.0.4.dist-info}/RECORD +49 -40
  46. {agentscope_runtime-1.0.3.dist-info → agentscope_runtime-1.0.4.dist-info}/WHEEL +0 -0
  47. {agentscope_runtime-1.0.3.dist-info → agentscope_runtime-1.0.4.dist-info}/entry_points.txt +0 -0
  48. {agentscope_runtime-1.0.3.dist-info → agentscope_runtime-1.0.4.dist-info}/licenses/LICENSE +0 -0
  49. {agentscope_runtime-1.0.3.dist-info → agentscope_runtime-1.0.4.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentscope-runtime
3
- Version: 1.0.3
3
+ Version: 1.0.4
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
@@ -67,6 +67,7 @@ Requires-Dist: alibabacloud-credentials; extra == "ext"
67
67
  Requires-Dist: PyYAML; extra == "ext"
68
68
  Requires-Dist: agno>=2.3.8; extra == "ext"
69
69
  Requires-Dist: nacos-sdk-python>=3.0.0; extra == "ext"
70
+ Requires-Dist: agent-framework>=1.0.0b251120; extra == "ext"
70
71
  Dynamic: license-file
71
72
 
72
73
  <div align="center">
@@ -74,6 +75,7 @@ Dynamic: license-file
74
75
  # AgentScope Runtime v1.0
75
76
 
76
77
  [![GitHub Repo](https://img.shields.io/badge/GitHub-Repo-black.svg?logo=github)](https://github.com/agentscope-ai/agentscope-runtime)
78
+ [![WebUI](https://img.shields.io/badge/Try_WebUI-Online-green.svg?logo=googlechrome)](http://webui.runtime.agentscope.io/)
77
79
  [![PyPI](https://img.shields.io/pypi/v/agentscope-runtime?label=PyPI&color=brightgreen&logo=python)](https://pypi.org/project/agentscope-runtime/)
78
80
  [![Downloads](https://static.pepy.tech/badge/agentscope-runtime)](https://pepy.tech/project/agentscope-runtime)
79
81
  [![Python Version](https://img.shields.io/badge/python-3.10%2B-blue.svg?logo=python&label=Python)](https://python.org)
@@ -91,6 +93,7 @@ Dynamic: license-file
91
93
  [![DingTalk](https://img.shields.io/badge/DingTalk-Join_Us-orange.svg)](https://qr.dingtalk.com/action/joingroup?code=v1,k1,OmDlBXpjW+I2vWjKDsjvI9dhcXjGZi3bQiojOq3dlDw=&_dt_no_comment=1&origin=11)
92
94
 
93
95
  [[Cookbook]](https://runtime.agentscope.io/)
96
+ [[Try WebUI]](http://webui.runtime.agentscope.io/)
94
97
  [[中文README]](README_zh.md)
95
98
  [[Samples]](https://github.com/agentscope-ai/agentscope-samples)
96
99
 
@@ -106,6 +109,7 @@ Dynamic: license-file
106
109
 
107
110
  ## 🆕 NEWS
108
111
 
112
+ * **[2026-01]** Added **asynchronous sandbox** implementations (`BaseSandboxAsync`, `GuiSandboxAsync`, `BrowserSandboxAsync`, `FilesystemSandboxAsync`, `MobileSandboxAsync`) enabling non-blocking, concurrent tool execution in async program. Improved `run_ipython_cell` and `run_shell_command` methods with enhanced **concurrency and parallel execution** capabilities for more efficient sandbox operations.
109
113
  * **[2025-12]** We have released **AgentScope Runtime v1.0**, introducing a unified “Agent as API” white-box development experience, with enhanced multi-agent collaboration, state persistence, and cross-framework integration. This release also streamlines abstractions and modules to ensure consistency between development and production environments. Please refer to the **[CHANGELOG](https://runtime.agentscope.io/en/CHANGELOG.html)** for full update details and migration guide.
110
114
 
111
115
  ---
@@ -125,11 +129,11 @@ Dynamic: license-file
125
129
  >
126
130
  > | Framework/Feature | Message/Event | Tool | Service |
127
131
  > | ------------------------------------------------------------ | ------------- | ---- | ------- |
128
- > | AgentScope | ✅ | ✅ | ✅ |
132
+ > | [AgentScope](https://runtime.agentscope.io/en/quickstart.html) | ✅ | ✅ | ✅ |
129
133
  > | [LangGraph](https://runtime.agentscope.io/en/langgraph_guidelines.html) | ✅ | 🚧 | 🚧 |
130
- > | AutoGen | 🚧 | ✅ | 🚧 |
131
- > | Microsoft Agent Framework | 🚧 | 🚧 | 🚧 |
134
+ > | [Microsoft Agent Framework](https://runtime.agentscope.io/en/ms_agent_framework_guidelines.html) | | ✅ | 🚧 |
132
135
  > | [Agno](https://runtime.agentscope.io/en/agno_guidelines.html) | ✅ | ✅ | 🚧 |
136
+ > | AutoGen | 🚧 | ✅ | 🚧 |
133
137
 
134
138
  ---
135
139
 
@@ -329,15 +333,29 @@ These examples demonstrate how to create sandboxed environments and execute tool
329
333
 
330
334
  > [!NOTE]
331
335
  >
332
- > Current version requires Docker or Kubernetes to be installed and running on your system. Please refer to [this tutorial](https://runtime.agentscope.io/en/sandbox.html) for more details.
336
+ > If you want to run the sandbox locally, the current version requires Docker or Kubernetes to be installed and running. In the future, we will offer more public cloud deployment options, as well as other virtualization technologies. Please refer to [this tutorial](https://runtime.agentscope.io/en/sandbox.html) for more details.
333
337
  >
334
338
  > If you plan to use the sandbox on a large scale in production, we recommend deploying it directly in Alibaba Cloud for managed hosting: [One-click deploy sandbox on Alibaba Cloud](https://computenest.console.aliyun.com/service/instance/create/default?ServiceName=AgentScope%20Runtime%20%E6%B2%99%E7%AE%B1%E7%8E%AF%E5%A2%83)
335
339
 
340
+ > [!TIP]
341
+ > AgentScope Runtime provides **both synchronous** and **asynchronous** versions for each sandbox type
342
+
343
+ | Synchronous Class | Asynchronous Class |
344
+ | ------------------- | ------------------------ |
345
+ | `BaseSandbox` | `BaseSandboxAsync` |
346
+ | `GuiSandbox` | `GuiSandboxAsync` |
347
+ | `FilesystemSandbox` | `FilesystemSandboxAsync` |
348
+ | `BrowserSandbox` | `BrowserSandboxAsync` |
349
+ | `MobileSandbox` | `MobileSandboxAsync` |
350
+ | `TrainingSandbox` | - |
351
+ | `AgentbaySandbox` | - |
352
+
336
353
  #### Base Sandbox
337
354
 
338
355
  Use for running **Python code** or **shell commands** in an isolated environment.
339
356
 
340
357
  ```python
358
+ # --- Synchronous version ---
341
359
  from agentscope_runtime.sandbox import BaseSandbox
342
360
 
343
361
  with BaseSandbox() as box:
@@ -346,6 +364,15 @@ with BaseSandbox() as box:
346
364
  print(box.run_ipython_cell(code="print('hi')")) # Run Python code
347
365
  print(box.run_shell_command(command="echo hello")) # Run shell command
348
366
  input("Press Enter to continue...")
367
+
368
+ # --- Asynchronous version ---
369
+ from agentscope_runtime.sandbox import BaseSandboxAsync
370
+
371
+ async with BaseSandboxAsync() as box:
372
+ # Default image is `agentscope/runtime-sandbox-base:latest`
373
+ print(await box.list_tools()) # List all available tools
374
+ print(await box.run_ipython_cell(code="print('hi')")) # Run Python code
375
+ print(await box.run_shell_command(command="echo hello")) # Run shell command
349
376
  ```
350
377
 
351
378
  #### GUI Sandbox
@@ -355,14 +382,26 @@ Provides a **virtual desktop** environment for mouse, keyboard, and screen opera
355
382
  <img src="https://img.alicdn.com/imgextra/i2/O1CN01df5SaM1xKFQP4KGBW_!!6000000006424-2-tps-2958-1802.png" alt="GUI Sandbox" width="800" height="500">
356
383
 
357
384
  ```python
385
+ # --- Synchronous version ---
358
386
  from agentscope_runtime.sandbox import GuiSandbox
359
387
 
360
388
  with GuiSandbox() as box:
361
389
  # By default, pulls `agentscope/runtime-sandbox-gui:latest` from DockerHub
362
- print(box.list_tools()) # List all available tools
390
+ print(box.list_tools()) # List all available tools
363
391
  print(box.desktop_url) # Web desktop access URL
364
392
  print(box.computer_use(action="get_cursor_position")) # Get mouse cursor position
365
- print(box.computer_use(action="get_screenshot")) # Capture screenshot
393
+ print(box.computer_use(action="get_screenshot")) # Capture screenshot
394
+ input("Press Enter to continue...")
395
+
396
+ # --- Asynchronous version ---
397
+ from agentscope_runtime.sandbox import GuiSandboxAsync
398
+
399
+ async with GuiSandboxAsync() as box:
400
+ # Default image is `agentscope/runtime-sandbox-gui:latest`
401
+ print(await box.list_tools()) # List all available tools
402
+ print(box.desktop_url) # Web desktop access URL
403
+ print(await box.computer_use(action="get_cursor_position")) # Get mouse cursor position
404
+ print(await box.computer_use(action="get_screenshot")) # Capture screenshot
366
405
  input("Press Enter to continue...")
367
406
  ```
368
407
 
@@ -373,14 +412,25 @@ A GUI-based sandbox with **browser operations** inside an isolated sandbox.
373
412
  <img src="https://img.alicdn.com/imgextra/i4/O1CN01OIq1dD1gAJMcm0RFR_!!6000000004101-2-tps-2734-1684.png" alt="GUI Sandbox" width="800" height="500">
374
413
 
375
414
  ```python
415
+ # --- Synchronous version ---
376
416
  from agentscope_runtime.sandbox import BrowserSandbox
377
417
 
378
418
  with BrowserSandbox() as box:
379
419
  # By default, pulls `agentscope/runtime-sandbox-browser:latest` from DockerHub
380
- print(box.list_tools()) # List all available tools
420
+ print(box.list_tools()) # List all available tools
381
421
  print(box.desktop_url) # Web desktop access URL
382
422
  box.browser_navigate("https://www.google.com/") # Open a webpage
383
423
  input("Press Enter to continue...")
424
+
425
+ # --- Asynchronous version ---
426
+ from agentscope_runtime.sandbox import BrowserSandboxAsync
427
+
428
+ async with BrowserSandboxAsync() as box:
429
+ # Default image is `agentscope/runtime-sandbox-browser:latest`
430
+ print(await box.list_tools()) # List all available tools
431
+ print(box.desktop_url) # Web desktop access URL
432
+ await box.browser_navigate("https://www.google.com/") # Open a webpage
433
+ input("Press Enter to continue...")
384
434
  ```
385
435
 
386
436
  #### Filesystem Sandbox
@@ -390,13 +440,24 @@ A GUI-based sandbox with **file system operations** such as creating, reading, a
390
440
  <img src="https://img.alicdn.com/imgextra/i3/O1CN01VocM961vK85gWbJIy_!!6000000006153-2-tps-2730-1686.png" alt="GUI Sandbox" width="800" height="500">
391
441
 
392
442
  ```python
393
- from agentscope_runtime.sandbox import FilesystemSandbox
443
+ # --- Synchronous version ---
444
+ from agentscope_runtime.sandbox import BrowserSandbox
394
445
 
395
- with FilesystemSandbox() as box:
396
- # By default, pulls `agentscope/runtime-sandbox-filesystem:latest` from DockerHub
397
- print(box.list_tools()) # List all available tools
446
+ with BrowserSandbox() as box:
447
+ # By default, pulls `agentscope/runtime-sandbox-browser:latest` from DockerHub
448
+ print(box.list_tools()) # List all available tools
398
449
  print(box.desktop_url) # Web desktop access URL
399
- box.create_directory("test") # Create a directory
450
+ box.browser_navigate("https://www.google.com/") # Open a webpage
451
+ input("Press Enter to continue...")
452
+
453
+ # --- Asynchronous version ---
454
+ from agentscope_runtime.sandbox import BrowserSandboxAsync
455
+
456
+ async with BrowserSandboxAsync() as box:
457
+ # Default image is `agentscope/runtime-sandbox-browser:latest`
458
+ print(await box.list_tools()) # List all available tools
459
+ print(box.desktop_url) # Web desktop access URL
460
+ await box.browser_navigate("https://www.google.com/") # Open a webpage
400
461
  input("Press Enter to continue...")
401
462
  ```
402
463
 
@@ -421,16 +482,32 @@ Provides a **sandboxed Android emulator environment** that allows executing vari
421
482
  - **Architecture Compatibility**:
422
483
  When running on an ARM64/aarch64 architecture (e.g., Apple M-series chips), you may encounter compatibility or performance issues. It is recommended to run on an x86_64 host.
423
484
  ```python
485
+ # --- Synchronous version ---
424
486
  from agentscope_runtime.sandbox import MobileSandbox
425
487
 
426
488
  with MobileSandbox() as box:
427
489
  # By default, pulls 'agentscope/runtime-sandbox-mobile:latest' from DockerHub
428
- print(box.list_tools()) # List all available tools
429
- print(box.mobile_get_screen_resolution()) # Get the screen resolution
430
- print(box.mobile_tap([500, 1000])) # Tap at coordinate (500, 1000)
431
- print(box.mobile_input_text("Hello from AgentScope!")) # Input text
432
- print(box.mobile_key_event(3)) # Sends a HOME key event (KeyCode: 3)
433
- screenshot_result = box.mobile_get_screenshot() # Get the current screenshot
490
+ print(box.list_tools()) # List all available tools
491
+ print(box.mobile_get_screen_resolution()) # Get the screen resolution
492
+ print(box.mobile_tap([500, 1000])) # Tap at coordinate (500, 1000)
493
+ print(box.mobile_input_text("Hello from AgentScope!")) # Input text
494
+ print(box.mobile_key_event(3)) # HOME key event
495
+ screenshot_result = box.mobile_get_screenshot() # Get screenshot
496
+ print(screenshot_result)
497
+ input("Press Enter to continue...")
498
+
499
+ # --- Asynchronous version ---
500
+ from agentscope_runtime.sandbox import MobileSandboxAsync
501
+
502
+ async with MobileSandboxAsync() as box:
503
+ # Default image is 'agentscope/runtime-sandbox-mobile:latest'
504
+ print(await box.list_tools()) # List all available tools
505
+ print(await box.mobile_get_screen_resolution()) # Get the screen resolution
506
+ print(await box.mobile_tap([500, 1000])) # Tap at coordinate (500, 1000)
507
+ print(await box.mobile_input_text("Hello from AgentScope!")) # Input text
508
+ print(await box.mobile_key_event(3)) # HOME key event
509
+ screenshot_result = await box.mobile_get_screenshot() # Get screenshot
510
+ print(screenshot_result)
434
511
  input("Press Enter to continue...")
435
512
  ```
436
513
 
@@ -501,15 +578,11 @@ Example:
501
578
  agentscope-registry.ap-southeast-1.cr.aliyuncs.com/agentscope/runtime-sandbox-base:preview
502
579
  ```
503
580
 
504
- ---
505
-
506
581
  #### Serverless Sandbox Deployment
507
582
 
508
- AgentScope Runtime also supports serverless deployment, which is suitable for running sandboxes in a serverless environment,
509
- [Alibaba Cloud Function Compute (FC)](https://help.aliyun.com/zh/functioncompute/fc/) or [Alibaba Cloud AgentRun](https://docs.agent.run/).
583
+ AgentScope Runtime also supports serverless deployment, which is suitable for running sandboxes in a serverless environment, e.g. [Alibaba Cloud Function Compute (FC)](https://help.aliyun.com/zh/functioncompute/fc/).
510
584
 
511
- First, please refer to the [documentation](https://runtime.agentscope.io/en/sandbox/advanced.html#optional-function-compute-fc-settings) to configure the serverless environment variables.
512
- Make `CONTAINER_DEPLOYMENT` to `fc` or `agentrun` to enable serverless deployment.
585
+ First, please refer to the [documentation](https://runtime.agentscope.io/en/sandbox/advanced.html#optional-function-compute-fc-settings) to configure the serverless environment variables. Make `CONTAINER_DEPLOYMENT` to `fc` to enable serverless deployment.
513
586
 
514
587
  Then, start a sandbox server, use the `--config` option to specify a serverless environment setup:
515
588
 
@@ -570,8 +643,7 @@ print(response)
570
643
  ```
571
644
 
572
645
  Besides, `DeployManager` also supports serverless deployments, such as deploying your agent app
573
- to [ModelStudio](https://bailian.console.aliyun.com/?admin=1&tab=doc#/doc/?type=app&url=2983030)
574
- or [AgentRun](https://docs.agent.run/).
646
+ to [ModelStudio](https://bailian.console.aliyun.com/?admin=1&tab=doc#/doc/?type=app&url=2983030).
575
647
 
576
648
  ```python
577
649
  from agentscope_runtime.engine.deployers import ModelStudioDeployManager
@@ -653,7 +725,7 @@ limitations under the License.
653
725
 
654
726
  ## Contributors ✨
655
727
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
656
- [![All Contributors](https://img.shields.io/badge/all_contributors-29-orange.svg?style=flat-square)](#contributors-)
728
+ [![All Contributors](https://img.shields.io/badge/all_contributors-31-orange.svg?style=flat-square)](#contributors-)
657
729
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
658
730
 
659
731
  Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/emoji-key/)):
@@ -701,6 +773,8 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/e
701
773
  </tr>
702
774
  <tr>
703
775
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/RTsama"><img src="https://avatars.githubusercontent.com/u/100779257?v=4?s=100" width="100px;" alt="RTsama"/><br /><sub><b>RTsama</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/issues?q=author%3ARTsama" title="Bug reports">🐛</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=RTsama" title="Code">💻</a></td>
776
+ <td align="center" valign="top" width="14.28%"><a href="https://allenli178.top"><img src="https://avatars.githubusercontent.com/u/53218750?v=4?s=100" width="100px;" alt="YuYan"/><br /><sub><b>YuYan</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=allenli178" title="Documentation">📖</a></td>
777
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/rlp2006"><img src="https://avatars.githubusercontent.com/u/212365247?v=4?s=100" width="100px;" alt="Li Peng (Yuan Yi)"/><br /><sub><b>Li Peng (Yuan Yi)</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=rlp2006" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=rlp2006" title="Documentation">📖</a> <a href="#example-rlp2006" title="Examples">💡</a></td>
704
778
  </tr>
705
779
  </tbody>
706
780
  <tfoot>
@@ -1,9 +1,10 @@
1
1
  agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
2
- agentscope_runtime/version.py,sha256=_YVKGzBagBZCp2pKuECYqArJfTFSbGBHotZbFzO0D0E,47
2
+ agentscope_runtime/version.py,sha256=xh1nxFuzg-lThBNWPcakjqIe1tjikgc9ykNv8nAlXyQ,47
3
3
  agentscope_runtime/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ agentscope_runtime/adapters/utils.py,sha256=lL6RrSwxyj2WHWgUaCtscbP9aD_Rf3UY_FCtDPJ_ISI,180
4
5
  agentscope_runtime/adapters/agentscope/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
6
  agentscope_runtime/adapters/agentscope/message.py,sha256=Bhb3V6TOv8s9uAhuZSl7uN728bFvnDzRYqejs0u_bNU,23057
6
- agentscope_runtime/adapters/agentscope/stream.py,sha256=qYwLT3z82OsMM6vaQt07VVB3nQSxGgGJ178mTmGdgg0,23181
7
+ agentscope_runtime/adapters/agentscope/stream.py,sha256=MZ09AqgsnT57-TJr96PliYhHFvWdnFqg-PXi9kAkvWU,23047
7
8
  agentscope_runtime/adapters/agentscope/long_term_memory/__init__.py,sha256=Hg4ghENb8u49svojY_q89HEjKImvLjKMQwmL8Y3wGgE,135
8
9
  agentscope_runtime/adapters/agentscope/long_term_memory/_long_term_memory_adapter.py,sha256=dwUS6-xvn9g4VlVcHL89gCbHjdw-VWKEBNpVkmzUAgE,7873
9
10
  agentscope_runtime/adapters/agentscope/memory/__init__.py,sha256=zqVxvsJv1t1mjJKdOjtP6dUGNOrc0LLwZx_yZCNq7Xs,137
@@ -20,13 +21,16 @@ agentscope_runtime/adapters/autogen/tool/tool.py,sha256=NFSitBvL5uP3sVwHQfxprbsG
20
21
  agentscope_runtime/adapters/langgraph/__init__.py,sha256=yLNYabjNXn6BgIVdWCP7m3DOqzqOFsVm_Qu1FV5MyeU,309
21
22
  agentscope_runtime/adapters/langgraph/message.py,sha256=T2RNsrhCSkyelo4NRZeZf7abK1iK8VvpyEWUunS_XZQ,9267
22
23
  agentscope_runtime/adapters/langgraph/stream.py,sha256=MB5NE2bx9hE-TYLwW5jwepZBRAuJ_TLAGYVSejskdo8,7974
24
+ agentscope_runtime/adapters/ms_agent_framework/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ agentscope_runtime/adapters/ms_agent_framework/message.py,sha256=JbgdC1vEasTowl_NPtnfm99F9_24UrEWIfHGEtG-HP0,7184
26
+ agentscope_runtime/adapters/ms_agent_framework/stream.py,sha256=FlGoffKW6nRD4I7yBsnhu4J0pAmQyGV-cQrNKN80F9M,14096
23
27
  agentscope_runtime/adapters/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
28
  agentscope_runtime/adapters/text/stream.py,sha256=qtk-WIj8itvOUZO0IHzNPBNWX4V5Dm13nhsNlDyYWKc,682
25
29
  agentscope_runtime/cli/__init__.py,sha256=aAc30JEk1UNLLmxcQeTiNMJXbFczjym4Oses4ULIsFI,181
26
30
  agentscope_runtime/cli/cli.py,sha256=_STqVMgRSaOa0GhWQDSMYEDY3r3yAHmEXbfk1Zfjb6s,1431
27
31
  agentscope_runtime/cli/commands/__init__.py,sha256=MylJNzS3HeGgqekkD0pYg5MALiK_GK7pDArFXZDF9pk,59
28
32
  agentscope_runtime/cli/commands/chat.py,sha256=Ttm62VpgSEe_GMLWqfewGfnt33ZZNlZ0nITUn3IBWEE,29776
29
- agentscope_runtime/cli/commands/deploy.py,sha256=AvcaI50-7NN0tRIlJ-pXWCbNAbYeua88AIvV4aEX2-E,32817
33
+ agentscope_runtime/cli/commands/deploy.py,sha256=lsh2XOIoDMitrVzNXDRXSFmyV5qx8vv6t-Ni5rCR29w,44269
30
34
  agentscope_runtime/cli/commands/invoke.py,sha256=4AYswJ7ErPAlX-gWGhFRUBiwOXeuPl0fa_Dha6edqGY,1381
31
35
  agentscope_runtime/cli/commands/list_cmd.py,sha256=SZTx58e323u_agtZJJfbzgfD1srk_qW0R-uWKd4Ifiw,2581
32
36
  agentscope_runtime/cli/commands/run.py,sha256=L8F8Ph0RFA_QPcF7flrdEWHJK8nYuFoTtUDH4qdg5Xo,5139
@@ -56,31 +60,34 @@ agentscope_runtime/common/container_clients/agentrun_client.py,sha256=nibFHR5N3t
56
60
  agentscope_runtime/common/container_clients/base_client.py,sha256=_uvxRh65lbMNXDcHjq01aYuNUrcxRlNzRtRIPMgWFGc,992
57
61
  agentscope_runtime/common/container_clients/docker_client.py,sha256=eP7NcUWdTuV1wwF9FeuQCZBDrVOUVRiKOcz3GYD4K-o,7724
58
62
  agentscope_runtime/common/container_clients/fc_client.py,sha256=l10m0Xdu4k41P4MQBLEH5lm_HJEZjMJTk_v0YgYNHi4,32677
63
+ agentscope_runtime/common/container_clients/knative_client.py,sha256=xO1nmP67QVmZI41Ql9t8VCg0gHC09lY32pzWmmMFEf0,15867
59
64
  agentscope_runtime/common/container_clients/kubernetes_client.py,sha256=8_X091fbcR97_chFVMiWNDj5QmkBPG3tkS5zlXs-OCk,39550
60
65
  agentscope_runtime/common/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
66
  agentscope_runtime/common/utils/lazy_loader.py,sha256=YbhbKNJrm1d3adCZ6gM6ljZE0QCCcpt4yGDCjNWtkJ4,1937
62
- agentscope_runtime/engine/__init__.py,sha256=lJV0pGExSfUmyW43MNdTG06jOTNnMrLHSgBS2AhYvyQ,656
63
- agentscope_runtime/engine/constant.py,sha256=KOXujjNLky8Jcm8D_gPhQLsQdzPcU4RfrQzAvJUCrpU,128
64
- agentscope_runtime/engine/runner.py,sha256=kf682awGWCKhEXOq9-S4dxKiulsYPmg4UJkiSpuf5Jg,9967
67
+ agentscope_runtime/engine/__init__.py,sha256=qDdrSixs7QjlZ4DxNCt7NdjVPEIIk2wREpYzDxuZYCU,798
68
+ agentscope_runtime/engine/constant.py,sha256=PQzLbA2T19vprS6lvb0xhM26zt_umjQ6VbNcsQo2Ylc,154
69
+ agentscope_runtime/engine/runner.py,sha256=W5zdYIl9kRIShLec7ehKctaCfC5vwTH2E9ClGUvrYdg,10483
65
70
  agentscope_runtime/engine/app/__init__.py,sha256=8asUQNRTjIEyoWjl955mn3gLkcYna8-CK4A810Eol0Y,87
66
71
  agentscope_runtime/engine/app/agent_app.py,sha256=Gc28kxTFp8dF0PapJbBX4hGethiWO2vIPbS5WL3fjXc,12875
67
72
  agentscope_runtime/engine/app/base_app.py,sha256=ILLp4GUVslRtLxSjCTrpTX6f1E5QhM9oXefxy4sA28I,2290
68
73
  agentscope_runtime/engine/app/celery_mixin.py,sha256=fDPc4loHieUXvgJYRYWAv-3qOSssdbfKH9Fiu-ShrIs,2929
69
- agentscope_runtime/engine/deployers/__init__.py,sha256=goBDVczK_iEzSQ7H4comkFCr6vEwuTXCo87yktRj8Vg,555
70
- agentscope_runtime/engine/deployers/agentrun_deployer.py,sha256=hNYhTPIBkXvCDvvuKdMzFmESsAyVFtBsq_NPD-z-zMo,106117
74
+ agentscope_runtime/engine/deployers/__init__.py,sha256=3ujcnAcePoeT7y93nLW6tYQwSY5PY-UWHa38FpL9K6g,797
75
+ agentscope_runtime/engine/deployers/agentrun_deployer.py,sha256=flJRl6b_RnpoiiRCv9Z0GlyuxIDszf8FRvnLOcE_rAw,106119
71
76
  agentscope_runtime/engine/deployers/base.py,sha256=X4Vdu1x_ln0GK3aB_SSMaFoWDRYjh9nQT-mPOxWwkXY,1393
72
77
  agentscope_runtime/engine/deployers/cli_fc_deploy.py,sha256=OZ6vn6t3FEKQJgbxADvPM5S90WP7OJGdBEBc-te_GiE,6063
78
+ agentscope_runtime/engine/deployers/fc_deployer.py,sha256=sIJvRp_W54C0daSnbn3LLt0NezkayGVE5ItPtUH5EdM,56445
79
+ agentscope_runtime/engine/deployers/knative_deployer.py,sha256=c5wy2h2TtQ82A5L4Sp_xLMni3SWSeujtohC7GwK11F8,9751
73
80
  agentscope_runtime/engine/deployers/kubernetes_deployer.py,sha256=5sc2cMvB19zERTpphhyDKFohO9-YHtucNeGSlfbUICk,13548
74
81
  agentscope_runtime/engine/deployers/local_deployer.py,sha256=mmEk5kSRqQW5Z32Gm3PWNphCu2QXisAoejWmDI5XBVk,22485
75
82
  agentscope_runtime/engine/deployers/modelstudio_deployer.py,sha256=Pyb4XubHFUm78hm3NbUBC0FWm91-KWuzI4FlaqSJfiQ,34912
76
83
  agentscope_runtime/engine/deployers/adapter/__init__.py,sha256=11R2POJNbfH5WE3hntYvhUOm_bq-LB-EaUGfbPwCHuQ,66
77
84
  agentscope_runtime/engine/deployers/adapter/protocol_adapter.py,sha256=OpLfBWiFY_xC0uG53UYSeQuUnw7vZzvNnm5w6QFr9_w,737
78
- agentscope_runtime/engine/deployers/adapter/a2a/__init__.py,sha256=KwY0UPs0VAoqjxWOr6NiwVtTfl-Vr5qtUYxeqQ0RdeU,1953
85
+ agentscope_runtime/engine/deployers/adapter/a2a/__init__.py,sha256=s1_skJDKRc70GIN95euZFwN4IV8EvGjRGwk-JvWe0S8,1169
79
86
  agentscope_runtime/engine/deployers/adapter/a2a/a2a_adapter_utils.py,sha256=7nuyfkN7rR8PjpWPKh2acsd9VztbtcZOQdzSp4dWVUY,10956
80
87
  agentscope_runtime/engine/deployers/adapter/a2a/a2a_agent_adapter.py,sha256=h7wwl2CiKcGUxhKkrWN7DpaIpTltoRm-6ETS_fJHmEk,2147
81
- agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py,sha256=aLBfigx4qe3eqSEQNqKbZAN6h3KAvVwp6JrNO6_BjEo,16307
82
- agentscope_runtime/engine/deployers/adapter/a2a/a2a_registry.py,sha256=JfynAUw2FIAGDneMLZUKsCJLFAuNP_TFLv-oUCnSSDE,8763
83
- agentscope_runtime/engine/deployers/adapter/a2a/nacos_a2a_registry.py,sha256=XDzs_4tOdJwFototk7cF_J7IGK_su0JUikMTupBYJUk,23848
88
+ agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py,sha256=L3B3X12S68ugGKaRyEmbFQN1Hh_h0iKSG_rdjRUQ5OI,16644
89
+ agentscope_runtime/engine/deployers/adapter/a2a/a2a_registry.py,sha256=sDnR1iIGP_vpgRrIcyrAJ26SFJ_RgolyJDkA2StRihA,2274
90
+ agentscope_runtime/engine/deployers/adapter/a2a/nacos_a2a_registry.py,sha256=nPCh7xbLiX3HGK_SV64KCbvjhFpizWq19qaLKt9XAbU,27295
84
91
  agentscope_runtime/engine/deployers/adapter/responses/__init__.py,sha256=0f1SVBagTz0Kex8kX9_QapqmBPJUHcRejnV4P39PaBc,93
85
92
  agentscope_runtime/engine/deployers/adapter/responses/response_api_adapter_utils.py,sha256=MmvLkHDbb1cQMS2kQKnS3FT_6DUOQRdL2vb_HMA6eFo,98448
86
93
  agentscope_runtime/engine/deployers/adapter/responses/response_api_agent_adapter.py,sha256=B3F1GOvu_HFFdH8gnKJtVlr8u34jjRV3iKMgVz1XHVY,1593
@@ -124,14 +131,14 @@ agentscope_runtime/engine/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
124
131
  agentscope_runtime/engine/services/base.py,sha256=g2hTc3ivj2MPjnsu5_09m6_MZ3KDHBfiYKu4F2pLA1I,2096
125
132
  agentscope_runtime/engine/services/service_factory.py,sha256=LTLU6sxlaRL1GtBmXKvBxRD2E8eh2xla6XLVyFH_CFQ,3580
126
133
  agentscope_runtime/engine/services/agent_state/__init__.py,sha256=zASW6ZxMbaVQ3bz85riQ8HF2svk1b8SUxlrPUVL03ng,571
127
- agentscope_runtime/engine/services/agent_state/redis_state_service.py,sha256=3NZDLoVK9tKcv40jC1JzD_6d5D52vubvUxOmDgNvnlE,5879
134
+ agentscope_runtime/engine/services/agent_state/redis_state_service.py,sha256=XjZ0y05Wkc0JoQEZevBhaC-eCvJxVKQZBoq21RLH1YM,5883
128
135
  agentscope_runtime/engine/services/agent_state/state_service.py,sha256=Z7vaZidnU963ldkqCEPTt5MiE5IJGJq0YnMMn5sehQc,5302
129
136
  agentscope_runtime/engine/services/agent_state/state_service_factory.py,sha256=Ze-smpoJXaQxZG4OuzCjQ9fPqfvoMM3xCT7-ZvYmU8I,1589
130
137
  agentscope_runtime/engine/services/memory/__init__.py,sha256=KZTLEqUE8CdD5JcY01ZpHAhS54N9bwYD0wwUIgSD4cA,1094
131
138
  agentscope_runtime/engine/services/memory/mem0_memory_service.py,sha256=jmiaFncOBAlx-plEcnz8ljck1Pwi0_czWBOSM7JIJnA,3694
132
139
  agentscope_runtime/engine/services/memory/memory_service.py,sha256=QNNvG3ccUiWznQfKNTtSbYqqcuoA2IJW_9xmNb1KMQI,8591
133
140
  agentscope_runtime/engine/services/memory/memory_service_factory.py,sha256=XLWriAldbRHHczcdzDK3tKaNfK5KrOYCNUUgeE5spbU,4031
134
- agentscope_runtime/engine/services/memory/redis_memory_service.py,sha256=XA2piOaxsw2mnOUDi0n5coC4d1gHUAeIDBfIlkg6x60,10699
141
+ agentscope_runtime/engine/services/memory/redis_memory_service.py,sha256=jV4sCmzwl_xQjKLXJac3UdqekbgOx7psJGMzGfT-FRg,10703
135
142
  agentscope_runtime/engine/services/memory/reme_personal_memory_service.py,sha256=6wbCL5IRJG5GPQqFuy4yN-tARDG30CgKtJ--iKiUowQ,3007
136
143
  agentscope_runtime/engine/services/memory/reme_task_memory_service.py,sha256=dLIhWfqKZEeXB1r7f8EKPftL2lk4f60TdlCNdQNolNk,330
137
144
  agentscope_runtime/engine/services/memory/tablestore_memory_service.py,sha256=Pf1nyk5d5X7h8Iuy1e7ROCNlap9cmG--TFm7fZNUZ90,10335
@@ -139,7 +146,7 @@ agentscope_runtime/engine/services/sandbox/__init__.py,sha256=eaneUQzqUfWrfdtc8M
139
146
  agentscope_runtime/engine/services/sandbox/sandbox_service.py,sha256=KwJ0FRKxaiAMHKc1w4O6wmLigI_wBmZcgSyMu3L4X1k,6559
140
147
  agentscope_runtime/engine/services/sandbox/sandbox_service_factory.py,sha256=VMx-TeY4gghYU-CEY38M5Q9NoinfE05IfVq57Cu4X08,1595
141
148
  agentscope_runtime/engine/services/session_history/__init__.py,sha256=iTKbWEulLK9TtyQJHl9euam6xSlbY-8yKo2vgNAJ8Qc,929
142
- agentscope_runtime/engine/services/session_history/redis_session_history_service.py,sha256=ufTyPydJl9OxMTR7mjsJvbuw-prmaqwuJ6DnxGSm5Eo,10138
149
+ agentscope_runtime/engine/services/session_history/redis_session_history_service.py,sha256=c-ULzpQS8yAm1FReETkcUJWUMqookT4ZycUVBdMFCA8,10142
143
150
  agentscope_runtime/engine/services/session_history/session_history_service.py,sha256=-UHa_OVC8TYPcZcATXE6-pTI0o5dtPwQoVpVi-OjwNE,8476
144
151
  agentscope_runtime/engine/services/session_history/session_history_service_factory.py,sha256=r8Ro_IdRSzAN6iSHo5MzHSld5UGr-GuHmfIhwQ1iQMM,2307
145
152
  agentscope_runtime/engine/services/session_history/tablestore_session_history_service.py,sha256=4PuUC7j7ZROD_cBTVMpmzgea410bnRy4oLu8H7cA2Xg,10160
@@ -152,43 +159,43 @@ agentscope_runtime/engine/tracing/local_logging_handler.py,sha256=scx_eJeZHonLYk
152
159
  agentscope_runtime/engine/tracing/message_util.py,sha256=9ldwWNcm6VqAZ04orHOf8namw0I0CEiU5v89fyKEO_c,18551
153
160
  agentscope_runtime/engine/tracing/tracing_metric.py,sha256=X1m6yjLx_hnbmozsCxiW9X3t1gWgrKlbsYEfCMqNSx0,2375
154
161
  agentscope_runtime/engine/tracing/tracing_util.py,sha256=tzY-vp4k6BzfjHIIpQLrrgswsxQVMiCVMp6gQXFnzDY,3820
155
- agentscope_runtime/engine/tracing/wrapper.py,sha256=mgvkdBrIjOt-q7UMSX77gsO7TVzl2PyDdoFUEv8rr-o,31524
156
- agentscope_runtime/sandbox/__init__.py,sha256=Rjueu4FRl0ieis-XwHDbW81kopNVudhNRMIso9gAOSo,869
162
+ agentscope_runtime/engine/tracing/wrapper.py,sha256=Gm4Ln4QLzumetx_siN5cC5m6ohr_OUqSkLnMowqSefY,31979
163
+ agentscope_runtime/sandbox/__init__.py,sha256=zDqWKH69cRv0IhrtY746lNxm428pwyi38weoc5X7KYk,1112
157
164
  agentscope_runtime/sandbox/build.py,sha256=WS1nTvVmFwt5JIJiYb1qBcnSnTucC6_R4ps0wSivQX0,8509
158
165
  agentscope_runtime/sandbox/constant.py,sha256=NzpxJ1hBDkP9J_c45FsG3iDgBkfEkIlkSKjc4X78tiU,1011
159
- agentscope_runtime/sandbox/enums.py,sha256=8aAilIiP9Gw4SsPmhsDvGLo7D2ElZ2n0hRCU1TwmCio,1920
166
+ agentscope_runtime/sandbox/enums.py,sha256=sAQyJHvqmy-Cs3sggI4dvLXmvwL414lsxibD7g7kVeU,2111
160
167
  agentscope_runtime/sandbox/mcp_server.py,sha256=UT3aRZqyeHqEhhm-wZ0Ilhew3eDMHzz9DCN6Qb-eKFk,6012
161
168
  agentscope_runtime/sandbox/registry.py,sha256=3ukwbTOjSINWH7DIOmG1iPgze5nb-zXl2X8M7_AeBwg,4190
162
169
  agentscope_runtime/sandbox/utils.py,sha256=XH0t0QJMUt5RFACa_7FGo5YIC0Z3tPtdBsOtnCovPJU,3199
163
170
  agentscope_runtime/sandbox/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
- agentscope_runtime/sandbox/box/sandbox.py,sha256=-BWme4Zxx9xWssRXf6KzH3RVueR9MuzcOcN8Gdu7mTg,5309
171
+ agentscope_runtime/sandbox/box/sandbox.py,sha256=1sxeu4YGUs-Q3CdmSsZJZPx5Av4t2-xX7qJDDKEWGeQ,6197
165
172
  agentscope_runtime/sandbox/box/agentbay/__init__.py,sha256=R-KRTawGZwblLBh0ZrXz2ESaV8biE3pLqVXUcLUI1-g,101
166
173
  agentscope_runtime/sandbox/box/agentbay/agentbay_sandbox.py,sha256=id19HKUq2RFDZHW90UlGj74ZKkknbK5juL1w4qniC0g,17827
167
- agentscope_runtime/sandbox/box/base/__init__.py,sha256=a68IgljSWvNn1mWaCOeEm2C-7Gf7JiUdDnJpBfID198,89
168
- agentscope_runtime/sandbox/box/base/base_sandbox.py,sha256=H0MGEVpM9q6a7Ts2EfslNfWgeGuBUtL8ISvAkv34zQA,1323
174
+ agentscope_runtime/sandbox/box/base/__init__.py,sha256=iOx8xRc929N4FBURgrfTJ_X2exGWq41GwYVaOwCZqDU,127
175
+ agentscope_runtime/sandbox/box/base/base_sandbox.py,sha256=ByvpG16LgKKQ2KR9MClY7QuhyhgqF_xh6O3q6zDGYCI,2693
169
176
  agentscope_runtime/sandbox/box/base/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
- agentscope_runtime/sandbox/box/browser/__init__.py,sha256=thrkAvtLQ23jR8sM_bSsfmsqFiwpExgh72vnrVUcweQ,98
171
- agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=oCDD2cp9Mc7mTDi6gFXPlH7jjpOGnxBBlai5JGiJQIc,9380
177
+ agentscope_runtime/sandbox/box/browser/__init__.py,sha256=io0rQzUVdH3c5vEqMegr0Z1YMfYPFqIkHKz4SAYqWGk,142
178
+ agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=Bbe2wDMYA4ddImKcJLEQmNvYC66XfWmlngTtGZkV-gQ,15417
172
179
  agentscope_runtime/sandbox/box/browser/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
180
  agentscope_runtime/sandbox/box/cloud/__init__.py,sha256=eydrq0JZ55M6WQry4E0N-By7P-3NnrXS1GwBYWbIovk,92
174
181
  agentscope_runtime/sandbox/box/cloud/cloud_sandbox.py,sha256=y5lh5C3UqgzHUmkb_VqQ7627653r2MZ7YLmxLna-Htw,7660
175
182
  agentscope_runtime/sandbox/box/dummy/__init__.py,sha256=RErHmUx7hFXX69nohtYBS_QSHEWENZHZbWG3434ZDls,92
176
183
  agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py,sha256=KAsCEbgZu48qklNMWLd7yPCb7TP1RPFXVi8CQ9Z-kPo,705
177
- agentscope_runtime/sandbox/box/filesystem/__init__.py,sha256=OsYCqFfattl6y5M55XMwHTeXVnb-pL3cWMJKjTZIu-s,107
178
- agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py,sha256=ORxCMAd32rs5BOBosyp7bYm2izwxvL2-h1YUziNl2cU,4834
184
+ agentscope_runtime/sandbox/box/filesystem/__init__.py,sha256=hn2leixVtV4EElud-tntd_v0RaFW5o_wGgxGTxGnSbo,157
185
+ agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py,sha256=N5Bl4R5mNH6QdXV1Yyvo0vPXqxebPjTQvdfAhYet2c8,8233
179
186
  agentscope_runtime/sandbox/box/filesystem/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
180
- agentscope_runtime/sandbox/box/gui/__init__.py,sha256=-tzNU2yYdKjXD83PlNaMtsu5nqO1yBi2LDevIda2eqo,108
181
- agentscope_runtime/sandbox/box/gui/gui_sandbox.py,sha256=UkVGcOX0naQZmxf2T6ltPIQ_FBL2YRZKfX5Iks6HoXY,5204
187
+ agentscope_runtime/sandbox/box/gui/__init__.py,sha256=CG-1to4gkfpePx3v4IHYMDJI0PKM58tRZTXcevoNWPU,176
188
+ agentscope_runtime/sandbox/box/gui/gui_sandbox.py,sha256=o4knVahT51aWsHJ0Grd5lVKiSaR-zDTPrrFokGq2dsQ,9989
182
189
  agentscope_runtime/sandbox/box/gui/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
- agentscope_runtime/sandbox/box/mobile/__init__.py,sha256=x9eL7XEw9oAZIzKr-_6UFbtkfTvfmXJ57Lmc4rXMyv0,95
184
- agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py,sha256=a-uynxbBPEXZ_nVNaocYtAzwiJRPwXxCeUVOAGYpQsE,10985
190
+ agentscope_runtime/sandbox/box/mobile/__init__.py,sha256=-pDTAO_tMeS3uJloT6F8zAuaPGMM4vKklvjKHMWN43k,137
191
+ agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py,sha256=rGtLL3OPkE7MMsURkxVTzh1W5DeORZAl6G_NGgTm1AY,15187
185
192
  agentscope_runtime/sandbox/box/mobile/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
186
193
  agentscope_runtime/sandbox/box/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
194
  agentscope_runtime/sandbox/box/shared/app.py,sha256=bw6l0XPVF86yuh0jO_Sx9S-B-luFE3U3lIb6Qjc3dGU,1107
188
195
  agentscope_runtime/sandbox/box/shared/dependencies/__init__.py,sha256=e1x-6L6vsBbQBrtjrDsdK8eqk-lCqxOIPrSqWyxoG50,98
189
196
  agentscope_runtime/sandbox/box/shared/dependencies/deps.py,sha256=pavJWhin5Dbc1f452PDNaCYo9RkK-y95dwLyYZQMOPQ,687
190
197
  agentscope_runtime/sandbox/box/shared/routers/__init__.py,sha256=QokVfRhfBftiXktqpn3iqdKcSz7TcSn-4Kbf4QhOUXs,273
191
- agentscope_runtime/sandbox/box/shared/routers/generic.py,sha256=5hIwNPpC2Pu4uTqKWGcymBKXdKqbYEsyOYD4Vv7XR44,5164
198
+ agentscope_runtime/sandbox/box/shared/routers/generic.py,sha256=oOzLMljVDLpQsNRKxPqTftgfR5VEBnbZTZ58BnbwiZ4,5473
192
199
  agentscope_runtime/sandbox/box/shared/routers/mcp.py,sha256=_2492A88qba3hUPV67oexfWm-mHEFcr9ygzW-Qqhyi0,6046
193
200
  agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py,sha256=K3t4fg6latjD2bdYpRVB4SdAcN2AjIXOhhh2lnx4YOM,6449
194
201
  agentscope_runtime/sandbox/box/shared/routers/runtime_watcher.py,sha256=v4jAGYtJaYsRJaSTv7e7hmDLHWVAtJqnSnpPq-kFcmU,5344
@@ -204,16 +211,18 @@ agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_dataprocess.p
204
211
  agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_env.py,sha256=22hfq1yO5abZocG8FfaabCXD4HGg-RT_8AY1dHbtvxM,11878
205
212
  agentscope_runtime/sandbox/box/training_box/environments/bfcl/env_handler.py,sha256=T-W9w4nKI7_BXgF9caqV3KMeX5d6yvdfhQu0o2oWTUE,30114
206
213
  agentscope_runtime/sandbox/box/training_box/src/trajectory.py,sha256=cFr3uVUPq5gHKPa6ALi7QCLBVkgYOyPgyJrOzgBHf3k,7885
207
- agentscope_runtime/sandbox/client/__init__.py,sha256=KiNsTToc1jICqCC1BcH762jZgHuOkCPiG32oXGo6dQE,176
208
- agentscope_runtime/sandbox/client/http_client.py,sha256=ffP2jqWfBbHzbms-S1D9jDIDZZ-6r54Y-XEK4FuDIP4,18010
214
+ agentscope_runtime/sandbox/client/__init__.py,sha256=xGsWWx5FNBeMbv-u14U19nud2RTS-jUsLhjMol8EEUo,271
215
+ agentscope_runtime/sandbox/client/async_http_client.py,sha256=dadHqpKTYhH03gShlsx6rAkDdH5unQvJOQnUpqtu83s,10179
216
+ agentscope_runtime/sandbox/client/base.py,sha256=6kbYyxbWyOCJluWJZSbyC3vGnsmgeS7AsaGD72Ib-Y8,2414
217
+ agentscope_runtime/sandbox/client/http_client.py,sha256=2WOx-Cj8RTlHjs7KoEInp4Vsh5ogkrQzeZPsJus0mHI,9963
209
218
  agentscope_runtime/sandbox/client/training_client.py,sha256=WIhGBib2IWQZwUoSJUn8kuIGrtd6Yz3VOxCh0tft630,7625
210
219
  agentscope_runtime/sandbox/custom/__init__.py,sha256=wpu0DlzdLohYzOVM9yZloIWid3w_ME6dPtOjCZKbRZ8,463
211
220
  agentscope_runtime/sandbox/custom/custom_sandbox.py,sha256=ZKE7otTimLZ2-ZV9PMVLRA6P1hH0a4fT-d_K4Ga59og,1008
212
221
  agentscope_runtime/sandbox/custom/example.py,sha256=iU5G7Vb-oq3wsJ_Kl8oFAwi0HNbt5V_8fWAAyiQ8RuY,964
213
222
  agentscope_runtime/sandbox/manager/__init__.py,sha256=KNHc1uDaUWBH_ZnWjH5NHRBiQM_zDyi9B2xKVNtAWIg,98
214
- agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=EWrccNdodFHr_w4jkhZUIGJ5RrhpKA-hdYuXklRQXlM,27958
223
+ agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=vqChg_rzcjKEtVeJKSHWeL_qrXl5JRjomlQvlzIpVO0,36800
215
224
  agentscope_runtime/sandbox/manager/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
- agentscope_runtime/sandbox/manager/server/app.py,sha256=Qa6443dBuqg41hslqw14SsN7UPQJ-CqI3z5DU5Xpf3c,13641
225
+ agentscope_runtime/sandbox/manager/server/app.py,sha256=JgvKwcMJtgcQRKbNw2AOzHBZrTPOUWT7Xg6YpQJqwYI,13877
217
226
  agentscope_runtime/sandbox/manager/server/config.py,sha256=yXiricKpA_r2zoMF7YpRgIxtJck89rzN9iwaVVLhK60,4451
218
227
  agentscope_runtime/sandbox/manager/server/models.py,sha256=rCibF0HsotFcqsQVTSUoOTJCFQU3oqKvpOiWMWIRLyY,304
219
228
  agentscope_runtime/sandbox/manager/storage/__init__.py,sha256=jGmpfXV1E2X7AqkGeF1xu1EHiSTvbH3TSIviLbKBFh4,210
@@ -270,9 +279,9 @@ agentscope_runtime/tools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
270
279
  agentscope_runtime/tools/utils/api_key_util.py,sha256=xIIUsvWgSt4etgYP7lS0WnqVIhZ-REzrBLwzAT-TrVI,1210
271
280
  agentscope_runtime/tools/utils/crypto_utils.py,sha256=Wqq4cn3FHQge-2Q1zGSMUyKh4V4A2baiZm8ZNhMqhPo,3382
272
281
  agentscope_runtime/tools/utils/mcp_util.py,sha256=n3GGKBEQPJ-fiNXdYnBx_90GVKWvm9eaNbR2G0q2lOw,905
273
- agentscope_runtime-1.0.3.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
274
- agentscope_runtime-1.0.3.dist-info/METADATA,sha256=KoJsVx5T_5LBQwqALpH3i9syI4PqC1MrBfk533Sq3zQ,41660
275
- agentscope_runtime-1.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
276
- agentscope_runtime-1.0.3.dist-info/entry_points.txt,sha256=Mpjpwe0A9lYNsFtWe_VeoGhtDVsKLIi6w9ZKzyhc17M,425
277
- agentscope_runtime-1.0.3.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
278
- agentscope_runtime-1.0.3.dist-info/RECORD,,
282
+ agentscope_runtime-1.0.4.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
283
+ agentscope_runtime-1.0.4.dist-info/METADATA,sha256=2kXFLpqF8-msJYInOco92GpJzT0BAQNYkWqgdDOyVV8,46474
284
+ agentscope_runtime-1.0.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
285
+ agentscope_runtime-1.0.4.dist-info/entry_points.txt,sha256=Mpjpwe0A9lYNsFtWe_VeoGhtDVsKLIi6w9ZKzyhc17M,425
286
+ agentscope_runtime-1.0.4.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
287
+ agentscope_runtime-1.0.4.dist-info/RECORD,,