steerable-agent-protocol 0.2.4__tar.gz → 0.3.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: steerable-agent-protocol
3
- Version: 0.2.4
3
+ Version: 0.3.0
4
4
  Summary: Steerable protocol schemas for Python
5
5
  Requires-Python: >=3.10
6
6
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "steerable-agent-protocol"
3
- version = "0.2.4"
3
+ version = "0.3.0"
4
4
  description = "Steerable protocol schemas for Python"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -108,12 +108,20 @@ class ChatMessage(BaseModel):
108
108
  chatId: str | None = None
109
109
  role: str
110
110
  content: str
111
+ parts: list[Any] | None = None
111
112
  agentId: str | None = None
112
113
  toolCalls: list[Any] | None = None
113
114
  toolResult: Any | None = None
114
115
  createdAt: str
115
116
  updatedAt: str | None = None
116
117
 
118
+ class ContentPart(BaseModel):
119
+ type: str
120
+ text: str | None = None
121
+ url: str | None = None
122
+ data: str | None = None
123
+ mediaType: str | None = None
124
+
117
125
  class SSEEvent(BaseModel):
118
126
  type: str
119
127
  event: str | None = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: steerable-agent-protocol
3
- Version: 0.2.4
3
+ Version: 0.3.0
4
4
  Summary: Steerable protocol schemas for Python
5
5
  Requires-Python: >=3.10
6
6
  Description-Content-Type: text/markdown