agentscope-runtime 0.1.3__tar.gz → 0.1.5b1__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.1.3 → agentscope_runtime-0.1.5b1}/PKG-INFO +25 -5
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/README.md +5 -1
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/pyproject.toml +24 -4
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/agents/agentscope_agent/agent.py +3 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/__init__.py +16 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/adapter/responses/response_api_adapter_utils.py +2886 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/adapter/responses/response_api_agent_adapter.py +51 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/adapter/responses/response_api_protocol_adapter.py +314 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/cli_fc_deploy.py +143 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/kubernetes_deployer.py +265 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/local_deployer.py +441 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/modelstudio_deployer.py +626 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils/deployment_modes.py +14 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils/docker_image_utils/__init__.py +8 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils/docker_image_utils/docker_image_builder.py +429 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils/docker_image_utils/dockerfile_generator.py +240 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils/docker_image_utils/runner_image_factory.py +297 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils/package_project_utils.py +932 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils/service_utils/__init__.py +9 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils/service_utils/fastapi_factory.py +504 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils/service_utils/fastapi_templates.py +157 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils/service_utils/process_manager.py +268 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils/service_utils/service_config.py +75 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils/service_utils/service_factory.py +220 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils/wheel_packager.py +389 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/helpers/agent_api_builder.py +651 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/runner.py +36 -10
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/schemas/agent_schemas.py +70 -2
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/schemas/embedding.py +37 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/schemas/modelstudio_llm.py +310 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/schemas/oai_llm.py +538 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/schemas/realtime.py +254 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/services/context_manager.py +2 -0
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/services/mem0_memory_service.py +124 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/services/memory_service.py +2 -1
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/services/redis_session_history_service.py +4 -3
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/services/session_history_service.py +4 -3
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/sandbox/box/training_box/environments/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/container_clients/kubernetes_client.py +555 -10
- agentscope_runtime-0.1.5b1/src/agentscope_runtime/sandbox/manager/server/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/version.py +1 -1
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime.egg-info/PKG-INFO +25 -5
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime.egg-info/SOURCES.txt +27 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime.egg-info/entry_points.txt +1 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime.egg-info/requires.txt +20 -3
- agentscope_runtime-0.1.3/src/agentscope_runtime/engine/deployers/__init__.py +0 -3
- agentscope_runtime-0.1.3/src/agentscope_runtime/engine/deployers/local_deployer.py +0 -586
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/LICENSE +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/setup.cfg +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/setup.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/agents/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/agents/agentscope_agent/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/agents/agentscope_agent/hooks.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/agents/agno_agent.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/agents/autogen_agent.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/agents/base_agent.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/agents/langgraph_agent.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/agents/llm_agent.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/deployers/adapter/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/deployers/adapter/a2a/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/deployers/adapter/a2a/a2a_adapter_utils.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/deployers/adapter/a2a/a2a_agent_adapter.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/deployers/adapter/a2a/a2a_protocol_adapter.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/deployers/adapter/protocol_adapter.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/engine/misc → agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/adapter/responses}/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/deployers/base.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/engine/schemas → agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/deployers/utils}/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/helpers/helper.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/llms/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/llms/base_llm.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/llms/qwen_llm.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/sandbox/box → agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/misc}/__init__.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/sandbox/box/base → agentscope_runtime-0.1.5b1/src/agentscope_runtime/engine/schemas}/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/schemas/context.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/services/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/services/base.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/services/environment_manager.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/services/manager.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/services/rag_service.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/services/redis_memory_service.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/services/reme_personal_memory_service.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/services/reme_task_memory_service.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/services/sandbox_service.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/tracing/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/tracing/base.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/tracing/local_logging_handler.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/tracing/tracing_metric.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/engine/tracing/wrapper.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/__init__.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/sandbox/box/base → agentscope_runtime-0.1.5b1/src/agentscope_runtime/sandbox}/box/__init__.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/sandbox/box/browser → agentscope_runtime-0.1.5b1/src/agentscope_runtime/sandbox/box/base}/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/base/base_sandbox.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/sandbox/box/browser → agentscope_runtime-0.1.5b1/src/agentscope_runtime/sandbox/box/base}/box/__init__.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/sandbox/box/dummy → agentscope_runtime-0.1.5b1/src/agentscope_runtime/sandbox/box/browser}/__init__.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/sandbox/box/filesystem → agentscope_runtime-0.1.5b1/src/agentscope_runtime/sandbox/box/browser/box}/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/browser/browser_sandbox.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/sandbox/box/filesystem/box → agentscope_runtime-0.1.5b1/src/agentscope_runtime/sandbox/box/dummy}/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/dummy/dummy_sandbox.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/sandbox/box/shared → agentscope_runtime-0.1.5b1/src/agentscope_runtime/sandbox/box/filesystem}/__init__.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/sandbox/box/training_box → agentscope_runtime-0.1.5b1/src/agentscope_runtime/sandbox/box/filesystem/box}/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/filesystem/filesystem_sandbox.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/sandbox.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/sandbox/box/training_box/environments → agentscope_runtime-0.1.5b1/src/agentscope_runtime/sandbox/box/shared}/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/shared/app.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/shared/dependencies/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/shared/dependencies/deps.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/shared/routers/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/shared/routers/generic.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/shared/routers/mcp.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/shared/routers/mcp_utils.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/shared/routers/runtime_watcher.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/shared/routers/workspace.py +0 -0
- {agentscope_runtime-0.1.3/src/agentscope_runtime/sandbox/manager/server → agentscope_runtime-0.1.5b1/src/agentscope_runtime/sandbox/box/training_box}/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/training_box/base.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/training_box/env_service.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/training_box/environments/appworld/appworld_env.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_dataprocess.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/training_box/environments/bfcl/bfcl_env.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/training_box/environments/bfcl/env_handler.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/training_box/registry.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/training_box/src/trajectory.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/box/training_box/training_box.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/build.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/client/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/client/http_client.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/client/training_client.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/constant.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/custom/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/custom/custom_sandbox.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/custom/example.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/enums.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/collections/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/collections/base_mapping.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/collections/base_queue.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/collections/base_set.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/collections/in_memory_mapping.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/collections/in_memory_queue.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/collections/in_memory_set.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/collections/redis_mapping.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/collections/redis_queue.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/collections/redis_set.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/container_clients/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/container_clients/base_client.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/container_clients/docker_client.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/sandbox_manager.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/server/app.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/server/config.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/server/models.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/storage/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/storage/data_storage.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/storage/local_storage.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/manager/storage/oss_storage.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/mcp_server.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/model/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/model/api.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/model/container.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/model/manager_config.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/registry.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/tools/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/tools/base/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/tools/base/tool.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/tools/browser/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/tools/browser/tool.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/tools/filesystem/__init__.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/tools/filesystem/tool.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/tools/function_tool.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/tools/mcp_tool.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/tools/sandbox_tool.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/tools/tool.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime/sandbox/tools/utils.py +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime.egg-info/dependency_links.txt +0 -0
- {agentscope_runtime-0.1.3 → agentscope_runtime-0.1.5b1}/src/agentscope_runtime.egg-info/top_level.txt +0 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentscope-runtime
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5b1
|
|
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
|
|
7
7
|
License-File: LICENSE
|
|
8
|
-
Requires-Dist: mcp
|
|
8
|
+
Requires-Dist: mcp>=1.13
|
|
9
9
|
Requires-Dist: fastapi>=0.104.0
|
|
10
10
|
Requires-Dist: uvicorn[standard]>=0.24.0
|
|
11
|
-
Requires-Dist: openai
|
|
11
|
+
Requires-Dist: openai>=1.108.1
|
|
12
12
|
Requires-Dist: pydantic>=2.11.7
|
|
13
13
|
Requires-Dist: requests>=2.32.4
|
|
14
14
|
Provides-Extra: dev
|
|
@@ -55,7 +55,23 @@ Requires-Dist: llama-index-embeddings-langchain>=0.4.0; extra == "llamaindex-rag
|
|
|
55
55
|
Requires-Dist: langchain-community>=0.3.27; extra == "llamaindex-rag"
|
|
56
56
|
Requires-Dist: bs4>=0.0.2; extra == "llamaindex-rag"
|
|
57
57
|
Provides-Extra: memory-ext
|
|
58
|
-
Requires-Dist: reme-ai==0.1.
|
|
58
|
+
Requires-Dist: reme-ai==0.1.9; python_full_version >= "3.12" and extra == "memory-ext"
|
|
59
|
+
Requires-Dist: mem0ai>=0.1.117; extra == "memory-ext"
|
|
60
|
+
Provides-Extra: deployment
|
|
61
|
+
Requires-Dist: alibabacloud-oss-v2; extra == "deployment"
|
|
62
|
+
Requires-Dist: alibabacloud-bailian20231229>=2.5.0; extra == "deployment"
|
|
63
|
+
Requires-Dist: build; extra == "deployment"
|
|
64
|
+
Requires-Dist: setuptools>=40.8.0; extra == "deployment"
|
|
65
|
+
Requires-Dist: wheel; extra == "deployment"
|
|
66
|
+
Requires-Dist: steel-sdk>=0.1.0; extra == "deployment"
|
|
67
|
+
Requires-Dist: alibabacloud-credentials; extra == "deployment"
|
|
68
|
+
Requires-Dist: jinja2; extra == "deployment"
|
|
69
|
+
Requires-Dist: psutil; extra == "deployment"
|
|
70
|
+
Requires-Dist: shortuuid>=1.0.13; extra == "deployment"
|
|
71
|
+
Requires-Dist: docker>=7.1.0; extra == "deployment"
|
|
72
|
+
Requires-Dist: kubernetes>=33.1.0; extra == "deployment"
|
|
73
|
+
Requires-Dist: PyYAML; extra == "deployment"
|
|
74
|
+
Requires-Dist: oss2>=2.19.1; extra == "deployment"
|
|
59
75
|
Dynamic: license-file
|
|
60
76
|
|
|
61
77
|
<div align="center">
|
|
@@ -405,7 +421,7 @@ limitations under the License.
|
|
|
405
421
|
|
|
406
422
|
## Contributors ✨
|
|
407
423
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
408
|
-
[](#contributors-)
|
|
409
425
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
410
426
|
|
|
411
427
|
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
@@ -424,6 +440,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
424
440
|
<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
441
|
<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
442
|
</tr>
|
|
443
|
+
<tr>
|
|
444
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Osier-Yi"><img src="https://avatars.githubusercontent.com/u/8287381?v=4?s=100" width="100px;" alt="Osier-Yi"/><br /><sub><b>Osier-Yi</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=Osier-Yi" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=Osier-Yi" title="Documentation">📖</a></td>
|
|
445
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kevinlin09"><img src="https://avatars.githubusercontent.com/u/26913335?v=4?s=100" width="100px;" alt="Kevin Lin"/><br /><sub><b>Kevin Lin</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=kevinlin09" title="Code">💻</a></td>
|
|
446
|
+
</tr>
|
|
427
447
|
</tbody>
|
|
428
448
|
<tfoot>
|
|
429
449
|
<tr>
|
|
@@ -345,7 +345,7 @@ limitations under the License.
|
|
|
345
345
|
|
|
346
346
|
## Contributors ✨
|
|
347
347
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
348
|
-
[](#contributors-)
|
|
349
349
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
350
350
|
|
|
351
351
|
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
@@ -364,6 +364,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
364
364
|
<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>
|
|
365
365
|
<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>
|
|
366
366
|
</tr>
|
|
367
|
+
<tr>
|
|
368
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Osier-Yi"><img src="https://avatars.githubusercontent.com/u/8287381?v=4?s=100" width="100px;" alt="Osier-Yi"/><br /><sub><b>Osier-Yi</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=Osier-Yi" title="Code">💻</a> <a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=Osier-Yi" title="Documentation">📖</a></td>
|
|
369
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kevinlin09"><img src="https://avatars.githubusercontent.com/u/26913335?v=4?s=100" width="100px;" alt="Kevin Lin"/><br /><sub><b>Kevin Lin</b></sub></a><br /><a href="https://github.com/agentscope-ai/agentscope-runtime/commits?author=kevinlin09" title="Code">💻</a></td>
|
|
370
|
+
</tr>
|
|
367
371
|
</tbody>
|
|
368
372
|
<tfoot>
|
|
369
373
|
<tr>
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "agentscope-runtime"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.5b1"
|
|
4
4
|
description = "A production-ready runtime framework for agent applications, providing secure sandboxed execution environments and scalable deployment solutions with multi-framework support."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
7
7
|
dependencies = [
|
|
8
|
-
"mcp>=1.
|
|
8
|
+
"mcp>=1.13",
|
|
9
9
|
"fastapi>=0.104.0",
|
|
10
10
|
"uvicorn[standard]>=0.24.0",
|
|
11
|
-
"openai",
|
|
11
|
+
"openai>=1.108.1",
|
|
12
12
|
"pydantic>=2.11.7",
|
|
13
13
|
"requests>=2.32.4",
|
|
14
14
|
]
|
|
@@ -24,6 +24,7 @@ build-backend = "setuptools.build_meta"
|
|
|
24
24
|
runtime-sandbox-mcp = "agentscope_runtime.sandbox.mcp_server:main"
|
|
25
25
|
runtime-sandbox-server = "agentscope_runtime.sandbox.manager.server.app:main"
|
|
26
26
|
runtime-sandbox-builder = "agentscope_runtime.sandbox.build:main"
|
|
27
|
+
runtime-fc-deploy = "agentscope_runtime.engine.deployers.cli_fc_deploy:main"
|
|
27
28
|
|
|
28
29
|
[project.optional-dependencies]
|
|
29
30
|
dev = [
|
|
@@ -85,5 +86,24 @@ llamaindex_rag=[
|
|
|
85
86
|
"bs4>=0.0.2",
|
|
86
87
|
]
|
|
87
88
|
memory-ext = [
|
|
88
|
-
"reme-ai==0.1.
|
|
89
|
+
"reme-ai==0.1.9 ; python_full_version >= '3.12'",
|
|
90
|
+
"mem0ai>=0.1.117"
|
|
89
91
|
]
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
deployment = [
|
|
95
|
+
"alibabacloud-oss-v2",
|
|
96
|
+
"alibabacloud-bailian20231229>=2.5.0",
|
|
97
|
+
"build",
|
|
98
|
+
"setuptools>=40.8.0",
|
|
99
|
+
"wheel",
|
|
100
|
+
"steel-sdk>=0.1.0",
|
|
101
|
+
"alibabacloud-credentials",
|
|
102
|
+
"jinja2",
|
|
103
|
+
"psutil",
|
|
104
|
+
"shortuuid>=1.0.13",
|
|
105
|
+
"docker>=7.1.0",
|
|
106
|
+
"kubernetes>=33.1.0",
|
|
107
|
+
"PyYAML",
|
|
108
|
+
"oss2>=2.19.1"
|
|
109
|
+
]
|
|
@@ -317,6 +317,9 @@ class AgentScopeAgent(Agent):
|
|
|
317
317
|
index = text_delta_content.index
|
|
318
318
|
yield text_delta_content
|
|
319
319
|
if hasattr(msg, "is_last"):
|
|
320
|
+
yield message.content_completed(
|
|
321
|
+
index,
|
|
322
|
+
)
|
|
320
323
|
yield message.completed()
|
|
321
324
|
message = Message(
|
|
322
325
|
type=MessageType.MESSAGE,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
from .base import DeployManager
|
|
3
|
+
from .local_deployer import LocalDeployManager
|
|
4
|
+
from .kubernetes_deployer import (
|
|
5
|
+
KubernetesDeployManager,
|
|
6
|
+
)
|
|
7
|
+
from .modelstudio_deployer import (
|
|
8
|
+
ModelstudioDeployManager,
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
__all__ = [
|
|
12
|
+
"DeployManager",
|
|
13
|
+
"LocalDeployManager",
|
|
14
|
+
"KubernetesDeployManager",
|
|
15
|
+
"ModelstudioDeployManager",
|
|
16
|
+
]
|