remove WsStreamBlock schema and tests — no longer used

This commit is contained in:
2026-03-12 00:37:40 +01:00
parent b3687719b6
commit 61d2a18234
2 changed files with 0 additions and 72 deletions

View File

@@ -151,7 +151,6 @@ class WsFrameType(str, Enum):
floating_request = "floating_request"
stream_start = "stream_start"
stream_text = "stream_text"
stream_block = "stream_block"
stream_end = "stream_end"
floating_domain = "floating_domain"
data_request = "data_request"
@@ -275,15 +274,6 @@ class WsStreamText(BaseModel):
chunk: str
class WsStreamBlock(BaseModel):
"""Server → Client: structured block (chart, table, entity, timeline)."""
type: Literal[WsFrameType.stream_block] = WsFrameType.stream_block
request_id: str
block_type: Literal["chart", "entity_ref", "table", "timeline"]
data: dict[str, Any]
class WsStreamEnd(BaseModel):
"""Server → Client: signals end of a streaming response."""