feat: improve chat retrieval, message versions and Markdown rendering

This commit is contained in:
2026-09-06 21:39:40 +08:00
parent 174e723545
commit 637ddbb9bf
34 changed files with 1072 additions and 62 deletions
+1
View File
@@ -22,6 +22,7 @@ class ProviderToolCall:
@dataclass(slots=True)
class ProviderTurn:
text: str | None = None
reasoning_content: str | None = None
tool_calls: list[ProviderToolCall] = field(default_factory=list)
input_tokens: int = 0
output_tokens: int = 0