agentscope-runtime 0.1.1__py3-none-any.whl → 0.1.3__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/engine/agents/agentscope_agent/agent.py +105 -50
- agentscope_runtime/engine/agents/agentscope_agent/hooks.py +16 -3
- agentscope_runtime/engine/helpers/helper.py +33 -0
- agentscope_runtime/engine/runner.py +33 -1
- agentscope_runtime/engine/schemas/agent_schemas.py +208 -13
- agentscope_runtime/engine/services/context_manager.py +34 -1
- agentscope_runtime/engine/services/rag_service.py +195 -0
- agentscope_runtime/engine/services/reme_personal_memory_service.py +106 -0
- agentscope_runtime/engine/services/reme_task_memory_service.py +11 -0
- agentscope_runtime/sandbox/box/browser/browser_sandbox.py +25 -0
- agentscope_runtime/sandbox/box/sandbox.py +60 -7
- agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py +20 -2
- agentscope_runtime/sandbox/box/training_box/env_service.py +1 -1
- agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_dataprocess.py +216 -0
- agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_env.py +380 -0
- agentscope_runtime/sandbox/box/training_box/environments/bfcl/env_handler.py +934 -0
- agentscope_runtime/sandbox/box/training_box/training_box.py +139 -9
- agentscope_runtime/sandbox/client/http_client.py +1 -1
- agentscope_runtime/sandbox/enums.py +2 -0
- agentscope_runtime/sandbox/manager/container_clients/docker_client.py +19 -9
- agentscope_runtime/sandbox/manager/container_clients/kubernetes_client.py +61 -6
- agentscope_runtime/sandbox/manager/sandbox_manager.py +95 -35
- agentscope_runtime/sandbox/manager/server/app.py +128 -17
- agentscope_runtime/sandbox/model/__init__.py +1 -5
- agentscope_runtime/sandbox/model/manager_config.py +2 -13
- agentscope_runtime/sandbox/tools/mcp_tool.py +1 -1
- agentscope_runtime/version.py +1 -1
- {agentscope_runtime-0.1.1.dist-info → agentscope_runtime-0.1.3.dist-info}/METADATA +59 -3
- {agentscope_runtime-0.1.1.dist-info → agentscope_runtime-0.1.3.dist-info}/RECORD +33 -27
- {agentscope_runtime-0.1.1.dist-info → agentscope_runtime-0.1.3.dist-info}/WHEEL +0 -0
- {agentscope_runtime-0.1.1.dist-info → agentscope_runtime-0.1.3.dist-info}/entry_points.txt +0 -0
- {agentscope_runtime-0.1.1.dist-info → agentscope_runtime-0.1.3.dist-info}/licenses/LICENSE +0 -0
- {agentscope_runtime-0.1.1.dist-info → agentscope_runtime-0.1.3.dist-info}/top_level.txt +0 -0
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# pylint: disable=protected-access, unused-argument
|
|
3
|
+
import asyncio
|
|
3
4
|
import inspect
|
|
4
5
|
import logging
|
|
5
|
-
import traceback
|
|
6
6
|
|
|
7
7
|
from typing import Optional
|
|
8
8
|
|
|
9
|
+
import websockets
|
|
9
10
|
from fastapi import FastAPI, HTTPException, Request, Depends
|
|
11
|
+
from fastapi import WebSocket, WebSocketDisconnect
|
|
10
12
|
from fastapi.middleware.cors import CORSMiddleware
|
|
11
13
|
from fastapi.responses import JSONResponse
|
|
12
14
|
from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials
|
|
@@ -44,7 +46,7 @@ app.add_middleware(
|
|
|
44
46
|
security = HTTPBearer(auto_error=False)
|
|
45
47
|
|
|
46
48
|
# Global SandboxManager instance
|
|
47
|
-
|
|
49
|
+
_sandbox_manager: Optional[SandboxManager] = None
|
|
48
50
|
_config: Optional[SandboxManagerEnvConfig] = None
|
|
49
51
|
|
|
50
52
|
|
|
@@ -109,17 +111,17 @@ def verify_token(
|
|
|
109
111
|
return credentials
|
|
110
112
|
|
|
111
113
|
|
|
112
|
-
def
|
|
114
|
+
def get_sandbox_manager():
|
|
113
115
|
"""Get or create the global SandboxManager instance"""
|
|
114
|
-
global
|
|
115
|
-
if
|
|
116
|
+
global _sandbox_manager
|
|
117
|
+
if _sandbox_manager is None:
|
|
116
118
|
settings = get_settings()
|
|
117
119
|
config = get_config()
|
|
118
|
-
|
|
120
|
+
_sandbox_manager = SandboxManager(
|
|
119
121
|
config=config,
|
|
120
122
|
default_type=settings.DEFAULT_SANDBOX_TYPE,
|
|
121
123
|
)
|
|
122
|
-
return
|
|
124
|
+
return _sandbox_manager
|
|
123
125
|
|
|
124
126
|
|
|
125
127
|
def create_endpoint(method):
|
|
@@ -137,11 +139,12 @@ def create_endpoint(method):
|
|
|
137
139
|
return JSONResponse(content={"data": result.model_dump_json()})
|
|
138
140
|
return JSONResponse(content={"data": result})
|
|
139
141
|
except Exception as e:
|
|
140
|
-
|
|
142
|
+
error = (
|
|
141
143
|
f"Error in {method.__name__}: {str(e)},"
|
|
142
|
-
f" {traceback.format_exc()}"
|
|
144
|
+
# f" {traceback.format_exc()}"
|
|
143
145
|
)
|
|
144
|
-
|
|
146
|
+
logger.error(error)
|
|
147
|
+
raise HTTPException(status_code=500, detail=error) from e
|
|
145
148
|
|
|
146
149
|
return endpoint
|
|
147
150
|
|
|
@@ -168,18 +171,18 @@ def register_routes(_app, instance):
|
|
|
168
171
|
@app.on_event("startup")
|
|
169
172
|
async def startup_event():
|
|
170
173
|
"""Initialize the SandboxManager on startup"""
|
|
171
|
-
|
|
172
|
-
register_routes(app,
|
|
174
|
+
get_sandbox_manager()
|
|
175
|
+
register_routes(app, _sandbox_manager)
|
|
173
176
|
|
|
174
177
|
|
|
175
178
|
@app.on_event("shutdown")
|
|
176
179
|
async def shutdown_event():
|
|
177
180
|
"""Cleanup resources on shutdown"""
|
|
178
|
-
global
|
|
181
|
+
global _sandbox_manager
|
|
179
182
|
settings = get_settings()
|
|
180
|
-
if
|
|
181
|
-
|
|
182
|
-
|
|
183
|
+
if _sandbox_manager and settings.AUTO_CLEANUP:
|
|
184
|
+
_sandbox_manager.cleanup()
|
|
185
|
+
_sandbox_manager = None
|
|
183
186
|
|
|
184
187
|
|
|
185
188
|
@app.get(
|
|
@@ -191,10 +194,108 @@ async def health_check():
|
|
|
191
194
|
"""Health check endpoint"""
|
|
192
195
|
return HealthResponse(
|
|
193
196
|
status="healthy",
|
|
194
|
-
version=
|
|
197
|
+
version=_sandbox_manager.default_type.value,
|
|
195
198
|
)
|
|
196
199
|
|
|
197
200
|
|
|
201
|
+
@app.websocket("/browser/{sandbox_id}/cast")
|
|
202
|
+
async def websocket_endpoint(
|
|
203
|
+
websocket: WebSocket,
|
|
204
|
+
sandbox_id: str,
|
|
205
|
+
):
|
|
206
|
+
global _sandbox_manager
|
|
207
|
+
|
|
208
|
+
await websocket.accept()
|
|
209
|
+
|
|
210
|
+
container_json = _sandbox_manager.container_mapping.get(
|
|
211
|
+
sandbox_id,
|
|
212
|
+
)
|
|
213
|
+
service_address = None
|
|
214
|
+
if container_json:
|
|
215
|
+
service_address = container_json.get("front_browser_ws")
|
|
216
|
+
|
|
217
|
+
logger.debug(f"service_address: {service_address}")
|
|
218
|
+
|
|
219
|
+
if not service_address:
|
|
220
|
+
await websocket.close(code=1001)
|
|
221
|
+
return
|
|
222
|
+
|
|
223
|
+
try:
|
|
224
|
+
query_params = websocket.query_params
|
|
225
|
+
target_url = service_address
|
|
226
|
+
if query_params:
|
|
227
|
+
query_string = str(query_params)
|
|
228
|
+
if "?" in target_url:
|
|
229
|
+
target_url += "&" + query_string
|
|
230
|
+
else:
|
|
231
|
+
target_url += "?" + query_string
|
|
232
|
+
|
|
233
|
+
logger.info(f"Connecting to target with URL: {target_url}")
|
|
234
|
+
|
|
235
|
+
# Connect to the target WebSocket server
|
|
236
|
+
async with websockets.connect(target_url) as target_ws:
|
|
237
|
+
# Forward messages from client to target server
|
|
238
|
+
async def forward_to_service():
|
|
239
|
+
try:
|
|
240
|
+
async for message in websocket.iter_text():
|
|
241
|
+
await target_ws.send(message)
|
|
242
|
+
except WebSocketDisconnect:
|
|
243
|
+
logger.debug(
|
|
244
|
+
f"WebSocket disconnected from client for sandbox"
|
|
245
|
+
f" {sandbox_id}",
|
|
246
|
+
)
|
|
247
|
+
await target_ws.close()
|
|
248
|
+
|
|
249
|
+
# Forward messages from target server to client
|
|
250
|
+
async def forward_to_client():
|
|
251
|
+
try:
|
|
252
|
+
async for message in target_ws:
|
|
253
|
+
await websocket.send_text(message)
|
|
254
|
+
except websockets.exceptions.ConnectionClosed:
|
|
255
|
+
logger.debug(
|
|
256
|
+
f"WebSocket disconnected from service for sandbox"
|
|
257
|
+
f" {sandbox_id}",
|
|
258
|
+
)
|
|
259
|
+
await websocket.close()
|
|
260
|
+
|
|
261
|
+
# Run both tasks concurrently
|
|
262
|
+
await asyncio.gather(forward_to_service(), forward_to_client())
|
|
263
|
+
|
|
264
|
+
except Exception as e:
|
|
265
|
+
logger.error(f"Error in sandbox {sandbox_id}: {e}")
|
|
266
|
+
await websocket.close()
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
# TODO: add socketio relay endpoint for filesystem
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
def setup_logging(log_level: str):
|
|
273
|
+
"""Setup logging configuration based on log level"""
|
|
274
|
+
# Convert string to logging level
|
|
275
|
+
level_mapping = {
|
|
276
|
+
"DEBUG": logging.DEBUG,
|
|
277
|
+
"INFO": logging.INFO,
|
|
278
|
+
"WARNING": logging.WARNING,
|
|
279
|
+
"ERROR": logging.ERROR,
|
|
280
|
+
"CRITICAL": logging.CRITICAL,
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
level = level_mapping.get(log_level.upper(), logging.INFO)
|
|
284
|
+
|
|
285
|
+
# Reconfigure logging
|
|
286
|
+
logging.basicConfig(
|
|
287
|
+
level=level,
|
|
288
|
+
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
|
|
289
|
+
force=True, # This will reconfigure existing loggers
|
|
290
|
+
)
|
|
291
|
+
|
|
292
|
+
# Update the logger for this module
|
|
293
|
+
global logger
|
|
294
|
+
logger.setLevel(level)
|
|
295
|
+
|
|
296
|
+
logger.info(f"Logging level set to {log_level.upper()}")
|
|
297
|
+
|
|
298
|
+
|
|
198
299
|
def main():
|
|
199
300
|
"""Main entry point for the Runtime Manager Service"""
|
|
200
301
|
import argparse
|
|
@@ -203,8 +304,18 @@ def main():
|
|
|
203
304
|
|
|
204
305
|
parser = argparse.ArgumentParser(description="Runtime Manager Service")
|
|
205
306
|
parser.add_argument("--config", type=str, help="Path to config file")
|
|
307
|
+
parser.add_argument(
|
|
308
|
+
"--log-level",
|
|
309
|
+
type=str,
|
|
310
|
+
choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"],
|
|
311
|
+
default="INFO",
|
|
312
|
+
help="Set the logging level (default: INFO)",
|
|
313
|
+
)
|
|
206
314
|
args = parser.parse_args()
|
|
207
315
|
|
|
316
|
+
# Setup logging based on command line argument
|
|
317
|
+
setup_logging(args.log_level)
|
|
318
|
+
|
|
208
319
|
if args.config and not os.path.exists(args.config):
|
|
209
320
|
raise FileNotFoundError(
|
|
210
321
|
f"Error: Config file {args.config} does not exist",
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
from .container import ContainerModel
|
|
3
|
-
from .manager_config import
|
|
4
|
-
SandboxManagerEnvConfig,
|
|
5
|
-
DEFAULT_LOCAL_MANAGER_CONFIG,
|
|
6
|
-
)
|
|
3
|
+
from .manager_config import SandboxManagerEnvConfig
|
|
7
4
|
|
|
8
5
|
__all__ = [
|
|
9
6
|
"ContainerModel",
|
|
10
7
|
"SandboxManagerEnvConfig",
|
|
11
|
-
"DEFAULT_LOCAL_MANAGER_CONFIG",
|
|
12
8
|
]
|
|
@@ -114,10 +114,8 @@ class SandboxManagerEnvConfig(BaseModel):
|
|
|
114
114
|
|
|
115
115
|
@model_validator(mode="after")
|
|
116
116
|
def check_settings(cls, self):
|
|
117
|
-
if
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
os.makedirs(self.default_mount_dir, exist_ok=True)
|
|
117
|
+
if self.default_mount_dir:
|
|
118
|
+
os.makedirs(self.default_mount_dir, exist_ok=True)
|
|
121
119
|
|
|
122
120
|
if self.file_system == "oss":
|
|
123
121
|
required_oss_fields = [
|
|
@@ -164,12 +162,3 @@ class SandboxManagerEnvConfig(BaseModel):
|
|
|
164
162
|
)
|
|
165
163
|
|
|
166
164
|
return self
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
DEFAULT_LOCAL_MANAGER_CONFIG = SandboxManagerEnvConfig(
|
|
170
|
-
file_system="local",
|
|
171
|
-
redis_enabled=False,
|
|
172
|
-
container_deployment="docker",
|
|
173
|
-
pool_size=0,
|
|
174
|
-
default_mount_dir="sessions_mount_dir",
|
|
175
|
-
)
|
|
@@ -145,7 +145,7 @@ class MCPConfigConverter:
|
|
|
145
145
|
overwrite=False,
|
|
146
146
|
)
|
|
147
147
|
for server_name in self.server_configs["mcpServers"]:
|
|
148
|
-
tools = box.list_tools(tool_type=server_name).get(server_name,
|
|
148
|
+
tools = box.list_tools(tool_type=server_name).get(server_name, {})
|
|
149
149
|
for tool_name, tool_info in tools.items():
|
|
150
150
|
if self.whitelist and tool_name not in self.whitelist:
|
|
151
151
|
continue
|
agentscope_runtime/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
|
-
__version__ = "v0.1.
|
|
2
|
+
__version__ = "v0.1.3"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentscope-runtime
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
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
|
|
@@ -30,16 +30,32 @@ Requires-Dist: dotenv>=0.9.9; extra == "sandbox"
|
|
|
30
30
|
Requires-Dist: kubernetes>=33.1.0; extra == "sandbox"
|
|
31
31
|
Requires-Dist: shortuuid>=1.0.13; extra == "sandbox"
|
|
32
32
|
Provides-Extra: agentscope
|
|
33
|
-
Requires-Dist: agentscope
|
|
33
|
+
Requires-Dist: agentscope>=1.0.1; extra == "agentscope"
|
|
34
34
|
Provides-Extra: langgraph
|
|
35
35
|
Requires-Dist: langgraph>=0.5.3; extra == "langgraph"
|
|
36
36
|
Provides-Extra: agno
|
|
37
|
-
Requires-Dist: agno
|
|
37
|
+
Requires-Dist: agno<2.0.0,>=1.7.5; extra == "agno"
|
|
38
38
|
Provides-Extra: a2a
|
|
39
39
|
Requires-Dist: a2a-sdk>=0.3.0; extra == "a2a"
|
|
40
40
|
Provides-Extra: autogen
|
|
41
41
|
Requires-Dist: autogen-agentchat>=0.7.4; extra == "autogen"
|
|
42
42
|
Requires-Dist: autogen-ext[openai]>=0.7.4; extra == "autogen"
|
|
43
|
+
Provides-Extra: langchain-rag
|
|
44
|
+
Requires-Dist: langchain>=0.3.25; extra == "langchain-rag"
|
|
45
|
+
Requires-Dist: pymilvus>=2.6.0; extra == "langchain-rag"
|
|
46
|
+
Requires-Dist: langchain-community>=0.3.27; extra == "langchain-rag"
|
|
47
|
+
Requires-Dist: langchain-milvus>=0.2.1; extra == "langchain-rag"
|
|
48
|
+
Requires-Dist: bs4>=0.0.2; extra == "langchain-rag"
|
|
49
|
+
Provides-Extra: llamaindex-rag
|
|
50
|
+
Requires-Dist: llama-index>=0.13.4; extra == "llamaindex-rag"
|
|
51
|
+
Requires-Dist: pymilvus>=2.6.0; extra == "llamaindex-rag"
|
|
52
|
+
Requires-Dist: llama-index-vector-stores-milvus>=0.9.1; extra == "llamaindex-rag"
|
|
53
|
+
Requires-Dist: llama-index-readers-web>=0.5.1; extra == "llamaindex-rag"
|
|
54
|
+
Requires-Dist: llama-index-embeddings-langchain>=0.4.0; extra == "llamaindex-rag"
|
|
55
|
+
Requires-Dist: langchain-community>=0.3.27; extra == "llamaindex-rag"
|
|
56
|
+
Requires-Dist: bs4>=0.0.2; extra == "llamaindex-rag"
|
|
57
|
+
Provides-Extra: memory-ext
|
|
58
|
+
Requires-Dist: reme-ai==0.1.8; python_full_version >= "3.12" and extra == "memory-ext"
|
|
43
59
|
Dynamic: license-file
|
|
44
60
|
|
|
45
61
|
<div align="center">
|
|
@@ -386,3 +402,43 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
386
402
|
See the License for the specific language governing permissions and
|
|
387
403
|
limitations under the License.
|
|
388
404
|
```
|
|
405
|
+
|
|
406
|
+
## Contributors ✨
|
|
407
|
+
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
408
|
+
[](#contributors-)
|
|
409
|
+
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
410
|
+
|
|
411
|
+
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
412
|
+
|
|
413
|
+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
414
|
+
<!-- prettier-ignore-start -->
|
|
415
|
+
<!-- markdownlint-disable -->
|
|
416
|
+
<table>
|
|
417
|
+
<tbody>
|
|
418
|
+
<tr>
|
|
419
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rayrayraykk"><img src="https://avatars.githubusercontent.com/u/39145382?v=4?s=100" width="100px;" alt="Weirui Kuang"/><br /><sub><b>Weirui Kuang</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=rayrayraykk" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/pulls?q=is%3Apr+reviewed-by%3Arayrayraykk" title="Reviewed Pull Requests">👀</a> <a href="#maintenance-rayrayraykk" title="Maintenance">🚧</a> <a href="#projectManagement-rayrayraykk" title="Project Management">📆</a></td>
|
|
420
|
+
<td align="center" valign="top" width="14.28%"><a href="http://www.bruceluo.net/"><img src="https://avatars.githubusercontent.com/u/7297307?v=4?s=100" width="100px;" alt="Bruce Luo"/><br /><sub><b>Bruce Luo</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=zhilingluo" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/pulls?q=is%3Apr+reviewed-by%3Azhilingluo" title="Reviewed Pull Requests">👀</a> <a href="#example-zhilingluo" title="Examples">💡</a></td>
|
|
421
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zzhangpurdue"><img src="https://avatars.githubusercontent.com/u/5746653?v=4?s=100" width="100px;" alt="Zhicheng Zhang"/><br /><sub><b>Zhicheng Zhang</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=zzhangpurdue" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/pulls?q=is%3Apr+reviewed-by%3Azzhangpurdue" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=zzhangpurdue" title="Documentation">📖</a></td>
|
|
422
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ericczq"><img src="https://avatars.githubusercontent.com/u/116273607?v=4?s=100" width="100px;" alt="ericczq"/><br /><sub><b>ericczq</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=ericczq" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=ericczq" title="Documentation">📖</a></td>
|
|
423
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/qbc2016"><img src="https://avatars.githubusercontent.com/u/22984042?v=4?s=100" width="100px;" alt="qbc"/><br /><sub><b>qbc</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/pulls?q=is%3Apr+reviewed-by%3Aqbc2016" title="Reviewed Pull Requests">👀</a></td>
|
|
424
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/rankesterc"><img src="https://avatars.githubusercontent.com/u/114560457?v=4?s=100" width="100px;" alt="Ran Chen"/><br /><sub><b>Ran Chen</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=rankesterc" title="Code">💻</a></td>
|
|
425
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jinliyl"><img src="https://avatars.githubusercontent.com/u/6469360?v=4?s=100" width="100px;" alt="jinliyl"/><br /><sub><b>jinliyl</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=jinliyl" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=jinliyl" title="Documentation">📖</a></td>
|
|
426
|
+
</tr>
|
|
427
|
+
</tbody>
|
|
428
|
+
<tfoot>
|
|
429
|
+
<tr>
|
|
430
|
+
<td align="center" size="13px" colspan="7">
|
|
431
|
+
<img src="https://raw.githubusercontent.com/all-contributors/all-contributors-cli/1b8533af435da9854653492b1327a23a4dbd0a10/assets/logo-small.svg">
|
|
432
|
+
<a href="https://all-contributors.js.org/docs/en/bot/usage">Add your contributions</a>
|
|
433
|
+
</img>
|
|
434
|
+
</td>
|
|
435
|
+
</tr>
|
|
436
|
+
</tfoot>
|
|
437
|
+
</table>
|
|
438
|
+
|
|
439
|
+
<!-- markdownlint-restore -->
|
|
440
|
+
<!-- prettier-ignore-end -->
|
|
441
|
+
|
|
442
|
+
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
443
|
+
|
|
444
|
+
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
agentscope_runtime/__init__.py,sha256=LMAUeUpPo2qzqh3zyZ-JJwc8GrsiT9b-yNhQMxlKmfE,84
|
|
2
|
-
agentscope_runtime/version.py,sha256=
|
|
2
|
+
agentscope_runtime/version.py,sha256=FmA99VK3xnyfLKQZeXt91eE7FldXtbGI0ya61y0h_Rs,47
|
|
3
3
|
agentscope_runtime/engine/__init__.py,sha256=jsvYM1LlZVP4EFzsE5uu5ycgBU9CVnug7UyTzBmpX5g,213
|
|
4
|
-
agentscope_runtime/engine/runner.py,sha256=
|
|
4
|
+
agentscope_runtime/engine/runner.py,sha256=fQ4bNRqjXERLZlzA3cF_eJDdyc76Ug-V7st8BoixUtg,6754
|
|
5
5
|
agentscope_runtime/engine/agents/__init__.py,sha256=xHp7FY6QM-nAhQAECi7xzrJkRkYZpAa5_zHRhO6Zogc,54
|
|
6
6
|
agentscope_runtime/engine/agents/agno_agent.py,sha256=c2f575gc5ZOWGvrdjObo7IGSbM1Si0JQGxKpqtMSf14,6716
|
|
7
7
|
agentscope_runtime/engine/agents/autogen_agent.py,sha256=HbtvN8554FnkgMHX418sMgIM-hp7OVCUR2YJybRMKxI,7693
|
|
@@ -9,8 +9,8 @@ agentscope_runtime/engine/agents/base_agent.py,sha256=fGf4MNKmfm_fsU2orTPLpt7TT5
|
|
|
9
9
|
agentscope_runtime/engine/agents/langgraph_agent.py,sha256=05Z5js7g9Dxy-MWj0W00jOtFMNnHzSPjlP3WIIVHTtQ,1416
|
|
10
10
|
agentscope_runtime/engine/agents/llm_agent.py,sha256=0hG_FRtAxmlljmI51GT7ui_7wjjHO03wckx9bNKra8Y,1356
|
|
11
11
|
agentscope_runtime/engine/agents/agentscope_agent/__init__.py,sha256=lt1NJEDuBWaX1n-bqMbQR6Uol7-fFUuyeuHy8FQrzWk,97
|
|
12
|
-
agentscope_runtime/engine/agents/agentscope_agent/agent.py,sha256=
|
|
13
|
-
agentscope_runtime/engine/agents/agentscope_agent/hooks.py,sha256=
|
|
12
|
+
agentscope_runtime/engine/agents/agentscope_agent/agent.py,sha256=kuQfz1QbltD2wCsOVp75Qrn4q7EmIfnDm6FECCoGl5k,14754
|
|
13
|
+
agentscope_runtime/engine/agents/agentscope_agent/hooks.py,sha256=iqx-TOQLXUQlQHc2cKjsDfgjO9UWw00AeS3wTymkfYE,5984
|
|
14
14
|
agentscope_runtime/engine/deployers/__init__.py,sha256=2eUo6uvloMt4AstmalkwcBgR7gPyppNqlmjld0Ztpxk,103
|
|
15
15
|
agentscope_runtime/engine/deployers/base.py,sha256=0bb3zQiVE1jTMG0NCsjhcSeP7lhnbn1KPQRx1H5hues,494
|
|
16
16
|
agentscope_runtime/engine/deployers/local_deployer.py,sha256=LaxGzSMW4aoF717GheYno7N38Y66ifIO4Zt2qRkT_Qg,20691
|
|
@@ -20,22 +20,25 @@ agentscope_runtime/engine/deployers/adapter/a2a/__init__.py,sha256=3D6TxH-seVfR7
|
|
|
20
20
|
agentscope_runtime/engine/deployers/adapter/a2a/a2a_adapter_utils.py,sha256=VZ4f7Ne9sRWFiLhuxoKDhwSpsxZTg_uLygoOlI-KlEA,11441
|
|
21
21
|
agentscope_runtime/engine/deployers/adapter/a2a/a2a_agent_adapter.py,sha256=h7wwl2CiKcGUxhKkrWN7DpaIpTltoRm-6ETS_fJHmEk,2147
|
|
22
22
|
agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py,sha256=eDBDu3WTLjZ6TWA3jG48EIos1kZqiKHBXPSVzfNvniM,1905
|
|
23
|
-
agentscope_runtime/engine/helpers/helper.py,sha256=
|
|
23
|
+
agentscope_runtime/engine/helpers/helper.py,sha256=EizXyBl00VscBx7pVOr65qsu4YnNLKAq8eYbRqAXctA,4547
|
|
24
24
|
agentscope_runtime/engine/llms/__init__.py,sha256=UV_lqTcsvcihP2OWERLWjiEbcSDbfieD-rFYRWX2xA0,84
|
|
25
25
|
agentscope_runtime/engine/llms/base_llm.py,sha256=Vvxlqom35qaSLYSyyh3hj-XsoyFxcf5BqXbvFBnbNE4,1664
|
|
26
26
|
agentscope_runtime/engine/llms/qwen_llm.py,sha256=_J-PpwSrKNSmQzO6KNzJlMd5t4m47YVKXp0fl-KYQmA,1271
|
|
27
27
|
agentscope_runtime/engine/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
agentscope_runtime/engine/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
agentscope_runtime/engine/schemas/agent_schemas.py,sha256=
|
|
29
|
+
agentscope_runtime/engine/schemas/agent_schemas.py,sha256=9PSCAuz33dEpE0_cNfOJKSK8ocOprofiR2YYfGezDyo,21194
|
|
30
30
|
agentscope_runtime/engine/schemas/context.py,sha256=Qd2ee4HCYNmD5VHsacrScdpNq8q2aJwsRtsrBZarI9M,1550
|
|
31
31
|
agentscope_runtime/engine/services/__init__.py,sha256=SAsmwIr8etoUbqz5W1K2pH5ONlFzooXMQ0UFXTXfHwM,271
|
|
32
32
|
agentscope_runtime/engine/services/base.py,sha256=g2hTc3ivj2MPjnsu5_09m6_MZ3KDHBfiYKu4F2pLA1I,2096
|
|
33
|
-
agentscope_runtime/engine/services/context_manager.py,sha256=
|
|
33
|
+
agentscope_runtime/engine/services/context_manager.py,sha256=NO5ma4WWJFW6oZW65ddTR7EOz-kL4eNImwPxXVESmmM,5221
|
|
34
34
|
agentscope_runtime/engine/services/environment_manager.py,sha256=Bd3vmgX5KkN9gTY60o7Pozpsw0S8etpSJns63woSlDU,1347
|
|
35
35
|
agentscope_runtime/engine/services/manager.py,sha256=r-TcHti8sEMXjZbwPWlG32J8iiMHUXuUJmAiwPvgn_Q,6282
|
|
36
36
|
agentscope_runtime/engine/services/memory_service.py,sha256=EHsvNPMXsH1B8LZY0zZKzYMvDHzaP18edKv9uimM98k,7889
|
|
37
|
+
agentscope_runtime/engine/services/rag_service.py,sha256=iPmQtFXG5_mva4GFQi4V2Buscj6MXlPtxzYMoqZ6k9U,5614
|
|
37
38
|
agentscope_runtime/engine/services/redis_memory_service.py,sha256=2A6ouYghs80jby_MUcwiKfCScmYUbIcYsMlmEMynuqg,5708
|
|
38
39
|
agentscope_runtime/engine/services/redis_session_history_service.py,sha256=Zo7H0QtUZRKXh07JHcvtZfmEqbmidEsTGkhGfk1aLQE,5042
|
|
40
|
+
agentscope_runtime/engine/services/reme_personal_memory_service.py,sha256=Cmd0FpHulv8h5IXWKnymHMViXSr2Z8dFtXDj3d8y4Vo,2962
|
|
41
|
+
agentscope_runtime/engine/services/reme_task_memory_service.py,sha256=d1QV9e1ifAQIO4Kr-Q9gzx7OhKH_CkUhuyygHRLprWo,338
|
|
39
42
|
agentscope_runtime/engine/services/sandbox_service.py,sha256=IzVg5BtDEfqFrVy7SnE3GDYXVXc0jzv9XIl0mFYHWDk,6082
|
|
40
43
|
agentscope_runtime/engine/services/session_history_service.py,sha256=CLDMHNja6k7VrTQMkQDf24uP-aSGV5sdBjG5A0t_c64,8044
|
|
41
44
|
agentscope_runtime/engine/tracing/__init__.py,sha256=DuM6Zp_IJ-ixgTTomtrMbpcYiMJOHMrJHwKIqcLzrfA,1133
|
|
@@ -46,16 +49,16 @@ agentscope_runtime/engine/tracing/wrapper.py,sha256=ioeKSRJDJgcW34OfFmAq7vgE0FNE
|
|
|
46
49
|
agentscope_runtime/sandbox/__init__.py,sha256=39NF3OdrBoUOje8gHI--cIgLMfY3ojm0JWYmGsEiWFU,378
|
|
47
50
|
agentscope_runtime/sandbox/build.py,sha256=rhcsHbDkcQgS4Hxv8z2Lsjp3LnheQyCCTbm3rkv80Tw,6439
|
|
48
51
|
agentscope_runtime/sandbox/constant.py,sha256=-CaSZkDPO2XQ70-PVymu4Z5Y7hlvdpPJ3zgP27MLvik,156
|
|
49
|
-
agentscope_runtime/sandbox/enums.py,sha256=
|
|
52
|
+
agentscope_runtime/sandbox/enums.py,sha256=zGSs3A3SsxjqmSrArn9qEWGO594cYahOHPnG8HHxpYk,1880
|
|
50
53
|
agentscope_runtime/sandbox/mcp_server.py,sha256=UT3aRZqyeHqEhhm-wZ0Ilhew3eDMHzz9DCN6Qb-eKFk,6012
|
|
51
54
|
agentscope_runtime/sandbox/registry.py,sha256=E4APDpk1oxhJCh8dEIDjZ1DtQJ-mPaRGYXr3AbTsnmc,4191
|
|
52
55
|
agentscope_runtime/sandbox/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
|
-
agentscope_runtime/sandbox/box/sandbox.py,sha256=
|
|
56
|
+
agentscope_runtime/sandbox/box/sandbox.py,sha256=PQk0mljUvrErTsm0aQdd8UggghEvpEE0uPU3pLjY6a4,5220
|
|
54
57
|
agentscope_runtime/sandbox/box/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
58
|
agentscope_runtime/sandbox/box/base/base_sandbox.py,sha256=zhQLTRtdpktNw7UpWeMKwEd5oWn_L-VUIIY9_IiBT9M,1002
|
|
56
59
|
agentscope_runtime/sandbox/box/base/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
60
|
agentscope_runtime/sandbox/box/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
-
agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=
|
|
61
|
+
agentscope_runtime/sandbox/box/browser/browser_sandbox.py,sha256=KDYnGUbWataXknI_mZfE46goh8p3JtIwFQvQ569iaEg,5599
|
|
59
62
|
agentscope_runtime/sandbox/box/browser/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
63
|
agentscope_runtime/sandbox/box/dummy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
64
|
agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py,sha256=Bqy3M_0Rj2iNSlOX2S1wVgffaVj0qAUhdxawRbNHB7w,668
|
|
@@ -69,25 +72,28 @@ agentscope_runtime/sandbox/box/shared/dependencies/deps.py,sha256=pavJWhin5Dbc1f
|
|
|
69
72
|
agentscope_runtime/sandbox/box/shared/routers/__init__.py,sha256=QokVfRhfBftiXktqpn3iqdKcSz7TcSn-4Kbf4QhOUXs,273
|
|
70
73
|
agentscope_runtime/sandbox/box/shared/routers/generic.py,sha256=OP3aRmswIMj73DeDX4GqsoY1n3oQZ_Ncjxexhj-_xYg,4497
|
|
71
74
|
agentscope_runtime/sandbox/box/shared/routers/mcp.py,sha256=_2492A88qba3hUPV67oexfWm-mHEFcr9ygzW-Qqhyi0,6046
|
|
72
|
-
agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py,sha256=
|
|
75
|
+
agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py,sha256=aQEUimxeeve-A-VKx99YeMR4nw7KRpGqzIpMiyNU9dQ,5865
|
|
73
76
|
agentscope_runtime/sandbox/box/shared/routers/runtime_watcher.py,sha256=v4jAGYtJaYsRJaSTv7e7hmDLHWVAtJqnSnpPq-kFcmU,5344
|
|
74
77
|
agentscope_runtime/sandbox/box/shared/routers/workspace.py,sha256=cQMbWNQG7ojHZfWN0xFqEivhlpQO4qEDo3amkhVHUBg,9748
|
|
75
78
|
agentscope_runtime/sandbox/box/training_box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
79
|
agentscope_runtime/sandbox/box/training_box/base.py,sha256=iUPsfA8oiGDR3BMVU7qisvO-UT8HtCx78ayW67DQ0WQ,3307
|
|
77
|
-
agentscope_runtime/sandbox/box/training_box/env_service.py,sha256=
|
|
80
|
+
agentscope_runtime/sandbox/box/training_box/env_service.py,sha256=YoMswhQrX8VmE202tpFq-bQo6gOd2oemBhTG_MD9Rwg,22616
|
|
78
81
|
agentscope_runtime/sandbox/box/training_box/registry.py,sha256=6fTMZvJbakhEqkaO61K-wIfX6uau7g4nFP63bQ7jiNI,1362
|
|
79
|
-
agentscope_runtime/sandbox/box/training_box/training_box.py,sha256=
|
|
82
|
+
agentscope_runtime/sandbox/box/training_box/training_box.py,sha256=yM1_Veorn2nwnxgAUB-6GZMp_1UKmus9-LpJQwKATxg,10200
|
|
80
83
|
agentscope_runtime/sandbox/box/training_box/environments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
84
|
agentscope_runtime/sandbox/box/training_box/environments/appworld/appworld_env.py,sha256=FJc0eb6bnKL6lxx_4EKWr7kmKLi2jLsykNstecXEqkc,27786
|
|
85
|
+
agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_dataprocess.py,sha256=jkg8wDwDXdZZU7q777tnyqc-C9hRlPF0pffJ4DX5upQ,7352
|
|
86
|
+
agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_env.py,sha256=22hfq1yO5abZocG8FfaabCXD4HGg-RT_8AY1dHbtvxM,11878
|
|
87
|
+
agentscope_runtime/sandbox/box/training_box/environments/bfcl/env_handler.py,sha256=T-W9w4nKI7_BXgF9caqV3KMeX5d6yvdfhQu0o2oWTUE,30114
|
|
82
88
|
agentscope_runtime/sandbox/box/training_box/src/trajectory.py,sha256=cFr3uVUPq5gHKPa6ALi7QCLBVkgYOyPgyJrOzgBHf3k,7885
|
|
83
89
|
agentscope_runtime/sandbox/client/__init__.py,sha256=KiNsTToc1jICqCC1BcH762jZgHuOkCPiG32oXGo6dQE,176
|
|
84
|
-
agentscope_runtime/sandbox/client/http_client.py,sha256=
|
|
90
|
+
agentscope_runtime/sandbox/client/http_client.py,sha256=Edu3ZoYJTX_VAMuSDJg_DQ0GiEtZ2jWN1fkcLu3FtMI,17954
|
|
85
91
|
agentscope_runtime/sandbox/client/training_client.py,sha256=MYfI06MeyIelwjY4QllVL4exhSCMNpdMudGi2ctVL28,7675
|
|
86
92
|
agentscope_runtime/sandbox/custom/__init__.py,sha256=wpu0DlzdLohYzOVM9yZloIWid3w_ME6dPtOjCZKbRZ8,463
|
|
87
93
|
agentscope_runtime/sandbox/custom/custom_sandbox.py,sha256=2-HZRUlZcvv-YZh9NrHBByKamhVowwZ_drGJSAwKM8c,971
|
|
88
94
|
agentscope_runtime/sandbox/custom/example.py,sha256=ycKmuUHghmPTUYfEQW0AyG5SHt1Ggf3_NlAP5Z6OZAQ,931
|
|
89
95
|
agentscope_runtime/sandbox/manager/__init__.py,sha256=KNHc1uDaUWBH_ZnWjH5NHRBiQM_zDyi9B2xKVNtAWIg,98
|
|
90
|
-
agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=
|
|
96
|
+
agentscope_runtime/sandbox/manager/sandbox_manager.py,sha256=CTd5bd8EeRMoiL3PcPCW9HciNIWSU5XCe_5qI6IZjXk,23270
|
|
91
97
|
agentscope_runtime/sandbox/manager/collections/__init__.py,sha256=teQPF7huMB2yEX_CAFsmIJhQxH7ldHR7gr11W3jlx4o,582
|
|
92
98
|
agentscope_runtime/sandbox/manager/collections/base_mapping.py,sha256=IIVNwvaGVAiL6XxV0LvUHx-JmDvUc19iOGyRyAccMaI,361
|
|
93
99
|
agentscope_runtime/sandbox/manager/collections/base_queue.py,sha256=eCwb5eovwzSV83J_Nq3HX_4IQ8rjYw9wdeVRS5sRQHA,424
|
|
@@ -100,23 +106,23 @@ agentscope_runtime/sandbox/manager/collections/redis_queue.py,sha256=4MCIDs7SgSf
|
|
|
100
106
|
agentscope_runtime/sandbox/manager/collections/redis_set.py,sha256=eRCnMXc4hcDF2qyxFiNnrn2o4QjvtgDb6rEcblmV1o8,654
|
|
101
107
|
agentscope_runtime/sandbox/manager/container_clients/__init__.py,sha256=G5TTwLv_UgWUDwtwr6oohJXuGW3gAwxmgD1VhZH3zs8,225
|
|
102
108
|
agentscope_runtime/sandbox/manager/container_clients/base_client.py,sha256=_uvxRh65lbMNXDcHjq01aYuNUrcxRlNzRtRIPMgWFGc,992
|
|
103
|
-
agentscope_runtime/sandbox/manager/container_clients/docker_client.py,sha256=
|
|
104
|
-
agentscope_runtime/sandbox/manager/container_clients/kubernetes_client.py,sha256=
|
|
109
|
+
agentscope_runtime/sandbox/manager/container_clients/docker_client.py,sha256=rmm2mUDfot81kQ7H6O5fI0QHXvCDOsepUdlNnC5ouVU,13407
|
|
110
|
+
agentscope_runtime/sandbox/manager/container_clients/kubernetes_client.py,sha256=1LRlE53bfkGIFQxhZ5yGRAjqm9ilajmoNjLavCD8X5E,20884
|
|
105
111
|
agentscope_runtime/sandbox/manager/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
|
-
agentscope_runtime/sandbox/manager/server/app.py,sha256=
|
|
112
|
+
agentscope_runtime/sandbox/manager/server/app.py,sha256=4JujdShc8FUEHLjwuFEO8kTAKAlBfWOcDmebBj22TyM,10295
|
|
107
113
|
agentscope_runtime/sandbox/manager/server/config.py,sha256=rIRKI_GHmyt3Wty_ujUya_vSw_ij-rRkerqiQPG_yzU,2423
|
|
108
114
|
agentscope_runtime/sandbox/manager/server/models.py,sha256=rCibF0HsotFcqsQVTSUoOTJCFQU3oqKvpOiWMWIRLyY,304
|
|
109
115
|
agentscope_runtime/sandbox/manager/storage/__init__.py,sha256=jGmpfXV1E2X7AqkGeF1xu1EHiSTvbH3TSIviLbKBFh4,210
|
|
110
116
|
agentscope_runtime/sandbox/manager/storage/data_storage.py,sha256=mGwf7LYbp_fRjLN9BZay6cm3eNziEdU6OlSBeFnIBMQ,475
|
|
111
117
|
agentscope_runtime/sandbox/manager/storage/local_storage.py,sha256=o6fkV-yUtBihhfZtLEdBUhF1K8_psSl92AWJFtYQxtk,1521
|
|
112
118
|
agentscope_runtime/sandbox/manager/storage/oss_storage.py,sha256=fIUxgOkOaH_1vlgWBnCM-e4UvD3xS_ycFe2yvSyXzBE,2970
|
|
113
|
-
agentscope_runtime/sandbox/model/__init__.py,sha256=
|
|
119
|
+
agentscope_runtime/sandbox/model/__init__.py,sha256=WoDOSD_67T-UkZdXOtJzwG4-0E8ABwUBJF6WSCs_sO0,182
|
|
114
120
|
agentscope_runtime/sandbox/model/api.py,sha256=Sjxw6DHkGa8Sp5dUU5kaajkHPj7eiX1EgFZk-zOPafM,400
|
|
115
121
|
agentscope_runtime/sandbox/model/container.py,sha256=w2X970bk0C7lLdpq0bk2BJzanVsEES6Btk1LdXWIp4I,1698
|
|
116
|
-
agentscope_runtime/sandbox/model/manager_config.py,sha256=
|
|
122
|
+
agentscope_runtime/sandbox/model/manager_config.py,sha256=P2T0lT_uVlyh2tOcTpJo-zsiS9J7eJ5Voipb9GMFHiw,5118
|
|
117
123
|
agentscope_runtime/sandbox/tools/__init__.py,sha256=ioRqvKFLma8Vq0ePwOR5MekijpcHs2USNYA4Dnr-e6M,287
|
|
118
124
|
agentscope_runtime/sandbox/tools/function_tool.py,sha256=mH4dq3M26pdk-XqxIm1wtsvQz5i8SXcP4Gz0-7_L7cQ,10309
|
|
119
|
-
agentscope_runtime/sandbox/tools/mcp_tool.py,sha256=
|
|
125
|
+
agentscope_runtime/sandbox/tools/mcp_tool.py,sha256=jayFnAoB_cZNwqViRjn0kmcfmYQslTTQVlpBVXdjxfE,6063
|
|
120
126
|
agentscope_runtime/sandbox/tools/sandbox_tool.py,sha256=wHkgixb0dy6DexXbfXVOKUFfLL9QOI2H5oiQ2NntoWM,3067
|
|
121
127
|
agentscope_runtime/sandbox/tools/tool.py,sha256=f2-14tP1V2Vgw5krr0q-uEM3lOAQUF6GdttqYdZkIdI,7361
|
|
122
128
|
agentscope_runtime/sandbox/tools/utils.py,sha256=QksPQK-2DszaQsRw4Srug5hEwrf6hothf-Xp8a1056c,2098
|
|
@@ -126,9 +132,9 @@ agentscope_runtime/sandbox/tools/browser/__init__.py,sha256=gXQx3tXclYqAhPDrXb1-
|
|
|
126
132
|
agentscope_runtime/sandbox/tools/browser/tool.py,sha256=EJ-uhHX9oIb4Q-hXQhTS-7VRJ-AdCRWXb9HVdOQ5JAc,19206
|
|
127
133
|
agentscope_runtime/sandbox/tools/filesystem/__init__.py,sha256=AJK88YU0ceJe99H7T-on2tgaow4ujqGJ1jwv0sd1TtE,607
|
|
128
134
|
agentscope_runtime/sandbox/tools/filesystem/tool.py,sha256=CPsl4TMf76BOSQtG1dqDcVdymciKhMknIG5FffoI2Eg,9847
|
|
129
|
-
agentscope_runtime-0.1.
|
|
130
|
-
agentscope_runtime-0.1.
|
|
131
|
-
agentscope_runtime-0.1.
|
|
132
|
-
agentscope_runtime-0.1.
|
|
133
|
-
agentscope_runtime-0.1.
|
|
134
|
-
agentscope_runtime-0.1.
|
|
135
|
+
agentscope_runtime-0.1.3.dist-info/licenses/LICENSE,sha256=3MckDTgiTJ0E6cxo8FeamFVEFiwz3XJWsriuTtRJzxY,11337
|
|
136
|
+
agentscope_runtime-0.1.3.dist-info/METADATA,sha256=HH6QUvmCNZZFv-h5x3AYb5Uc0YM6qtUpft-rHHigs4Y,20318
|
|
137
|
+
agentscope_runtime-0.1.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
138
|
+
agentscope_runtime-0.1.3.dist-info/entry_points.txt,sha256=SGQZqgozJYj1yJtiyzqiJ2_iYmDvTl2lexxmXENY3wE,223
|
|
139
|
+
agentscope_runtime-0.1.3.dist-info/top_level.txt,sha256=0YHketA7WcMmRmF-3lUzedeTOnP7iL77h-ekb-iG720,19
|
|
140
|
+
agentscope_runtime-0.1.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|