Update agentscope-runtime to 0.2.0 (#32)

This commit is contained in:
Lamont Huffman
2025-11-10 18:28:19 +08:00
committed by GitHub
parent dba3b86ddf
commit 75f9c14e60
7 changed files with 7 additions and 8 deletions

View File

@@ -47,7 +47,7 @@ dependencies = [
"opentelemetry-instrumentation-sqlalchemy==0.48b0", "opentelemetry-instrumentation-sqlalchemy==0.48b0",
"opentelemetry-instrumentation-redis==0.48b0", "opentelemetry-instrumentation-redis==0.48b0",
"sentry-sdk[fastapi]===2.30.0", "sentry-sdk[fastapi]===2.30.0",
"agentscope-runtime==0.1.6", "agentscope-runtime==0.2.0",
"aiosqlite>=0.21.0", "aiosqlite>=0.21.0",
"asyncpg>=0.30.0" "asyncpg>=0.30.0"
] ]

View File

@@ -9,7 +9,7 @@ from typing import Optional
from loguru import logger from loguru import logger
from agentscope_runtime.sandbox.manager.container_clients.docker_client import ( # noqa: E501 # pylint: disable=C0301 from agentscope_runtime.common.container_clients.docker_client import ( # noqa: E501 # pylint: disable=C0301
DockerClient, DockerClient,
) )
from alias.runtime.alias_sandbox import AliasSandbox from alias.runtime.alias_sandbox import AliasSandbox

View File

@@ -1,5 +1,5 @@
pyyaml>=6.0.2 pyyaml>=6.0.2
quart>=0.8.0 quart>=0.8.0
quart-cors>=0.8.0 quart-cors>=0.8.0
agentscope-runtime==0.1.6 agentscope-runtime==0.2.0
agentscope[full]>=1.0.5 agentscope[full]>=1.0.5

View File

@@ -256,7 +256,7 @@ const App: React.FC = () => {
{desktopUrl && ( {desktopUrl && (
<iframe <iframe
src={desktopUrl} src={desktopUrl}
style={{ width: '1280px', height: '800px', border: 'none' }} style={{ width: "1280px", height: "800px", border: "none" }}
title="DesktopPage" title="DesktopPage"
/> />
)} )}

View File

@@ -1,5 +1,5 @@
flask>=3.1.2 flask>=3.1.2
flask_cors>=6.0.1 flask_cors>=6.0.1
agentscope-runtime==0.1.6 agentscope-runtime==0.2.0
agentscope-runtime[agentscope] agentscope-runtime[agentscope]
flask_sqlalchemy>=3.1.1 flask_sqlalchemy>=3.1.1

View File

@@ -7,4 +7,4 @@ langgraph-api>=0.4.43
dashscope>=1.24.6 dashscope>=1.24.6
openai>=2.4.0 openai>=2.4.0
pandas>=2.3.3 pandas>=2.3.3
agentscope-runtime==0.1.6 agentscope-runtime==0.2.0

View File

@@ -43,8 +43,7 @@ async def agent_singleton():
"browser_use.browser_use_fullstack_runtime." "browser_use.browser_use_fullstack_runtime."
"backend.agentscope_browseruse_agent.InMemorySessionHistoryService", "backend.agentscope_browseruse_agent.InMemorySessionHistoryService",
) as MockHistoryService, patch( ) as MockHistoryService, patch(
"agentscope_runtime.sandbox.manager." "agentscope_runtime.common.container_clients.docker_client.docker",
"container_clients.docker_client.docker",
) as mock_docker, patch( ) as mock_docker, patch(
"agentscope_runtime.sandbox.manager.sandbox_manager.SandboxManager", "agentscope_runtime.sandbox.manager.sandbox_manager.SandboxManager",
) as MockSandboxManager: ) as MockSandboxManager: