From 0edd3a918eb74e5b8624bcaae807d950223f93cd Mon Sep 17 00:00:00 2001 From: raykkk Date: Tue, 31 Mar 2026 11:04:34 +0800 Subject: [PATCH] bump version --- pyproject.toml | 2 +- src/agentscope_runtime/engine/schemas/agent_schemas.py | 2 ++ src/agentscope_runtime/version.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 869e99eeb..5388e774a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agentscope-runtime" -version = "1.1.2" +version = "1.1.3" description = "A production-ready runtime framework for agent applications, providing secure sandboxed execution environments and scalable deployment solutions with multi-framework support." readme = "README.md" requires-python = ">=3.10" diff --git a/src/agentscope_runtime/engine/schemas/agent_schemas.py b/src/agentscope_runtime/engine/schemas/agent_schemas.py index 71c1c178b..9bebec409 100644 --- a/src/agentscope_runtime/engine/schemas/agent_schemas.py +++ b/src/agentscope_runtime/engine/schemas/agent_schemas.py @@ -903,6 +903,8 @@ def add_new_message(self, message: Message): def completed(self) -> Self: self.completed_at = int(datetime.now().timestamp()) + if self.output is None: + self.output = [] return super().completed() diff --git a/src/agentscope_runtime/version.py b/src/agentscope_runtime/version.py index 887708adf..dc8256192 100644 --- a/src/agentscope_runtime/version.py +++ b/src/agentscope_runtime/version.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = "v1.1.2" +__version__ = "v1.1.3"