agentscope-runtime 1.0.2__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.
- agentscope_runtime/adapters/agentscope/stream.py +2 -9
- agentscope_runtime/adapters/ms_agent_framework/__init__.py +0 -0
- agentscope_runtime/adapters/ms_agent_framework/message.py +205 -0
- agentscope_runtime/adapters/ms_agent_framework/stream.py +418 -0
- agentscope_runtime/adapters/utils.py +6 -0
- agentscope_runtime/cli/commands/deploy.py +383 -0
- agentscope_runtime/common/collections/redis_mapping.py +4 -1
- agentscope_runtime/common/container_clients/knative_client.py +466 -0
- agentscope_runtime/engine/__init__.py +4 -0
- agentscope_runtime/engine/app/agent_app.py +48 -5
- agentscope_runtime/engine/constant.py +1 -0
- agentscope_runtime/engine/deployers/__init__.py +12 -0
- agentscope_runtime/engine/deployers/adapter/a2a/__init__.py +31 -1
- agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py +458 -41
- agentscope_runtime/engine/deployers/adapter/a2a/a2a_registry.py +76 -0
- agentscope_runtime/engine/deployers/adapter/a2a/nacos_a2a_registry.py +749 -0
- agentscope_runtime/engine/deployers/agentrun_deployer.py +2 -2
- agentscope_runtime/engine/deployers/fc_deployer.py +1506 -0
- agentscope_runtime/engine/deployers/knative_deployer.py +290 -0
- agentscope_runtime/engine/deployers/kubernetes_deployer.py +3 -0
- agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py +8 -2
- agentscope_runtime/engine/deployers/utils/docker_image_utils/image_factory.py +5 -0
- agentscope_runtime/engine/deployers/utils/net_utils.py +65 -0
- agentscope_runtime/engine/runner.py +17 -3
- agentscope_runtime/engine/schemas/exception.py +24 -0
- agentscope_runtime/engine/services/agent_state/redis_state_service.py +61 -8
- agentscope_runtime/engine/services/agent_state/state_service_factory.py +2 -5
- agentscope_runtime/engine/services/memory/redis_memory_service.py +129 -25
- agentscope_runtime/engine/services/session_history/redis_session_history_service.py +160 -34
- agentscope_runtime/engine/tracing/wrapper.py +18 -4
- agentscope_runtime/sandbox/__init__.py +14 -6
- agentscope_runtime/sandbox/box/base/__init__.py +2 -2
- agentscope_runtime/sandbox/box/base/base_sandbox.py +51 -1
- agentscope_runtime/sandbox/box/browser/__init__.py +2 -2
- agentscope_runtime/sandbox/box/browser/browser_sandbox.py +198 -2
- agentscope_runtime/sandbox/box/filesystem/__init__.py +2 -2
- agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py +99 -2
- agentscope_runtime/sandbox/box/gui/__init__.py +2 -2
- agentscope_runtime/sandbox/box/gui/gui_sandbox.py +117 -1
- agentscope_runtime/sandbox/box/mobile/__init__.py +2 -2
- agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py +247 -100
- agentscope_runtime/sandbox/box/sandbox.py +98 -65
- agentscope_runtime/sandbox/box/shared/routers/generic.py +36 -29
- agentscope_runtime/sandbox/build.py +50 -57
- agentscope_runtime/sandbox/client/__init__.py +6 -1
- agentscope_runtime/sandbox/client/async_http_client.py +339 -0
- agentscope_runtime/sandbox/client/base.py +74 -0
- agentscope_runtime/sandbox/client/http_client.py +108 -329
- agentscope_runtime/sandbox/enums.py +7 -0
- agentscope_runtime/sandbox/manager/sandbox_manager.py +264 -4
- agentscope_runtime/sandbox/manager/server/app.py +7 -1
- agentscope_runtime/version.py +1 -1
- {agentscope_runtime-1.0.2.dist-info → agentscope_runtime-1.0.4.dist-info}/METADATA +109 -29
- {agentscope_runtime-1.0.2.dist-info → agentscope_runtime-1.0.4.dist-info}/RECORD +58 -46
- {agentscope_runtime-1.0.2.dist-info → agentscope_runtime-1.0.4.dist-info}/WHEEL +0 -0
- {agentscope_runtime-1.0.2.dist-info → agentscope_runtime-1.0.4.dist-info}/entry_points.txt +0 -0
- {agentscope_runtime-1.0.2.dist-info → agentscope_runtime-1.0.4.dist-info}/licenses/LICENSE +0 -0
- {agentscope_runtime-1.0.2.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
|
+
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
|
|
@@ -51,7 +51,7 @@ Requires-Dist: alibabacloud_tea_openapi>=0.4.0; extra == "ext"
|
|
|
51
51
|
Requires-Dist: alibabacloud-fc20230330>=4.4.0; extra == "ext"
|
|
52
52
|
Requires-Dist: tablestore-for-agent-memory>=1.1.0; extra == "ext"
|
|
53
53
|
Requires-Dist: langchain-community>=0.3.27; extra == "ext"
|
|
54
|
-
Requires-Dist: wuying-agentbay-sdk
|
|
54
|
+
Requires-Dist: wuying-agentbay-sdk<0.13.0,>=0.5.0; extra == "ext"
|
|
55
55
|
Requires-Dist: alipay-sdk-python; extra == "ext"
|
|
56
56
|
Requires-Dist: cryptography; extra == "ext"
|
|
57
57
|
Requires-Dist: gunicorn>=20.0.0; extra == "ext"
|
|
@@ -66,6 +66,8 @@ Requires-Dist: wheel; extra == "ext"
|
|
|
66
66
|
Requires-Dist: alibabacloud-credentials; extra == "ext"
|
|
67
67
|
Requires-Dist: PyYAML; extra == "ext"
|
|
68
68
|
Requires-Dist: agno>=2.3.8; extra == "ext"
|
|
69
|
+
Requires-Dist: nacos-sdk-python>=3.0.0; extra == "ext"
|
|
70
|
+
Requires-Dist: agent-framework>=1.0.0b251120; extra == "ext"
|
|
69
71
|
Dynamic: license-file
|
|
70
72
|
|
|
71
73
|
<div align="center">
|
|
@@ -73,6 +75,7 @@ Dynamic: license-file
|
|
|
73
75
|
# AgentScope Runtime v1.0
|
|
74
76
|
|
|
75
77
|
[](https://github.com/agentscope-ai/agentscope-runtime)
|
|
78
|
+
[](http://webui.runtime.agentscope.io/)
|
|
76
79
|
[](https://pypi.org/project/agentscope-runtime/)
|
|
77
80
|
[](https://pepy.tech/project/agentscope-runtime)
|
|
78
81
|
[](https://python.org)
|
|
@@ -90,6 +93,7 @@ Dynamic: license-file
|
|
|
90
93
|
[](https://qr.dingtalk.com/action/joingroup?code=v1,k1,OmDlBXpjW+I2vWjKDsjvI9dhcXjGZi3bQiojOq3dlDw=&_dt_no_comment=1&origin=11)
|
|
91
94
|
|
|
92
95
|
[[Cookbook]](https://runtime.agentscope.io/)
|
|
96
|
+
[[Try WebUI]](http://webui.runtime.agentscope.io/)
|
|
93
97
|
[[中文README]](README_zh.md)
|
|
94
98
|
[[Samples]](https://github.com/agentscope-ai/agentscope-samples)
|
|
95
99
|
|
|
@@ -105,6 +109,7 @@ Dynamic: license-file
|
|
|
105
109
|
|
|
106
110
|
## 🆕 NEWS
|
|
107
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.
|
|
108
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.
|
|
109
114
|
|
|
110
115
|
---
|
|
@@ -124,11 +129,11 @@ Dynamic: license-file
|
|
|
124
129
|
>
|
|
125
130
|
> | Framework/Feature | Message/Event | Tool | Service |
|
|
126
131
|
> | ------------------------------------------------------------ | ------------- | ---- | ------- |
|
|
127
|
-
> | AgentScope
|
|
132
|
+
> | [AgentScope](https://runtime.agentscope.io/en/quickstart.html) | ✅ | ✅ | ✅ |
|
|
128
133
|
> | [LangGraph](https://runtime.agentscope.io/en/langgraph_guidelines.html) | ✅ | 🚧 | 🚧 |
|
|
129
|
-
> |
|
|
130
|
-
> | Microsoft Agent Framework | 🚧 | 🚧 | 🚧 |
|
|
134
|
+
> | [Microsoft Agent Framework](https://runtime.agentscope.io/en/ms_agent_framework_guidelines.html) | ✅ | ✅ | 🚧 |
|
|
131
135
|
> | [Agno](https://runtime.agentscope.io/en/agno_guidelines.html) | ✅ | ✅ | 🚧 |
|
|
136
|
+
> | AutoGen | 🚧 | ✅ | 🚧 |
|
|
132
137
|
|
|
133
138
|
---
|
|
134
139
|
|
|
@@ -328,15 +333,29 @@ These examples demonstrate how to create sandboxed environments and execute tool
|
|
|
328
333
|
|
|
329
334
|
> [!NOTE]
|
|
330
335
|
>
|
|
331
|
-
>
|
|
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.
|
|
332
337
|
>
|
|
333
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)
|
|
334
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
|
+
|
|
335
353
|
#### Base Sandbox
|
|
336
354
|
|
|
337
355
|
Use for running **Python code** or **shell commands** in an isolated environment.
|
|
338
356
|
|
|
339
357
|
```python
|
|
358
|
+
# --- Synchronous version ---
|
|
340
359
|
from agentscope_runtime.sandbox import BaseSandbox
|
|
341
360
|
|
|
342
361
|
with BaseSandbox() as box:
|
|
@@ -345,6 +364,15 @@ with BaseSandbox() as box:
|
|
|
345
364
|
print(box.run_ipython_cell(code="print('hi')")) # Run Python code
|
|
346
365
|
print(box.run_shell_command(command="echo hello")) # Run shell command
|
|
347
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
|
|
348
376
|
```
|
|
349
377
|
|
|
350
378
|
#### GUI Sandbox
|
|
@@ -354,14 +382,26 @@ Provides a **virtual desktop** environment for mouse, keyboard, and screen opera
|
|
|
354
382
|
<img src="https://img.alicdn.com/imgextra/i2/O1CN01df5SaM1xKFQP4KGBW_!!6000000006424-2-tps-2958-1802.png" alt="GUI Sandbox" width="800" height="500">
|
|
355
383
|
|
|
356
384
|
```python
|
|
385
|
+
# --- Synchronous version ---
|
|
357
386
|
from agentscope_runtime.sandbox import GuiSandbox
|
|
358
387
|
|
|
359
388
|
with GuiSandbox() as box:
|
|
360
389
|
# By default, pulls `agentscope/runtime-sandbox-gui:latest` from DockerHub
|
|
361
|
-
print(box.list_tools())
|
|
390
|
+
print(box.list_tools()) # List all available tools
|
|
362
391
|
print(box.desktop_url) # Web desktop access URL
|
|
363
392
|
print(box.computer_use(action="get_cursor_position")) # Get mouse cursor position
|
|
364
|
-
print(box.computer_use(action="get_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
|
|
365
405
|
input("Press Enter to continue...")
|
|
366
406
|
```
|
|
367
407
|
|
|
@@ -372,14 +412,25 @@ A GUI-based sandbox with **browser operations** inside an isolated sandbox.
|
|
|
372
412
|
<img src="https://img.alicdn.com/imgextra/i4/O1CN01OIq1dD1gAJMcm0RFR_!!6000000004101-2-tps-2734-1684.png" alt="GUI Sandbox" width="800" height="500">
|
|
373
413
|
|
|
374
414
|
```python
|
|
415
|
+
# --- Synchronous version ---
|
|
375
416
|
from agentscope_runtime.sandbox import BrowserSandbox
|
|
376
417
|
|
|
377
418
|
with BrowserSandbox() as box:
|
|
378
419
|
# By default, pulls `agentscope/runtime-sandbox-browser:latest` from DockerHub
|
|
379
|
-
print(box.list_tools())
|
|
420
|
+
print(box.list_tools()) # List all available tools
|
|
380
421
|
print(box.desktop_url) # Web desktop access URL
|
|
381
422
|
box.browser_navigate("https://www.google.com/") # Open a webpage
|
|
382
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...")
|
|
383
434
|
```
|
|
384
435
|
|
|
385
436
|
#### Filesystem Sandbox
|
|
@@ -389,13 +440,24 @@ A GUI-based sandbox with **file system operations** such as creating, reading, a
|
|
|
389
440
|
<img src="https://img.alicdn.com/imgextra/i3/O1CN01VocM961vK85gWbJIy_!!6000000006153-2-tps-2730-1686.png" alt="GUI Sandbox" width="800" height="500">
|
|
390
441
|
|
|
391
442
|
```python
|
|
392
|
-
|
|
443
|
+
# --- Synchronous version ---
|
|
444
|
+
from agentscope_runtime.sandbox import BrowserSandbox
|
|
393
445
|
|
|
394
|
-
with
|
|
395
|
-
# By default, pulls `agentscope/runtime-sandbox-
|
|
396
|
-
print(box.list_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
|
|
449
|
+
print(box.desktop_url) # Web desktop access URL
|
|
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
|
|
397
459
|
print(box.desktop_url) # Web desktop access URL
|
|
398
|
-
box.
|
|
460
|
+
await box.browser_navigate("https://www.google.com/") # Open a webpage
|
|
399
461
|
input("Press Enter to continue...")
|
|
400
462
|
```
|
|
401
463
|
|
|
@@ -420,16 +482,32 @@ Provides a **sandboxed Android emulator environment** that allows executing vari
|
|
|
420
482
|
- **Architecture Compatibility**:
|
|
421
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.
|
|
422
484
|
```python
|
|
485
|
+
# --- Synchronous version ---
|
|
423
486
|
from agentscope_runtime.sandbox import MobileSandbox
|
|
424
487
|
|
|
425
488
|
with MobileSandbox() as box:
|
|
426
489
|
# By default, pulls 'agentscope/runtime-sandbox-mobile:latest' from DockerHub
|
|
427
|
-
print(box.list_tools())
|
|
428
|
-
print(box.mobile_get_screen_resolution())
|
|
429
|
-
print(box.mobile_tap([500, 1000]))
|
|
430
|
-
print(box.mobile_input_text("Hello from AgentScope!"))
|
|
431
|
-
print(box.mobile_key_event(3))
|
|
432
|
-
screenshot_result = box.mobile_get_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)
|
|
433
511
|
input("Press Enter to continue...")
|
|
434
512
|
```
|
|
435
513
|
|
|
@@ -500,15 +578,11 @@ Example:
|
|
|
500
578
|
agentscope-registry.ap-southeast-1.cr.aliyuncs.com/agentscope/runtime-sandbox-base:preview
|
|
501
579
|
```
|
|
502
580
|
|
|
503
|
-
---
|
|
504
|
-
|
|
505
581
|
#### Serverless Sandbox Deployment
|
|
506
582
|
|
|
507
|
-
AgentScope Runtime also supports serverless deployment, which is suitable for running sandboxes in a serverless environment,
|
|
508
|
-
[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/).
|
|
509
584
|
|
|
510
|
-
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.
|
|
511
|
-
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.
|
|
512
586
|
|
|
513
587
|
Then, start a sandbox server, use the `--config` option to specify a serverless environment setup:
|
|
514
588
|
|
|
@@ -569,8 +643,7 @@ print(response)
|
|
|
569
643
|
```
|
|
570
644
|
|
|
571
645
|
Besides, `DeployManager` also supports serverless deployments, such as deploying your agent app
|
|
572
|
-
to [ModelStudio](https://bailian.console.aliyun.com/?admin=1&tab=doc#/doc/?type=app&url=2983030)
|
|
573
|
-
or [AgentRun](https://docs.agent.run/).
|
|
646
|
+
to [ModelStudio](https://bailian.console.aliyun.com/?admin=1&tab=doc#/doc/?type=app&url=2983030).
|
|
574
647
|
|
|
575
648
|
```python
|
|
576
649
|
from agentscope_runtime.engine.deployers import ModelStudioDeployManager
|
|
@@ -652,7 +725,7 @@ limitations under the License.
|
|
|
652
725
|
|
|
653
726
|
## Contributors ✨
|
|
654
727
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
655
|
-
[](#contributors-)
|
|
656
729
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
657
730
|
|
|
658
731
|
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/emoji-key/)):
|
|
@@ -695,6 +768,13 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/e
|
|
|
695
768
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/k-farruh"><img src="https://avatars.githubusercontent.com/u/33511681?v=4?s=100" width="100px;" alt="Farruh Kushnazarov"/><br /><sub><b>Farruh Kushnazarov</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=k-farruh" title="Documentation">📖</a></td>
|
|
696
769
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/fengxsong"><img src="https://avatars.githubusercontent.com/u/7008971?v=4?s=100" width="100px;" alt="fengxsong"/><br /><sub><b>fengxsong</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/issues?q=author%3Afengxsong" title="Bug reports">🐛</a></td>
|
|
697
770
|
<td align="center" valign="top" width="14.28%"><a href="https://m4n5ter.github.io"><img src="https://avatars.githubusercontent.com/u/68144809?v=4?s=100" width="100px;" alt="Wang"/><br /><sub><b>Wang</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=M4n5ter" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/issues?q=author%3AM4n5ter" title="Bug reports">🐛</a></td>
|
|
771
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/qiacheng7"><img src="https://avatars.githubusercontent.com/u/223075252?v=4?s=100" width="100px;" alt="qiacheng7"/><br /><sub><b>qiacheng7</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=qiacheng7" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=qiacheng7" title="Documentation">📖</a></td>
|
|
772
|
+
<td align="center" valign="top" width="14.28%"><a href="https://xieyxclack.github.io/"><img src="https://avatars.githubusercontent.com/u/31954383?v=4?s=100" width="100px;" alt="Yuexiang XIE"/><br /><sub><b>Yuexiang XIE</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/pulls?q=is%3Apr+reviewed-by%3Axieyxclack" title="Reviewed Pull Requests">👀</a></td>
|
|
773
|
+
</tr>
|
|
774
|
+
<tr>
|
|
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>
|
|
698
778
|
</tr>
|
|
699
779
|
</tbody>
|
|
700
780
|
<tfoot>
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
|
|
2
|
-
agentscope_runtime/version.py,sha256=
|
|
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=
|
|
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=
|
|
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
|
|
@@ -48,7 +52,7 @@ agentscope_runtime/common/collections/base_set.py,sha256=RasZxcXDkvdu89KhZc8Z_4T
|
|
|
48
52
|
agentscope_runtime/common/collections/in_memory_mapping.py,sha256=7qU-3C-CX5rPuDjWUH9lnH6yvKIwCfnRwMm2vXy1Olo,645
|
|
49
53
|
agentscope_runtime/common/collections/in_memory_queue.py,sha256=wTbmT77DI0KLYAgFbmcMl7sr5aB6WjyW_USQXqF9gJ0,612
|
|
50
54
|
agentscope_runtime/common/collections/in_memory_set.py,sha256=7qek5ZB3f_mdNJ4PUPoYv1yujHybdMjgpCYlFMosyMs,602
|
|
51
|
-
agentscope_runtime/common/collections/redis_mapping.py,sha256=
|
|
55
|
+
agentscope_runtime/common/collections/redis_mapping.py,sha256=bi2ku7SO9T6Z9jSUS4IOqJVVFZIG5fVPgmWKYcdi74g,1452
|
|
52
56
|
agentscope_runtime/common/collections/redis_queue.py,sha256=4MCIDs7SgSfdngTvqxWWv2H-8XTpFQOmXG4-fxN20ew,792
|
|
53
57
|
agentscope_runtime/common/collections/redis_set.py,sha256=eRCnMXc4hcDF2qyxFiNnrn2o4QjvtgDb6rEcblmV1o8,654
|
|
54
58
|
agentscope_runtime/common/container_clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -56,29 +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=
|
|
63
|
-
agentscope_runtime/engine/constant.py,sha256=
|
|
64
|
-
agentscope_runtime/engine/runner.py,sha256=
|
|
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
|
-
agentscope_runtime/engine/app/agent_app.py,sha256=
|
|
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=
|
|
70
|
-
agentscope_runtime/engine/deployers/agentrun_deployer.py,sha256=
|
|
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
|
|
73
|
-
agentscope_runtime/engine/deployers/
|
|
78
|
+
agentscope_runtime/engine/deployers/fc_deployer.py,sha256=sIJvRp_W54C0daSnbn3LLt0NezkayGVE5ItPtUH5EdM,56445
|
|
79
|
+
agentscope_runtime/engine/deployers/knative_deployer.py,sha256=c5wy2h2TtQ82A5L4Sp_xLMni3SWSeujtohC7GwK11F8,9751
|
|
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=
|
|
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=
|
|
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
|
|
82
91
|
agentscope_runtime/engine/deployers/adapter/responses/__init__.py,sha256=0f1SVBagTz0Kex8kX9_QapqmBPJUHcRejnV4P39PaBc,93
|
|
83
92
|
agentscope_runtime/engine/deployers/adapter/responses/response_api_adapter_utils.py,sha256=MmvLkHDbb1cQMS2kQKnS3FT_6DUOQRdL2vb_HMA6eFo,98448
|
|
84
93
|
agentscope_runtime/engine/deployers/adapter/responses/response_api_agent_adapter.py,sha256=B3F1GOvu_HFFdH8gnKJtVlr8u34jjRV3iKMgVz1XHVY,1593
|
|
@@ -92,12 +101,13 @@ agentscope_runtime/engine/deployers/utils/build_cache.py,sha256=VNbUIZQ_-s9HZufn
|
|
|
92
101
|
agentscope_runtime/engine/deployers/utils/deployment_modes.py,sha256=vr2UzA1bzAAzxjToj9bVGzRWm47Za6w6cDI0nF1NMD0,448
|
|
93
102
|
agentscope_runtime/engine/deployers/utils/detached_app.py,sha256=-6wTiqMYssKYDGduRMHeehuqvHigz9qoUMj-pereVpU,18707
|
|
94
103
|
agentscope_runtime/engine/deployers/utils/k8s_utils.py,sha256=lgVYTewDBhtSwigEJ3Fok39wwrXPTuPmonyaB6mmaOo,7381
|
|
104
|
+
agentscope_runtime/engine/deployers/utils/net_utils.py,sha256=X4zJw_BIhFPXqeoNKp7--V6gzjjR8InCue1vMU2SBQg,1721
|
|
95
105
|
agentscope_runtime/engine/deployers/utils/package.py,sha256=L7W5j6iAyVFYLOsotCbagnA_otfktQ6Y9DF_xG7fwc4,22970
|
|
96
106
|
agentscope_runtime/engine/deployers/utils/wheel_packager.py,sha256=GFMvLnLoQhs0joGfDz2x60Dy9WTMbpSNYP7XQgYP__E,14475
|
|
97
107
|
agentscope_runtime/engine/deployers/utils/docker_image_utils/__init__.py,sha256=DQlspd1dFOTV7GO82Jel5APuUqYkbjmpT72K1vb5SVw,235
|
|
98
108
|
agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py,sha256=5hnjfauzlbQf3j7v8EaPXCn6HsxkTB4NmbkPIBruF3Q,14179
|
|
99
|
-
agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py,sha256=
|
|
100
|
-
agentscope_runtime/engine/deployers/utils/docker_image_utils/image_factory.py,sha256=
|
|
109
|
+
agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py,sha256=f0uES7mM8n0qAM7-M4z-jFbQkWmHgBPsp9qo4CYgLC0,7946
|
|
110
|
+
agentscope_runtime/engine/deployers/utils/docker_image_utils/image_factory.py,sha256=LUwi3uxgr47C1DqYiWmslm08vD06vRoj3y11TSNUwkQ,13804
|
|
101
111
|
agentscope_runtime/engine/deployers/utils/service_utils/__init__.py,sha256=qYPjEoNP_eJXPc3j-ClR0GnQKYDa0udJ-ymVGV-IsOs,169
|
|
102
112
|
agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py,sha256=9e5qlsNbCuvHPrFvNSxL8XUh80p13MBvnrjvk2-J7NU,39030
|
|
103
113
|
agentscope_runtime/engine/deployers/utils/service_utils/fastapi_templates.py,sha256=xsfoQWKidfT-S9sQWLygcNG_vGsppLQDlwXtBw1nziE,4784
|
|
@@ -111,7 +121,7 @@ agentscope_runtime/engine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
111
121
|
agentscope_runtime/engine/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
122
|
agentscope_runtime/engine/schemas/agent_schemas.py,sha256=wNUl5khvOX21PJkpd7g5BRvCMHODSylI5OCE8096g-I,27030
|
|
113
123
|
agentscope_runtime/engine/schemas/embedding.py,sha256=yn6VaKPXkze0bvJuaLKzWIOus_AuT-8Z_XRABk4NH60,891
|
|
114
|
-
agentscope_runtime/engine/schemas/exception.py,sha256=
|
|
124
|
+
agentscope_runtime/engine/schemas/exception.py,sha256=eVZpZD77Dva5l_UsxRzCsgJ6bUOH1XQChP-iid5m37E,16003
|
|
115
125
|
agentscope_runtime/engine/schemas/modelstudio_llm.py,sha256=mi_1IWjaPq1W4IaVtVtIy-kwfUSFMfWKM3kaPu2KLC4,9803
|
|
116
126
|
agentscope_runtime/engine/schemas/oai_llm.py,sha256=U0lG4phFd5WYRoYomoprW87voaBm7Mm-N0uqfm5e-20,16645
|
|
117
127
|
agentscope_runtime/engine/schemas/realtime.py,sha256=caTRKLfCF9v-tKbdurvqMZ1myM9-ft2UeCNuiUIUmEs,7144
|
|
@@ -121,14 +131,14 @@ agentscope_runtime/engine/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
121
131
|
agentscope_runtime/engine/services/base.py,sha256=g2hTc3ivj2MPjnsu5_09m6_MZ3KDHBfiYKu4F2pLA1I,2096
|
|
122
132
|
agentscope_runtime/engine/services/service_factory.py,sha256=LTLU6sxlaRL1GtBmXKvBxRD2E8eh2xla6XLVyFH_CFQ,3580
|
|
123
133
|
agentscope_runtime/engine/services/agent_state/__init__.py,sha256=zASW6ZxMbaVQ3bz85riQ8HF2svk1b8SUxlrPUVL03ng,571
|
|
124
|
-
agentscope_runtime/engine/services/agent_state/redis_state_service.py,sha256=
|
|
134
|
+
agentscope_runtime/engine/services/agent_state/redis_state_service.py,sha256=XjZ0y05Wkc0JoQEZevBhaC-eCvJxVKQZBoq21RLH1YM,5883
|
|
125
135
|
agentscope_runtime/engine/services/agent_state/state_service.py,sha256=Z7vaZidnU963ldkqCEPTt5MiE5IJGJq0YnMMn5sehQc,5302
|
|
126
|
-
agentscope_runtime/engine/services/agent_state/state_service_factory.py,sha256=
|
|
136
|
+
agentscope_runtime/engine/services/agent_state/state_service_factory.py,sha256=Ze-smpoJXaQxZG4OuzCjQ9fPqfvoMM3xCT7-ZvYmU8I,1589
|
|
127
137
|
agentscope_runtime/engine/services/memory/__init__.py,sha256=KZTLEqUE8CdD5JcY01ZpHAhS54N9bwYD0wwUIgSD4cA,1094
|
|
128
138
|
agentscope_runtime/engine/services/memory/mem0_memory_service.py,sha256=jmiaFncOBAlx-plEcnz8ljck1Pwi0_czWBOSM7JIJnA,3694
|
|
129
139
|
agentscope_runtime/engine/services/memory/memory_service.py,sha256=QNNvG3ccUiWznQfKNTtSbYqqcuoA2IJW_9xmNb1KMQI,8591
|
|
130
140
|
agentscope_runtime/engine/services/memory/memory_service_factory.py,sha256=XLWriAldbRHHczcdzDK3tKaNfK5KrOYCNUUgeE5spbU,4031
|
|
131
|
-
agentscope_runtime/engine/services/memory/redis_memory_service.py,sha256=
|
|
141
|
+
agentscope_runtime/engine/services/memory/redis_memory_service.py,sha256=jV4sCmzwl_xQjKLXJac3UdqekbgOx7psJGMzGfT-FRg,10703
|
|
132
142
|
agentscope_runtime/engine/services/memory/reme_personal_memory_service.py,sha256=6wbCL5IRJG5GPQqFuy4yN-tARDG30CgKtJ--iKiUowQ,3007
|
|
133
143
|
agentscope_runtime/engine/services/memory/reme_task_memory_service.py,sha256=dLIhWfqKZEeXB1r7f8EKPftL2lk4f60TdlCNdQNolNk,330
|
|
134
144
|
agentscope_runtime/engine/services/memory/tablestore_memory_service.py,sha256=Pf1nyk5d5X7h8Iuy1e7ROCNlap9cmG--TFm7fZNUZ90,10335
|
|
@@ -136,7 +146,7 @@ agentscope_runtime/engine/services/sandbox/__init__.py,sha256=eaneUQzqUfWrfdtc8M
|
|
|
136
146
|
agentscope_runtime/engine/services/sandbox/sandbox_service.py,sha256=KwJ0FRKxaiAMHKc1w4O6wmLigI_wBmZcgSyMu3L4X1k,6559
|
|
137
147
|
agentscope_runtime/engine/services/sandbox/sandbox_service_factory.py,sha256=VMx-TeY4gghYU-CEY38M5Q9NoinfE05IfVq57Cu4X08,1595
|
|
138
148
|
agentscope_runtime/engine/services/session_history/__init__.py,sha256=iTKbWEulLK9TtyQJHl9euam6xSlbY-8yKo2vgNAJ8Qc,929
|
|
139
|
-
agentscope_runtime/engine/services/session_history/redis_session_history_service.py,sha256=
|
|
149
|
+
agentscope_runtime/engine/services/session_history/redis_session_history_service.py,sha256=c-ULzpQS8yAm1FReETkcUJWUMqookT4ZycUVBdMFCA8,10142
|
|
140
150
|
agentscope_runtime/engine/services/session_history/session_history_service.py,sha256=-UHa_OVC8TYPcZcATXE6-pTI0o5dtPwQoVpVi-OjwNE,8476
|
|
141
151
|
agentscope_runtime/engine/services/session_history/session_history_service_factory.py,sha256=r8Ro_IdRSzAN6iSHo5MzHSld5UGr-GuHmfIhwQ1iQMM,2307
|
|
142
152
|
agentscope_runtime/engine/services/session_history/tablestore_session_history_service.py,sha256=4PuUC7j7ZROD_cBTVMpmzgea410bnRy4oLu8H7cA2Xg,10160
|
|
@@ -149,43 +159,43 @@ agentscope_runtime/engine/tracing/local_logging_handler.py,sha256=scx_eJeZHonLYk
|
|
|
149
159
|
agentscope_runtime/engine/tracing/message_util.py,sha256=9ldwWNcm6VqAZ04orHOf8namw0I0CEiU5v89fyKEO_c,18551
|
|
150
160
|
agentscope_runtime/engine/tracing/tracing_metric.py,sha256=X1m6yjLx_hnbmozsCxiW9X3t1gWgrKlbsYEfCMqNSx0,2375
|
|
151
161
|
agentscope_runtime/engine/tracing/tracing_util.py,sha256=tzY-vp4k6BzfjHIIpQLrrgswsxQVMiCVMp6gQXFnzDY,3820
|
|
152
|
-
agentscope_runtime/engine/tracing/wrapper.py,sha256=
|
|
153
|
-
agentscope_runtime/sandbox/__init__.py,sha256=
|
|
154
|
-
agentscope_runtime/sandbox/build.py,sha256=
|
|
162
|
+
agentscope_runtime/engine/tracing/wrapper.py,sha256=Gm4Ln4QLzumetx_siN5cC5m6ohr_OUqSkLnMowqSefY,31979
|
|
163
|
+
agentscope_runtime/sandbox/__init__.py,sha256=zDqWKH69cRv0IhrtY746lNxm428pwyi38weoc5X7KYk,1112
|
|
164
|
+
agentscope_runtime/sandbox/build.py,sha256=WS1nTvVmFwt5JIJiYb1qBcnSnTucC6_R4ps0wSivQX0,8509
|
|
155
165
|
agentscope_runtime/sandbox/constant.py,sha256=NzpxJ1hBDkP9J_c45FsG3iDgBkfEkIlkSKjc4X78tiU,1011
|
|
156
|
-
agentscope_runtime/sandbox/enums.py,sha256=
|
|
166
|
+
agentscope_runtime/sandbox/enums.py,sha256=sAQyJHvqmy-Cs3sggI4dvLXmvwL414lsxibD7g7kVeU,2111
|
|
157
167
|
agentscope_runtime/sandbox/mcp_server.py,sha256=UT3aRZqyeHqEhhm-wZ0Ilhew3eDMHzz9DCN6Qb-eKFk,6012
|
|
158
168
|
agentscope_runtime/sandbox/registry.py,sha256=3ukwbTOjSINWH7DIOmG1iPgze5nb-zXl2X8M7_AeBwg,4190
|
|
159
169
|
agentscope_runtime/sandbox/utils.py,sha256=XH0t0QJMUt5RFACa_7FGo5YIC0Z3tPtdBsOtnCovPJU,3199
|
|
160
170
|
agentscope_runtime/sandbox/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
|
-
agentscope_runtime/sandbox/box/sandbox.py,sha256
|
|
171
|
+
agentscope_runtime/sandbox/box/sandbox.py,sha256=1sxeu4YGUs-Q3CdmSsZJZPx5Av4t2-xX7qJDDKEWGeQ,6197
|
|
162
172
|
agentscope_runtime/sandbox/box/agentbay/__init__.py,sha256=R-KRTawGZwblLBh0ZrXz2ESaV8biE3pLqVXUcLUI1-g,101
|
|
163
173
|
agentscope_runtime/sandbox/box/agentbay/agentbay_sandbox.py,sha256=id19HKUq2RFDZHW90UlGj74ZKkknbK5juL1w4qniC0g,17827
|
|
164
|
-
agentscope_runtime/sandbox/box/base/__init__.py,sha256=
|
|
165
|
-
agentscope_runtime/sandbox/box/base/base_sandbox.py,sha256=
|
|
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
|
|
166
176
|
agentscope_runtime/sandbox/box/base/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
|
-
agentscope_runtime/sandbox/box/browser/__init__.py,sha256=
|
|
168
|
-
agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=
|
|
177
|
+
agentscope_runtime/sandbox/box/browser/__init__.py,sha256=io0rQzUVdH3c5vEqMegr0Z1YMfYPFqIkHKz4SAYqWGk,142
|
|
178
|
+
agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=Bbe2wDMYA4ddImKcJLEQmNvYC66XfWmlngTtGZkV-gQ,15417
|
|
169
179
|
agentscope_runtime/sandbox/box/browser/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
170
180
|
agentscope_runtime/sandbox/box/cloud/__init__.py,sha256=eydrq0JZ55M6WQry4E0N-By7P-3NnrXS1GwBYWbIovk,92
|
|
171
181
|
agentscope_runtime/sandbox/box/cloud/cloud_sandbox.py,sha256=y5lh5C3UqgzHUmkb_VqQ7627653r2MZ7YLmxLna-Htw,7660
|
|
172
182
|
agentscope_runtime/sandbox/box/dummy/__init__.py,sha256=RErHmUx7hFXX69nohtYBS_QSHEWENZHZbWG3434ZDls,92
|
|
173
183
|
agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py,sha256=KAsCEbgZu48qklNMWLd7yPCb7TP1RPFXVi8CQ9Z-kPo,705
|
|
174
|
-
agentscope_runtime/sandbox/box/filesystem/__init__.py,sha256=
|
|
175
|
-
agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py,sha256=
|
|
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
|
|
176
186
|
agentscope_runtime/sandbox/box/filesystem/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
177
|
-
agentscope_runtime/sandbox/box/gui/__init__.py,sha256
|
|
178
|
-
agentscope_runtime/sandbox/box/gui/gui_sandbox.py,sha256=
|
|
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
|
|
179
189
|
agentscope_runtime/sandbox/box/gui/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
180
|
-
agentscope_runtime/sandbox/box/mobile/__init__.py,sha256
|
|
181
|
-
agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py,sha256=
|
|
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
|
|
182
192
|
agentscope_runtime/sandbox/box/mobile/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
193
|
agentscope_runtime/sandbox/box/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
184
194
|
agentscope_runtime/sandbox/box/shared/app.py,sha256=bw6l0XPVF86yuh0jO_Sx9S-B-luFE3U3lIb6Qjc3dGU,1107
|
|
185
195
|
agentscope_runtime/sandbox/box/shared/dependencies/__init__.py,sha256=e1x-6L6vsBbQBrtjrDsdK8eqk-lCqxOIPrSqWyxoG50,98
|
|
186
196
|
agentscope_runtime/sandbox/box/shared/dependencies/deps.py,sha256=pavJWhin5Dbc1f452PDNaCYo9RkK-y95dwLyYZQMOPQ,687
|
|
187
197
|
agentscope_runtime/sandbox/box/shared/routers/__init__.py,sha256=QokVfRhfBftiXktqpn3iqdKcSz7TcSn-4Kbf4QhOUXs,273
|
|
188
|
-
agentscope_runtime/sandbox/box/shared/routers/generic.py,sha256=
|
|
198
|
+
agentscope_runtime/sandbox/box/shared/routers/generic.py,sha256=oOzLMljVDLpQsNRKxPqTftgfR5VEBnbZTZ58BnbwiZ4,5473
|
|
189
199
|
agentscope_runtime/sandbox/box/shared/routers/mcp.py,sha256=_2492A88qba3hUPV67oexfWm-mHEFcr9ygzW-Qqhyi0,6046
|
|
190
200
|
agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py,sha256=K3t4fg6latjD2bdYpRVB4SdAcN2AjIXOhhh2lnx4YOM,6449
|
|
191
201
|
agentscope_runtime/sandbox/box/shared/routers/runtime_watcher.py,sha256=v4jAGYtJaYsRJaSTv7e7hmDLHWVAtJqnSnpPq-kFcmU,5344
|
|
@@ -201,16 +211,18 @@ agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_dataprocess.p
|
|
|
201
211
|
agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_env.py,sha256=22hfq1yO5abZocG8FfaabCXD4HGg-RT_8AY1dHbtvxM,11878
|
|
202
212
|
agentscope_runtime/sandbox/box/training_box/environments/bfcl/env_handler.py,sha256=T-W9w4nKI7_BXgF9caqV3KMeX5d6yvdfhQu0o2oWTUE,30114
|
|
203
213
|
agentscope_runtime/sandbox/box/training_box/src/trajectory.py,sha256=cFr3uVUPq5gHKPa6ALi7QCLBVkgYOyPgyJrOzgBHf3k,7885
|
|
204
|
-
agentscope_runtime/sandbox/client/__init__.py,sha256=
|
|
205
|
-
agentscope_runtime/sandbox/client/
|
|
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
|
|
206
218
|
agentscope_runtime/sandbox/client/training_client.py,sha256=WIhGBib2IWQZwUoSJUn8kuIGrtd6Yz3VOxCh0tft630,7625
|
|
207
219
|
agentscope_runtime/sandbox/custom/__init__.py,sha256=wpu0DlzdLohYzOVM9yZloIWid3w_ME6dPtOjCZKbRZ8,463
|
|
208
220
|
agentscope_runtime/sandbox/custom/custom_sandbox.py,sha256=ZKE7otTimLZ2-ZV9PMVLRA6P1hH0a4fT-d_K4Ga59og,1008
|
|
209
221
|
agentscope_runtime/sandbox/custom/example.py,sha256=iU5G7Vb-oq3wsJ_Kl8oFAwi0HNbt5V_8fWAAyiQ8RuY,964
|
|
210
222
|
agentscope_runtime/sandbox/manager/__init__.py,sha256=KNHc1uDaUWBH_ZnWjH5NHRBiQM_zDyi9B2xKVNtAWIg,98
|
|
211
|
-
agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=
|
|
223
|
+
agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=vqChg_rzcjKEtVeJKSHWeL_qrXl5JRjomlQvlzIpVO0,36800
|
|
212
224
|
agentscope_runtime/sandbox/manager/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
|
-
agentscope_runtime/sandbox/manager/server/app.py,sha256=
|
|
225
|
+
agentscope_runtime/sandbox/manager/server/app.py,sha256=JgvKwcMJtgcQRKbNw2AOzHBZrTPOUWT7Xg6YpQJqwYI,13877
|
|
214
226
|
agentscope_runtime/sandbox/manager/server/config.py,sha256=yXiricKpA_r2zoMF7YpRgIxtJck89rzN9iwaVVLhK60,4451
|
|
215
227
|
agentscope_runtime/sandbox/manager/server/models.py,sha256=rCibF0HsotFcqsQVTSUoOTJCFQU3oqKvpOiWMWIRLyY,304
|
|
216
228
|
agentscope_runtime/sandbox/manager/storage/__init__.py,sha256=jGmpfXV1E2X7AqkGeF1xu1EHiSTvbH3TSIviLbKBFh4,210
|
|
@@ -267,9 +279,9 @@ agentscope_runtime/tools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
267
279
|
agentscope_runtime/tools/utils/api_key_util.py,sha256=xIIUsvWgSt4etgYP7lS0WnqVIhZ-REzrBLwzAT-TrVI,1210
|
|
268
280
|
agentscope_runtime/tools/utils/crypto_utils.py,sha256=Wqq4cn3FHQge-2Q1zGSMUyKh4V4A2baiZm8ZNhMqhPo,3382
|
|
269
281
|
agentscope_runtime/tools/utils/mcp_util.py,sha256=n3GGKBEQPJ-fiNXdYnBx_90GVKWvm9eaNbR2G0q2lOw,905
|
|
270
|
-
agentscope_runtime-1.0.
|
|
271
|
-
agentscope_runtime-1.0.
|
|
272
|
-
agentscope_runtime-1.0.
|
|
273
|
-
agentscope_runtime-1.0.
|
|
274
|
-
agentscope_runtime-1.0.
|
|
275
|
-
agentscope_runtime-1.0.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|