Coverage for src/lilbee/server/chat_dispatch/canonical.py: 100%
99 statements
« prev ^ index » next coverage.py v7.15.2, created at 2026-08-14 11:46 +0000
« prev ^ index » next coverage.py v7.15.2, created at 2026-08-14 11:46 +0000
1"""Protocol-neutral chat request, response, and stream-event types."""
3from __future__ import annotations
5from dataclasses import dataclass
6from enum import StrEnum
7from typing import Any, Literal
10class StopReason(StrEnum):
11 """Why a canonical chat response ended."""
13 END_TURN = "end_turn"
14 MAX_TOKENS = "max_tokens"
15 TOOL_USE = "tool_use"
18@dataclass(frozen=True)
19class TextBlock:
20 """Plain-text content block."""
22 text: str
23 type: Literal["text"] = "text"
26@dataclass(frozen=True)
27class ToolUseBlock:
28 """Assistant-emitted tool invocation with parsed JSON arguments."""
30 id: str
31 name: str
32 input: dict[str, Any]
33 type: Literal["tool_use"] = "tool_use"
36@dataclass(frozen=True)
37class ToolResultBlock:
38 """Caller-supplied tool result paired to a prior ToolUseBlock by id."""
40 tool_use_id: str
41 content: list[ContentBlock]
42 is_error: bool = False
43 type: Literal["tool_result"] = "tool_result"
46ContentBlock = TextBlock | ToolUseBlock | ToolResultBlock
49@dataclass(frozen=True)
50class CanonicalMessage:
51 """One chat turn; content is always a typed-block list."""
53 role: Literal["user", "assistant", "tool"]
54 content: list[ContentBlock]
56 @classmethod
57 def from_string(
58 cls,
59 *,
60 role: Literal["user", "assistant", "tool"],
61 text: str,
62 ) -> CanonicalMessage:
63 """Build a single-text-block message from a raw string."""
64 return cls(role=role, content=[TextBlock(text=text)])
67@dataclass(frozen=True)
68class CanonicalTool:
69 """Tool definition (JSON-Schema input shape)."""
71 name: str
72 description: str
73 input_schema: dict[str, Any]
76@dataclass(frozen=True)
77class CanonicalToolChoice:
78 """Tool-choice mode; ``tool_name`` is required only when ``mode == "tool"``."""
80 mode: Literal["auto", "any", "none", "tool"]
81 tool_name: str | None = None
83 def __post_init__(self) -> None:
84 # Without this the None reaches the provider as
85 # {"function": {"name": None}}, a malformed tool choice rather than a
86 # rejected request.
87 if self.mode == "tool" and not self.tool_name:
88 raise ValueError('CanonicalToolChoice(mode="tool") requires a tool_name')
91@dataclass(frozen=True)
92class CanonicalChatRequest:
93 """Canonical chat request consumed by the dispatch layer."""
95 model: str
96 messages: list[CanonicalMessage]
97 system: str | None = None
98 tools: list[CanonicalTool] | None = None
99 tool_choice: CanonicalToolChoice | None = None
100 temperature: float | None = None
101 top_p: float | None = None
102 top_k: int | None = None
103 max_tokens: int | None = None
104 seed: int | None = None
105 frequency_penalty: float | None = None
106 presence_penalty: float | None = None
107 stop: list[str] | None = None
108 stream: bool = False
111@dataclass(frozen=True)
112class CanonicalUsage:
113 """Token-count summary for one chat response."""
115 input_tokens: int
116 output_tokens: int
119@dataclass(frozen=True)
120class CanonicalResponse:
121 """Canonical non-streaming chat response."""
123 id: str
124 model: str
125 content: list[ContentBlock]
126 stop_reason: StopReason
127 usage: CanonicalUsage
130@dataclass(frozen=True)
131class MessageStart:
132 """Stream prelude carrying the message id and model ref."""
134 id: str
135 model: str
138@dataclass(frozen=True)
139class ContentBlockStart:
140 """Opens a fresh content block at ``index`` with an initial shell."""
142 index: int
143 block: ContentBlock
146@dataclass(frozen=True)
147class TextDelta:
148 """One text-token delta within an open text block."""
150 text: str
153@dataclass(frozen=True)
154class ToolUseDelta:
155 """Accumulating JSON fragment within an open tool-use block."""
157 partial_json: str
160@dataclass(frozen=True)
161class ContentBlockDelta:
162 """Delta payload routed to the content block at ``index``."""
164 index: int
165 delta: TextDelta | ToolUseDelta
168@dataclass(frozen=True)
169class ContentBlockStop:
170 """Closes the content block at ``index``."""
172 index: int
175@dataclass(frozen=True)
176class MessageDelta:
177 """Trailing metadata; either field may carry a value, never both required."""
179 stop_reason: StopReason | None = None
180 usage: CanonicalUsage | None = None
183@dataclass(frozen=True)
184class MessageStop:
185 """Stream terminator."""
188CanonicalStreamEvent = (
189 MessageStart
190 | ContentBlockStart
191 | ContentBlockDelta
192 | ContentBlockStop
193 | MessageDelta
194 | MessageStop
195)