feat: improve chat retrieval, message versions and Markdown rendering

This commit is contained in:
2026-09-06 21:39:40 +08:00
parent e952fea2d8
commit 68a1bb2b10
31 changed files with 995 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