agentscope-runtime 0.2.0b2__tar.gz → 1.0.0__tar.gz
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-0.2.0b2 → agentscope_runtime-1.0.0}/PKG-INFO +240 -168
- agentscope_runtime-0.2.0b2/src/agentscope_runtime.egg-info/PKG-INFO → agentscope_runtime-1.0.0/README.md +210 -203
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/pyproject.toml +26 -54
- agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/agentscope/long_term_memory/__init__.py +6 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/agentscope/long_term_memory/_long_term_memory_adapter.py +258 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/agentscope/memory/__init__.py +6 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/agentscope/memory/_memory_adapter.py +152 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/agentscope/message.py +535 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/agentscope/stream.py +506 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/agentscope/tool/__init__.py +9 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/agentscope/tool/sandbox_tool.py +69 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/agentscope/tool/tool.py +233 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/autogen/tool/__init__.py +7 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/autogen/tool/tool.py +211 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/text/stream.py +29 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/collections/redis_mapping.py +4 -1
- agentscope_runtime-1.0.0/src/agentscope_runtime/common/container_clients/fc_client.py +855 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/common/utils/lazy_loader.py +57 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/__init__.py +28 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/app/agent_app.py +309 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/app/base_app.py +67 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/constant.py +8 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/__init__.py +8 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/deployers/adapter/__init__.py +2 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/adapter/a2a/a2a_adapter_utils.py +0 -21
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py +28 -9
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/deployers/adapter/responses/__init__.py +2 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/adapter/responses/response_api_adapter_utils.py +5 -2
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/adapter/responses/response_api_protocol_adapter.py +1 -1
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/deployers/agentrun_deployer.py +2541 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/cli_fc_deploy.py +1 -1
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/kubernetes_deployer.py +9 -21
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/local_deployer.py +47 -74
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/modelstudio_deployer.py +216 -50
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/deployers/utils/app_runner_utils.py +29 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/deployers/utils/detached_app.py +510 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/utils/docker_image_utils/__init__.py +1 -1
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py +1 -1
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/deployers/utils/docker_image_utils/runner_image_factory.py → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/deployers/utils/docker_image_utils/image_factory.py +121 -61
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/deployers/utils/package.py +693 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/utils/service_utils/__init__.py +0 -5
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py +301 -282
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/utils/service_utils/fastapi_templates.py +2 -4
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/utils/service_utils/process_manager.py +23 -1
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/deployers/utils/templates/app_main.py.j2 +84 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/deployers/utils/templates/runner_main.py.j2 +95 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/deployers/utils/service_utils → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/deployers/utils/templates}/standalone_main.py.j2 +0 -45
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/utils/wheel_packager.py +119 -18
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/helpers/runner.py +40 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/runner.py +296 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/schemas/agent_schemas.py +114 -3
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/schemas/modelstudio_llm.py +4 -2
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/schemas/oai_llm.py +23 -23
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/schemas/response_api.py +65 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/schemas/session.py +24 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/agent_state/__init__.py +16 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/agent_state/redis_state_service.py +113 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/agent_state/state_service.py +179 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/memory/__init__.py +24 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/memory}/mem0_memory_service.py +17 -13
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/memory}/memory_service.py +28 -7
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/memory}/redis_memory_service.py +1 -1
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/memory}/reme_personal_memory_service.py +9 -6
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/memory}/reme_task_memory_service.py +2 -2
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/memory}/tablestore_memory_service.py +12 -18
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/sandbox/__init__.py +13 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/sandbox}/sandbox_service.py +86 -71
- agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/session_history/__init__.py +23 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/session_history}/redis_session_history_service.py +3 -2
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/session_history}/session_history_service.py +44 -34
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/session_history}/tablestore_session_history_service.py +14 -19
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/services/utils/tablestore_service_utils.py +2 -2
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/tracing/base.py +10 -9
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/tracing/message_util.py +1 -1
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/tracing/tracing_util.py +7 -2
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/tracing/wrapper.py +49 -31
- agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/__init__.py +24 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/agentbay/__init__.py +4 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/agentbay/agentbay_sandbox.py +559 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/base/base_sandbox.py +12 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/browser/browser_sandbox.py +115 -11
- agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/cloud/__init__.py +4 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/cloud/cloud_sandbox.py +254 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py +66 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/gui/box/__init__.py +0 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/gui/gui_sandbox.py +123 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/mobile/__init__.py +4 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/mobile/box/__init__.py +0 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/mobile/mobile_sandbox.py +216 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/shared/__init__.py +0 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/training_box/environments/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/training_box/training_box.py +2 -2
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/client/http_client.py +1 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/enums.py +2 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/manager/sandbox_manager.py +15 -2
- agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/manager/server/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/manager/server/app.py +12 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/manager/server/config.py +19 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/model/manager_config.py +79 -2
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/utils.py +0 -18
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/RAGs/__init__.py +0 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/RAGs/modelstudio_rag.py +377 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/RAGs/modelstudio_rag_lite.py +219 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/__init__.py +119 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/_constants.py +18 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/alipay/__init__.py +4 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/alipay/base.py +334 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/alipay/payment.py +835 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/alipay/subscribe.py +551 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/base.py +264 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/cli/__init__.py +0 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/cli/modelstudio_mcp_server.py +78 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/__init__.py +75 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/async_image_to_video.py +350 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/async_image_to_video_wan25.py +366 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/async_speech_to_video.py +422 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/async_text_to_video.py +320 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/async_text_to_video_wan25.py +334 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/image_edit.py +208 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/image_edit_wan25.py +193 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/image_generation.py +202 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/image_generation_wan25.py +201 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/image_style_repaint.py +208 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/image_to_video.py +233 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/qwen_image_edit.py +205 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/qwen_image_generation.py +214 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/qwen_text_to_speech.py +154 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/speech_to_text.py +260 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/speech_to_video.py +314 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/generations/text_to_video.py +221 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/mcp_wrapper.py +215 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/realtime_clients/__init__.py +13 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/realtime_clients/asr_client.py +27 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/realtime_clients/azure_asr_client.py +195 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/realtime_clients/azure_tts_client.py +383 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/realtime_clients/modelstudio_asr_client.py +151 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/realtime_clients/modelstudio_tts_client.py +199 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/realtime_clients/realtime_tool.py +55 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/realtime_clients/tts_client.py +33 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/searches/__init__.py +3 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/searches/modelstudio_search.py +877 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/searches/modelstudio_search_lite.py +310 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/utils/__init__.py +0 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/utils/api_key_util.py +45 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/utils/crypto_utils.py +99 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/tools/utils/mcp_util.py +35 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime/version.py +2 -0
- agentscope_runtime-0.2.0b2/README.md → agentscope_runtime-1.0.0/src/agentscope_runtime.egg-info/PKG-INFO +275 -124
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime.egg-info/SOURCES.txt +100 -43
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime.egg-info/entry_points.txt +1 -0
- agentscope_runtime-1.0.0/src/agentscope_runtime.egg-info/requires.txt +58 -0
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/__init__.py +0 -21
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/agents/__init__.py +0 -2
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/agents/agentscope_agent.py +0 -488
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/agents/agno_agent.py +0 -220
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/agents/autogen_agent.py +0 -250
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/agents/base_agent.py +0 -29
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/agents/langgraph_agent.py +0 -59
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/agents/utils.py +0 -53
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/app/agent_app.py +0 -239
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/app/base_app.py +0 -181
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/deployers/utils/package_project_utils.py +0 -1163
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/deployers/utils/service_utils/service_config.py +0 -75
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/deployers/utils/service_utils/service_factory.py +0 -220
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/helpers/helper.py +0 -179
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/runner.py +0 -255
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/schemas/context.py +0 -54
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services/__init__.py +0 -9
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services/context_manager.py +0 -164
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services/environment_manager.py +0 -50
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services/manager.py +0 -174
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services/rag_service.py +0 -195
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services/tablestore_rag_service.py +0 -143
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/__init__.py +0 -16
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/box/gui/gui_sandbox.py +0 -81
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/__init__.py +0 -12
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/base/__init__.py +0 -8
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/base/tool.py +0 -52
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/browser/__init__.py +0 -57
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/browser/tool.py +0 -597
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/filesystem/__init__.py +0 -32
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/filesystem/tool.py +0 -319
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/function_tool.py +0 -321
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/gui/__init__.py +0 -7
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/gui/tool.py +0 -77
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/mcp_tool.py +0 -195
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/sandbox_tool.py +0 -104
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/tool.py +0 -238
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/tools/utils.py +0 -68
- agentscope_runtime-0.2.0b2/src/agentscope_runtime/version.py +0 -2
- agentscope_runtime-0.2.0b2/src/agentscope_runtime.egg-info/requires.txt +0 -82
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/LICENSE +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/setup.cfg +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/setup.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/common → agentscope_runtime-1.0.0/src/agentscope_runtime/adapters}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/common/container_clients → agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/agentscope}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/deployers/adapter → agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/autogen}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/deployers/adapter/responses → agentscope_runtime-1.0.0/src/agentscope_runtime/adapters/text}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/deployers/utils → agentscope_runtime-1.0.0/src/agentscope_runtime/common}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/collections/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/collections/base_mapping.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/collections/base_queue.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/collections/base_set.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/collections/in_memory_mapping.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/collections/in_memory_queue.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/collections/in_memory_set.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/collections/redis_queue.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/collections/redis_set.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/misc → agentscope_runtime-1.0.0/src/agentscope_runtime/common/container_clients}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/container_clients/agentrun_client.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/container_clients/base_client.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/container_clients/docker_client.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/common/container_clients/kubernetes_client.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/schemas → agentscope_runtime-1.0.0/src/agentscope_runtime/common/utils}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/app/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/app/celery_mixin.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/adapter/a2a/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/adapter/a2a/a2a_agent_adapter.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/adapter/protocol_adapter.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/adapter/responses/response_api_agent_adapter.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/base.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/engine/services → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/deployers}/utils/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/utils/deployment_modes.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/helpers/agent_api_builder.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/box → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/misc}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/box/base/box → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/schemas}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/schemas/embedding.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/schemas/realtime.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/box/browser/box → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/services/base.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/box/filesystem/box → agentscope_runtime-1.0.0/src/agentscope_runtime/engine/services/utils}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/tracing/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/tracing/asyncio_util.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/tracing/local_logging_handler.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/engine/tracing/tracing_metric.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/box/gui → agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox}/box/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/base/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/box/shared → agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/base/box}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/browser/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/box/training_box/environments → agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/browser/box}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/dummy/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/filesystem/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2/src/agentscope_runtime/sandbox/manager/server → agentscope_runtime-1.0.0/src/agentscope_runtime/sandbox/box/filesystem/box}/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/gui/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/sandbox.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/shared/app.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/shared/dependencies/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/shared/dependencies/deps.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/shared/routers/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/shared/routers/generic.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/shared/routers/mcp.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/shared/routers/runtime_watcher.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/shared/routers/workspace.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/training_box/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/training_box/base.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/training_box/env_service.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/training_box/environments/appworld/appworld_env.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_dataprocess.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_env.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/training_box/environments/bfcl/env_handler.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/training_box/registry.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/box/training_box/src/trajectory.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/build.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/client/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/client/training_client.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/constant.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/custom/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/custom/custom_sandbox.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/custom/example.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/manager/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/manager/server/models.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/manager/storage/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/manager/storage/data_storage.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/manager/storage/local_storage.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/manager/storage/oss_storage.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/mcp_server.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/model/__init__.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/model/api.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/model/container.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime/sandbox/registry.py +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime.egg-info/dependency_links.txt +0 -0
- {agentscope_runtime-0.2.0b2 → agentscope_runtime-1.0.0}/src/agentscope_runtime.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentscope-runtime
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: A production-ready runtime framework for agent applications, providing secure sandboxed execution environments and scalable deployment solutions with multi-framework support.
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -21,6 +21,11 @@ Requires-Dist: kubernetes>=33.1.0
|
|
|
21
21
|
Requires-Dist: shortuuid>=1.0.13
|
|
22
22
|
Requires-Dist: celery[redis]>=5.3.1
|
|
23
23
|
Requires-Dist: a2a-sdk>=0.3.0
|
|
24
|
+
Requires-Dist: jinja2
|
|
25
|
+
Requires-Dist: psutil
|
|
26
|
+
Requires-Dist: dashscope>=1.25.0
|
|
27
|
+
Requires-Dist: jsonref
|
|
28
|
+
Requires-Dist: asgiref
|
|
24
29
|
Provides-Extra: dev
|
|
25
30
|
Requires-Dist: pytest>=8.3.5; extra == "dev"
|
|
26
31
|
Requires-Dist: pytest-asyncio>=0.23.0; extra == "dev"
|
|
@@ -31,55 +36,36 @@ Requires-Dist: pytest-cov>=6.2.1; extra == "dev"
|
|
|
31
36
|
Requires-Dist: fakeredis>=2.31.0; extra == "dev"
|
|
32
37
|
Requires-Dist: sphinx-autoapi>=3.6.0; extra == "dev"
|
|
33
38
|
Requires-Dist: pytest-mock>=3.15.1; extra == "dev"
|
|
34
|
-
|
|
35
|
-
Requires-Dist: langgraph>=0.
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
|
|
42
|
-
Requires-Dist: alibabacloud-
|
|
43
|
-
Requires-Dist:
|
|
44
|
-
|
|
45
|
-
Requires-Dist:
|
|
46
|
-
Requires-Dist:
|
|
47
|
-
Requires-Dist:
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
|
|
51
|
-
Requires-Dist:
|
|
52
|
-
Requires-Dist:
|
|
53
|
-
Requires-Dist:
|
|
54
|
-
Requires-Dist:
|
|
55
|
-
Requires-Dist:
|
|
56
|
-
Requires-Dist:
|
|
57
|
-
Requires-Dist:
|
|
58
|
-
|
|
59
|
-
Requires-Dist: tablestore-for-agent-memory>=1.1.0; extra == "aliyun-tablestore-ext"
|
|
60
|
-
Requires-Dist: dashscope>=1.24.4; extra == "aliyun-tablestore-ext"
|
|
61
|
-
Requires-Dist: langchain-community>=0.3.27; extra == "aliyun-tablestore-ext"
|
|
62
|
-
Provides-Extra: memory-ext
|
|
63
|
-
Requires-Dist: reme-ai==0.1.9; python_full_version >= "3.12" and extra == "memory-ext"
|
|
64
|
-
Requires-Dist: mem0ai>=0.1.117; extra == "memory-ext"
|
|
65
|
-
Provides-Extra: deployment
|
|
66
|
-
Requires-Dist: alibabacloud-oss-v2; extra == "deployment"
|
|
67
|
-
Requires-Dist: alibabacloud-bailian20231229>=2.5.0; extra == "deployment"
|
|
68
|
-
Requires-Dist: build; extra == "deployment"
|
|
69
|
-
Requires-Dist: setuptools>=40.8.0; extra == "deployment"
|
|
70
|
-
Requires-Dist: wheel; extra == "deployment"
|
|
71
|
-
Requires-Dist: steel-sdk>=0.1.0; extra == "deployment"
|
|
72
|
-
Requires-Dist: alibabacloud-credentials; extra == "deployment"
|
|
73
|
-
Requires-Dist: jinja2; extra == "deployment"
|
|
74
|
-
Requires-Dist: psutil; extra == "deployment"
|
|
75
|
-
Requires-Dist: shortuuid>=1.0.13; extra == "deployment"
|
|
76
|
-
Requires-Dist: PyYAML; extra == "deployment"
|
|
77
|
-
Requires-Dist: oss2>=2.19.1; extra == "deployment"
|
|
39
|
+
Requires-Dist: sphinxcontrib-mermaid>=1.2.3; extra == "dev"
|
|
40
|
+
Requires-Dist: langgraph>=0.4.0; extra == "dev"
|
|
41
|
+
Requires-Dist: autogen-agentchat>=0.7.0; extra == "dev"
|
|
42
|
+
Provides-Extra: ext
|
|
43
|
+
Requires-Dist: reme-ai>=0.2.0.2; extra == "ext"
|
|
44
|
+
Requires-Dist: mem0ai>=0.1.117; extra == "ext"
|
|
45
|
+
Requires-Dist: alibabacloud-agentrun20250910>=2.0.1; extra == "ext"
|
|
46
|
+
Requires-Dist: alibabacloud_tea_openapi>=0.4.0; extra == "ext"
|
|
47
|
+
Requires-Dist: alibabacloud-fc20230330>=4.4.0; extra == "ext"
|
|
48
|
+
Requires-Dist: tablestore-for-agent-memory>=1.1.0; extra == "ext"
|
|
49
|
+
Requires-Dist: langchain-community>=0.3.27; extra == "ext"
|
|
50
|
+
Requires-Dist: wuying-agentbay-sdk>=0.5.0; extra == "ext"
|
|
51
|
+
Requires-Dist: alipay-sdk-python; extra == "ext"
|
|
52
|
+
Requires-Dist: cryptography; extra == "ext"
|
|
53
|
+
Requires-Dist: gunicorn>=20.0.0; extra == "ext"
|
|
54
|
+
Requires-Dist: starlette>=0.37.0; extra == "ext"
|
|
55
|
+
Requires-Dist: asgiref>=3.11.0; extra == "ext"
|
|
56
|
+
Requires-Dist: azure-cognitiveservices-speech>=1.47.0; extra == "ext"
|
|
57
|
+
Requires-Dist: alibabacloud-oss-v2; extra == "ext"
|
|
58
|
+
Requires-Dist: alibabacloud-bailian20231229>=2.6.0; extra == "ext"
|
|
59
|
+
Requires-Dist: build; extra == "ext"
|
|
60
|
+
Requires-Dist: setuptools>=40.8.0; extra == "ext"
|
|
61
|
+
Requires-Dist: wheel; extra == "ext"
|
|
62
|
+
Requires-Dist: alibabacloud-credentials; extra == "ext"
|
|
63
|
+
Requires-Dist: PyYAML; extra == "ext"
|
|
78
64
|
Dynamic: license-file
|
|
79
65
|
|
|
80
66
|
<div align="center">
|
|
81
67
|
|
|
82
|
-
# AgentScope Runtime
|
|
68
|
+
# AgentScope Runtime v1.0
|
|
83
69
|
|
|
84
70
|
[](https://github.com/agentscope-ai/agentscope-runtime)
|
|
85
71
|
[](https://pypi.org/project/agentscope-runtime/)
|
|
@@ -103,7 +89,9 @@ Dynamic: license-file
|
|
|
103
89
|
|
|
104
90
|
**A Production-Ready Runtime Framework for Intelligent Agent Applications**
|
|
105
91
|
|
|
106
|
-
|
|
92
|
+
***AgentScope Runtime** is a full-stack agent runtime that tackles two core challenges: **efficient agent deployment** and **secure sandbox execution**. It ships with foundational services such as short- and long-term memory plus agent state persistence, along with hardened sandbox infrastructure. Whether you need to orchestrate production-grade agents or guarantee safe tool interactions, AgentScope Runtime provides developer-friendly workflows with complete observability.*
|
|
93
|
+
|
|
94
|
+
*In V1.0, these services are exposed via an **adapter pattern**, enabling seamless integration with the native modules of different agent frameworks while preserving their native interfaces and behaviors, ensuring both compatibility and flexibility.*
|
|
107
95
|
|
|
108
96
|
</div>
|
|
109
97
|
|
|
@@ -111,21 +99,22 @@ Dynamic: license-file
|
|
|
111
99
|
|
|
112
100
|
## 🆕 NEWS
|
|
113
101
|
|
|
114
|
-
* **[2025-
|
|
115
|
-
* **[2025-10]** **GUI Sandbox** is added with support for virtual desktop environments, mouse, keyboard, and screen operations. Introduced the **`desktop_url`** property for GUI Sandbox, Browser Sandbox, and Filesystem Sandbox — allowing direct access to the virtual desktop via your browser. Check our [cookbook](https://runtime.agentscope.io/en/sandbox.html#sandbox-usage) for more details.
|
|
102
|
+
* **[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.
|
|
116
103
|
|
|
117
104
|
---
|
|
118
105
|
|
|
119
106
|
## ✨ Key Features
|
|
120
107
|
|
|
121
|
-
- **🏗️ Deployment Infrastructure**: Built-in services for
|
|
122
|
-
-
|
|
123
|
-
|
|
124
|
-
-
|
|
125
|
-
|
|
126
|
-
-
|
|
108
|
+
- **🏗️ Deployment Infrastructure**: Built-in services for agent state management, conversation history, long-term memory, and sandbox lifecycle control
|
|
109
|
+
- **🔧 Framework-Agnostic**: Not tied to any specific agent framework; seamlessly integrates with popular open-source and custom implementations
|
|
110
|
+
- ⚡ **Developer-Friendly**: Offers `AgentApp` for easy deployment with powerful customization options
|
|
111
|
+
- **📊 Observability**: Comprehensive tracking and monitoring of runtime operations
|
|
112
|
+
- **🔒 Sandboxed Tool Execution**: Isolated sandbox ensures safe tool execution without affecting the system
|
|
113
|
+
- **🛠️ Out-of-the-Box Tools & One-Click Adaptation**: Rich set of ready-to-use tools, with adapters enabling quick integration into different frameworks
|
|
127
114
|
|
|
128
|
-
|
|
115
|
+
> [!NOTE]
|
|
116
|
+
>
|
|
117
|
+
> **About Framework-Agnostic**: Currently, AgentScope Runtime supports the **AgentScope** framework. We plan to extend compatibility to more agent development frameworks in the future.
|
|
129
118
|
|
|
130
119
|
---
|
|
131
120
|
|
|
@@ -143,7 +132,6 @@ Welcome to join our community on
|
|
|
143
132
|
|
|
144
133
|
- [🚀 Quick Start](#-quick-start)
|
|
145
134
|
- [📚 Cookbook](#-cookbook)
|
|
146
|
-
- [🔌 Agent Framework Integration](#-agent-framework-integration)
|
|
147
135
|
- [🏗️ Deployment](#️-deployment)
|
|
148
136
|
- [🤝 Contributing](#-contributing)
|
|
149
137
|
- [📄 License](#-license)
|
|
@@ -163,6 +151,12 @@ From PyPI:
|
|
|
163
151
|
```bash
|
|
164
152
|
# Install core dependencies
|
|
165
153
|
pip install agentscope-runtime
|
|
154
|
+
|
|
155
|
+
# Install extension
|
|
156
|
+
pip install "agentscope-runtime[ext]"
|
|
157
|
+
|
|
158
|
+
# Install preview version
|
|
159
|
+
pip install --pre agentscope-runtime
|
|
166
160
|
```
|
|
167
161
|
|
|
168
162
|
(Optional) From source:
|
|
@@ -176,35 +170,112 @@ cd agentscope-runtime
|
|
|
176
170
|
pip install -e .
|
|
177
171
|
```
|
|
178
172
|
|
|
179
|
-
###
|
|
173
|
+
### Agent App Example
|
|
180
174
|
|
|
181
|
-
This example demonstrates how to create an agent API server using agentscope `ReActAgent` and `AgentApp`.
|
|
175
|
+
This example demonstrates how to create an agent API server using agentscope `ReActAgent` and `AgentApp`. To run a minimal `AgentScope` Agent with AgentScope Runtime, you generally need to implement:
|
|
176
|
+
|
|
177
|
+
1. **`@agent_app.init`** – Initialize services/resources at startup
|
|
178
|
+
2. **`@agent_app.query(framework="agentscope")`** – Core logic for handling requests, **must use** `stream_printing_messages` to `yield msg, last` for streaming output
|
|
179
|
+
3. **`@agent_app.shutdown`** – Clean up services/resources on exit
|
|
182
180
|
|
|
183
181
|
|
|
184
182
|
```python
|
|
185
183
|
import os
|
|
186
184
|
|
|
185
|
+
from agentscope.agent import ReActAgent
|
|
186
|
+
from agentscope.model import DashScopeChatModel
|
|
187
|
+
from agentscope.formatter import DashScopeChatFormatter
|
|
188
|
+
from agentscope.tool import Toolkit, execute_python_code
|
|
189
|
+
from agentscope.pipeline import stream_printing_messages
|
|
190
|
+
|
|
187
191
|
from agentscope_runtime.engine import AgentApp
|
|
188
|
-
from agentscope_runtime.engine.
|
|
192
|
+
from agentscope_runtime.engine.schemas.agent_schemas import AgentRequest
|
|
193
|
+
from agentscope_runtime.adapters.agentscope.memory import (
|
|
194
|
+
AgentScopeSessionHistoryMemory,
|
|
195
|
+
)
|
|
196
|
+
from agentscope_runtime.engine.services.agent_state import (
|
|
197
|
+
InMemoryStateService,
|
|
198
|
+
)
|
|
199
|
+
from agentscope_runtime.engine.services.session_history import (
|
|
200
|
+
InMemorySessionHistoryService,
|
|
201
|
+
)
|
|
189
202
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
agent = AgentScopeAgent(
|
|
195
|
-
name="Friday",
|
|
196
|
-
model=OpenAIChatModel(
|
|
197
|
-
"gpt-4",
|
|
198
|
-
api_key=os.getenv("OPENAI_API_KEY"),
|
|
199
|
-
),
|
|
200
|
-
agent_config={
|
|
201
|
-
"sys_prompt": "You're a helpful assistant named Friday.",
|
|
202
|
-
},
|
|
203
|
-
agent_builder=ReActAgent, # Or use your own agent builder
|
|
203
|
+
agent_app = AgentApp(
|
|
204
|
+
app_name="Friday",
|
|
205
|
+
app_description="A helpful assistant",
|
|
204
206
|
)
|
|
205
|
-
app = AgentApp(agent=agent, endpoint_path="/process")
|
|
206
207
|
|
|
207
|
-
|
|
208
|
+
|
|
209
|
+
@agent_app.init
|
|
210
|
+
async def init_func(self):
|
|
211
|
+
self.state_service = InMemoryStateService()
|
|
212
|
+
self.session_service = InMemorySessionHistoryService()
|
|
213
|
+
|
|
214
|
+
await self.state_service.start()
|
|
215
|
+
await self.session_service.start()
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
@agent_app.shutdown
|
|
219
|
+
async def shutdown_func(self):
|
|
220
|
+
await self.state_service.stop()
|
|
221
|
+
await self.session_service.stop()
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
@agent_app.query(framework="agentscope")
|
|
225
|
+
async def query_func(
|
|
226
|
+
self,
|
|
227
|
+
msgs,
|
|
228
|
+
request: AgentRequest = None,
|
|
229
|
+
**kwargs,
|
|
230
|
+
):
|
|
231
|
+
session_id = request.session_id
|
|
232
|
+
user_id = request.user_id
|
|
233
|
+
|
|
234
|
+
state = await self.state_service.export_state(
|
|
235
|
+
session_id=session_id,
|
|
236
|
+
user_id=user_id,
|
|
237
|
+
)
|
|
238
|
+
|
|
239
|
+
toolkit = Toolkit()
|
|
240
|
+
toolkit.register_tool_function(execute_python_code)
|
|
241
|
+
|
|
242
|
+
agent = ReActAgent(
|
|
243
|
+
name="Friday",
|
|
244
|
+
model=DashScopeChatModel(
|
|
245
|
+
"qwen-turbo",
|
|
246
|
+
api_key=os.getenv("DASHSCOPE_API_KEY"),
|
|
247
|
+
stream=True,
|
|
248
|
+
),
|
|
249
|
+
sys_prompt="You're a helpful assistant named Friday.",
|
|
250
|
+
toolkit=toolkit,
|
|
251
|
+
memory=AgentScopeSessionHistoryMemory(
|
|
252
|
+
service=self.session_service,
|
|
253
|
+
session_id=session_id,
|
|
254
|
+
user_id=user_id,
|
|
255
|
+
),
|
|
256
|
+
formatter=DashScopeChatFormatter(),
|
|
257
|
+
)
|
|
258
|
+
agent.set_console_output_enabled(enabled=False)
|
|
259
|
+
|
|
260
|
+
if state:
|
|
261
|
+
agent.load_state_dict(state)
|
|
262
|
+
|
|
263
|
+
async for msg, last in stream_printing_messages(
|
|
264
|
+
agents=[agent],
|
|
265
|
+
coroutine_task=agent(msgs),
|
|
266
|
+
):
|
|
267
|
+
yield msg, last
|
|
268
|
+
|
|
269
|
+
state = agent.state_dict()
|
|
270
|
+
|
|
271
|
+
await self.state_service.save_state(
|
|
272
|
+
user_id=user_id,
|
|
273
|
+
session_id=session_id,
|
|
274
|
+
state=state,
|
|
275
|
+
)
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
agent_app.run(host="127.0.0.1", port=8090)
|
|
208
279
|
```
|
|
209
280
|
|
|
210
281
|
The server will start and listen on: `http://localhost:8090/process`. You can send JSON input to the API using `curl`:
|
|
@@ -230,12 +301,14 @@ You’ll see output streamed in **Server-Sent Events (SSE)** format:
|
|
|
230
301
|
```bash
|
|
231
302
|
data: {"sequence_number":0,"object":"response","status":"created", ... }
|
|
232
303
|
data: {"sequence_number":1,"object":"response","status":"in_progress", ... }
|
|
233
|
-
data: {"sequence_number":2,"object":"
|
|
234
|
-
data: {"sequence_number":3,"object":"content","status":"in_progress","text":"
|
|
235
|
-
data: {"sequence_number":4,"object":"
|
|
304
|
+
data: {"sequence_number":2,"object":"message","status":"in_progress", ... }
|
|
305
|
+
data: {"sequence_number":3,"object":"content","status":"in_progress","text":"The" }
|
|
306
|
+
data: {"sequence_number":4,"object":"content","status":"in_progress","text":" capital of France is Paris." }
|
|
307
|
+
data: {"sequence_number":5,"object":"message","status":"completed","text":"The capital of France is Paris." }
|
|
308
|
+
data: {"sequence_number":6,"object":"response","status":"completed", ... }
|
|
236
309
|
```
|
|
237
310
|
|
|
238
|
-
###
|
|
311
|
+
### Sandbox Example
|
|
239
312
|
|
|
240
313
|
These examples demonstrate how to create sandboxed environments and execute tools within them, with some examples featuring interactive frontend interfaces accessible via VNC (Virtual Network Computing):
|
|
241
314
|
|
|
@@ -312,6 +385,57 @@ with FilesystemSandbox() as box:
|
|
|
312
385
|
input("Press Enter to continue...")
|
|
313
386
|
```
|
|
314
387
|
|
|
388
|
+
#### Mobile Sandbox
|
|
389
|
+
|
|
390
|
+
Provides a **sandboxed Android emulator environment** that allows executing various mobile operations, such as tapping, swiping, inputting text, and taking screenshots.
|
|
391
|
+
|
|
392
|
+
##### Prerequisites
|
|
393
|
+
|
|
394
|
+
- **Linux Host**:
|
|
395
|
+
When running on a Linux host, this sandbox requires the `binder` and `ashmem` kernel modules to be loaded. If they are missing, execute the following commands on your host to install and load the required modules:
|
|
396
|
+
|
|
397
|
+
```bash
|
|
398
|
+
# 1. Install extra kernel modules
|
|
399
|
+
sudo apt update && sudo apt install -y linux-modules-extra-`uname -r`
|
|
400
|
+
|
|
401
|
+
# 2. Load modules and create device nodes
|
|
402
|
+
sudo modprobe binder_linux devices="binder,hwbinder,vndbinder"
|
|
403
|
+
sudo modprobe ashmem_linux
|
|
404
|
+
- **Architecture Compatibility**:
|
|
405
|
+
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.
|
|
406
|
+
```python
|
|
407
|
+
from agentscope_runtime.sandbox import MobileSandbox
|
|
408
|
+
|
|
409
|
+
with MobileSandbox() as box:
|
|
410
|
+
# By default, pulls 'agentscope/runtime-sandbox-mobile:latest' from DockerHub
|
|
411
|
+
print(box.list_tools()) # List all available tools
|
|
412
|
+
print(box.mobile_get_screen_resolution()) # Get the screen resolution
|
|
413
|
+
print(box.mobile_tap(x=500, y=1000)) # Tap at coordinate (500, 1000)
|
|
414
|
+
print(box.mobile_input_text("Hello from AgentScope!")) # Input text
|
|
415
|
+
print(box.mobile_key_event(3)) # Sends a HOME key event (KeyCode: 3)
|
|
416
|
+
screenshot_result = box.mobile_get_screenshot() # Get the current screenshot
|
|
417
|
+
input("Press Enter to continue...")
|
|
418
|
+
```
|
|
419
|
+
|
|
420
|
+
> [!NOTE]
|
|
421
|
+
>
|
|
422
|
+
> To add tools to the AgentScope `Toolkit`:
|
|
423
|
+
>
|
|
424
|
+
> 1. Wrap sandbox tool with `sandbox_tool_adapter`, so the AgentScope agent can call them:
|
|
425
|
+
>
|
|
426
|
+
> ```python
|
|
427
|
+
> from agentscope_runtime.adapters.agentscope.tool import sandbox_tool_adapter
|
|
428
|
+
>
|
|
429
|
+
> wrapped_tool = sandbox_tool_adapter(sandbox.browser_navigate)
|
|
430
|
+
> ```
|
|
431
|
+
>
|
|
432
|
+
> 2. Register the tool with `register_tool_function`:
|
|
433
|
+
>
|
|
434
|
+
> ```python
|
|
435
|
+
> toolkit = Toolkit()
|
|
436
|
+
> Toolkit.register_tool_function(wrapped_tool)
|
|
437
|
+
> ```
|
|
438
|
+
|
|
315
439
|
#### Configuring Sandbox Image Registry, Namespace, and Tag
|
|
316
440
|
|
|
317
441
|
##### 1. Registry
|
|
@@ -372,110 +496,47 @@ agentscope-registry.ap-southeast-1.cr.aliyuncs.com/agentscope/runtime-sandbox-ba
|
|
|
372
496
|
|
|
373
497
|
---
|
|
374
498
|
|
|
375
|
-
##
|
|
499
|
+
## 🏗️ Deployment
|
|
376
500
|
|
|
377
|
-
|
|
501
|
+
The `AgentApp` exposes a `deploy` method that takes a `DeployManager` instance and deploys the agent.
|
|
378
502
|
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
from agno.agent import Agent
|
|
382
|
-
from agno.models.openai import OpenAIChat
|
|
383
|
-
from agentscope_runtime.engine.agents.agno_agent import AgnoAgent
|
|
384
|
-
|
|
385
|
-
agent = AgnoAgent(
|
|
386
|
-
name="Friday",
|
|
387
|
-
model=OpenAIChat(
|
|
388
|
-
id="gpt-4",
|
|
389
|
-
),
|
|
390
|
-
agent_config={
|
|
391
|
-
"instructions": "You're a helpful assistant.",
|
|
392
|
-
},
|
|
393
|
-
agent_builder=Agent,
|
|
394
|
-
)
|
|
395
|
-
```
|
|
503
|
+
* The service port is set as the parameter `port` when creating the `LocalDeployManager`.
|
|
504
|
+
* The service endpoint path is set as the parameter `endpoint_path` to `/process` when deploying the agent.
|
|
396
505
|
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
```python
|
|
400
|
-
# pip install "agentscope-runtime[autogen]"
|
|
401
|
-
from autogen_agentchat.agents import AssistantAgent
|
|
402
|
-
from autogen_ext.models.openai import OpenAIChatCompletionClient
|
|
403
|
-
from agentscope_runtime.engine.agents.autogen_agent import AutogenAgent
|
|
404
|
-
|
|
405
|
-
agent = AutogenAgent(
|
|
406
|
-
name="Friday",
|
|
407
|
-
model=OpenAIChatCompletionClient(
|
|
408
|
-
model="gpt-4",
|
|
409
|
-
),
|
|
410
|
-
agent_config={
|
|
411
|
-
"system_message": "You're a helpful assistant",
|
|
412
|
-
},
|
|
413
|
-
agent_builder=AssistantAgent,
|
|
414
|
-
)
|
|
415
|
-
```
|
|
506
|
+
* The deployer will automatically add common agent protocols, such as **A2A**, **Response API**.
|
|
416
507
|
|
|
417
|
-
|
|
508
|
+
After deployment, users can access the service at `http://localhost:8090/process:
|
|
418
509
|
|
|
419
510
|
```python
|
|
420
|
-
|
|
421
|
-
from typing import TypedDict
|
|
422
|
-
from langgraph import graph, types
|
|
423
|
-
from agentscope_runtime.engine.agents.langgraph_agent import LangGraphAgent
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
# define the state
|
|
427
|
-
class State(TypedDict, total=False):
|
|
428
|
-
id: str
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
# define the node functions
|
|
432
|
-
async def set_id(state: State):
|
|
433
|
-
new_id = state.get("id")
|
|
434
|
-
assert new_id is not None, "must set ID"
|
|
435
|
-
return types.Command(update=State(id=new_id), goto="REVERSE_ID")
|
|
436
|
-
|
|
511
|
+
from agentscope_runtime.engine.deployers import LocalDeployManager
|
|
437
512
|
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
513
|
+
# Create deployment manager
|
|
514
|
+
deployer = LocalDeployManager(
|
|
515
|
+
host="0.0.0.0",
|
|
516
|
+
port=8090,
|
|
517
|
+
)
|
|
442
518
|
|
|
519
|
+
# Deploy the app as a streaming service
|
|
520
|
+
deploy_result = await app.deploy(deployer=deployer)
|
|
443
521
|
|
|
444
|
-
state_graph = graph.StateGraph(state_schema=State)
|
|
445
|
-
state_graph.add_node("SET_ID", set_id)
|
|
446
|
-
state_graph.add_node("REVERSE_ID", reverse_id)
|
|
447
|
-
state_graph.set_entry_point("SET_ID")
|
|
448
|
-
compiled_graph = state_graph.compile(name="ID Reversal")
|
|
449
|
-
agent = LangGraphAgent(graph=compiled_graph)
|
|
450
522
|
```
|
|
451
523
|
|
|
452
|
-
|
|
453
|
-
>
|
|
454
|
-
> More agent framework interations are comming soon!
|
|
455
|
-
|
|
456
|
-
---
|
|
457
|
-
|
|
458
|
-
## 🏗️ Deployment
|
|
459
|
-
|
|
460
|
-
The agent runner exposes a `deploy` method that takes a `DeployManager` instance and deploys the agent. The service port is set as the parameter `port` when creating the `LocalDeployManager`. The service endpoint path is set as the parameter `endpoint_path` when deploying the agent. In this example, we set the endpoint path to `/process`. After deployment, you can access the service at `http://localhost:8090/process`.
|
|
524
|
+
After deployment, users can also access this service using the Response API of the OpenAI SDK:
|
|
461
525
|
|
|
462
526
|
```python
|
|
463
|
-
from
|
|
527
|
+
from openai import OpenAI
|
|
464
528
|
|
|
465
|
-
|
|
466
|
-
deploy_manager = LocalDeployManager(
|
|
467
|
-
host="localhost",
|
|
468
|
-
port=8090,
|
|
469
|
-
)
|
|
529
|
+
client = OpenAI(base_url="http://0.0.0.0:8090/compatible-mode/v1")
|
|
470
530
|
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
endpoint_path="/process",
|
|
475
|
-
stream=True, # Enable streaming responses
|
|
531
|
+
response = client.responses.create(
|
|
532
|
+
model="any_name",
|
|
533
|
+
input="What is the weather in Beijing?"
|
|
476
534
|
)
|
|
535
|
+
|
|
536
|
+
print(response)
|
|
477
537
|
```
|
|
478
538
|
|
|
539
|
+
|
|
479
540
|
---
|
|
480
541
|
|
|
481
542
|
## 🤝 Contributing
|
|
@@ -525,10 +586,10 @@ limitations under the License.
|
|
|
525
586
|
|
|
526
587
|
## Contributors ✨
|
|
527
588
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
528
|
-
[](#contributors-)
|
|
529
590
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
530
591
|
|
|
531
|
-
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/
|
|
592
|
+
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/emoji-key/)):
|
|
532
593
|
|
|
533
594
|
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
534
595
|
<!-- prettier-ignore-start -->
|
|
@@ -555,6 +616,17 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
555
616
|
</tr>
|
|
556
617
|
<tr>
|
|
557
618
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ms-cs"><img src="https://avatars.githubusercontent.com/u/43086458?v=4?s=100" width="100px;" alt="zhiyong"/><br /><sub><b>zhiyong</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=ms-cs" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/issues?q=author%3Ams-cs" title="Bug reports">🐛</a></td>
|
|
619
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jooojo"><img src="https://avatars.githubusercontent.com/u/11719425?v=4?s=100" width="100px;" alt="jooojo"/><br /><sub><b>jooojo</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=jooojo" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/issues?q=author%3Ajooojo" title="Bug reports">🐛</a></td>
|
|
620
|
+
<td align="center" valign="top" width="14.28%"><a href="http://ceshihao.github.io"><img src="https://avatars.githubusercontent.com/u/7711875?v=4?s=100" width="100px;" alt="Zheng Dayu"/><br /><sub><b>Zheng Dayu</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=ceshihao" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/issues?q=author%3Aceshihao" title="Bug reports">🐛</a></td>
|
|
621
|
+
<td align="center" valign="top" width="14.28%"><a href="http://lokk.cn/about"><img src="https://avatars.githubusercontent.com/u/39740818?v=4?s=100" width="100px;" alt="quanyu"/><br /><sub><b>quanyu</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=taoquanyus" title="Code">💻</a></td>
|
|
622
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Littlegrace111"><img src="https://avatars.githubusercontent.com/u/3880455?v=4?s=100" width="100px;" alt="Grace Wu"/><br /><sub><b>Grace Wu</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=Littlegrace111" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=Littlegrace111" title="Documentation">📖</a></td>
|
|
623
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/pitt-liang"><img src="https://avatars.githubusercontent.com/u/8534560?v=4?s=100" width="100px;" alt="LiangQuan"/><br /><sub><b>LiangQuan</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=pitt-liang" title="Code">💻</a></td>
|
|
624
|
+
<td align="center" valign="top" width="14.28%"><a href="https://lishengcn.cn"><img src="https://avatars.githubusercontent.com/u/12003270?v=4?s=100" width="100px;" alt="ls"/><br /><sub><b>ls</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=lishengzxc" title="Code">💻</a> <a href="#design-lishengzxc" title="Design">🎨</a></td>
|
|
625
|
+
</tr>
|
|
626
|
+
<tr>
|
|
627
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/iSample"><img src="https://avatars.githubusercontent.com/u/12894421?v=4?s=100" width="100px;" alt="iSample"/><br /><sub><b>iSample</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=iSample" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=iSample" title="Documentation">📖</a></td>
|
|
628
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/XiuShenAl"><img src="https://avatars.githubusercontent.com/u/242360128?v=4?s=100" width="100px;" alt="XiuShenAl"/><br /><sub><b>XiuShenAl</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=XiuShenAl" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=XiuShenAl" title="Documentation">📖</a></td>
|
|
629
|
+
<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>
|
|
558
630
|
</tr>
|
|
559
631
|
</tbody>
|
|
560
632
|
<tfoot>
|