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.
- {steerable_agent_protocol-0.2.4 → steerable_agent_protocol-0.3.0}/PKG-INFO +1 -1
- {steerable_agent_protocol-0.2.4 → steerable_agent_protocol-0.3.0}/pyproject.toml +1 -1
- {steerable_agent_protocol-0.2.4 → steerable_agent_protocol-0.3.0}/src/steerable_agent_protocol/generated.py +8 -0
- {steerable_agent_protocol-0.2.4 → steerable_agent_protocol-0.3.0}/src/steerable_agent_protocol.egg-info/PKG-INFO +1 -1
- {steerable_agent_protocol-0.2.4 → steerable_agent_protocol-0.3.0}/README.md +0 -0
- {steerable_agent_protocol-0.2.4 → steerable_agent_protocol-0.3.0}/setup.cfg +0 -0
- {steerable_agent_protocol-0.2.4 → steerable_agent_protocol-0.3.0}/src/steerable_agent_protocol/__init__.py +0 -0
- {steerable_agent_protocol-0.2.4 → steerable_agent_protocol-0.3.0}/src/steerable_agent_protocol.egg-info/SOURCES.txt +0 -0
- {steerable_agent_protocol-0.2.4 → steerable_agent_protocol-0.3.0}/src/steerable_agent_protocol.egg-info/dependency_links.txt +0 -0
- {steerable_agent_protocol-0.2.4 → steerable_agent_protocol-0.3.0}/src/steerable_agent_protocol.egg-info/requires.txt +0 -0
- {steerable_agent_protocol-0.2.4 → steerable_agent_protocol-0.3.0}/src/steerable_agent_protocol.egg-info/top_level.txt +0 -0
|
@@ -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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|