Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "agentscope-runtime"
version = "1.1.6"
version = "1.1.6.post1"
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"
Expand Down
2 changes: 2 additions & 0 deletions src/agentscope_runtime/engine/schemas/agent_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,8 @@ class Error(BaseModel):


class Event(BaseModel):
model_config = ConfigDict(extra="allow")

Comment on lines 263 to +265
sequence_number: Optional[int] = None
"""sequence number of event"""

Expand Down
Loading