feat: 增强日历功能并集成 AgentScope 代理服务

This commit is contained in:
qzl
2026-03-11 15:28:29 +08:00
parent e55e445906
commit e20e7d2a02
85 changed files with 5175 additions and 885 deletions
+2 -2
View File
@@ -3,7 +3,7 @@ from __future__ import annotations
import uuid
from enum import Enum
from sqlalchemy import String, Text
from sqlalchemy import Boolean, String, Text
from sqlalchemy.dialects.postgresql import UUID
from sqlalchemy.orm import Mapped, mapped_column
@@ -60,7 +60,7 @@ class InboxMessage(TimestampMixin, Base):
nullable=True,
)
is_read: Mapped[bool] = mapped_column(
String(10),
Boolean,
nullable=False,
default=False,
)