feat(chat): add workspace chat, attachments and agent delegation

This commit is contained in:
2026-09-06 23:17:35 +08:00
parent 68a1bb2b10
commit 12b732d936
37 changed files with 723 additions and 37 deletions
+2
View File
@@ -169,6 +169,8 @@ MIGRATIONS: list[str] = [
CREATE INDEX idx_chat_parent ON chat_messages(conversation_id,parent_message_id);
""",
"""ALTER TABLE chat_conversations ADD COLUMN active_response_id TEXT;""",
"""ALTER TABLE chat_messages ADD COLUMN workspace_context_json TEXT;""",
"""ALTER TABLE chat_messages ADD COLUMN attachments_json TEXT NOT NULL DEFAULT '[]';""",
]