From 504082101e9ec3af5f4e42e378407d7815766bd1 Mon Sep 17 00:00:00 2001 From: huangzhuang_3rd Date: Thu, 13 Aug 2026 00:46:09 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20V1=20-=20DAG=E7=BC=96=E6=8E=92/?= =?UTF-8?q?=E5=91=8A=E8=AD=A6=E7=B3=BB=E7=BB=9F/Agent=E5=BE=AA=E7=8E=AF/?= =?UTF-8?q?=E7=9F=A5=E8=AF=86=E5=BA=93RAG/Webhook=20+=20=E5=AE=A1=E6=A0=B8?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E5=AF=8C=E4=B8=8A=E4=B8=8B=E6=96=87=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/models/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend/app/models/__init__.py b/backend/app/models/__init__.py index 798792e..91e3b03 100644 --- a/backend/app/models/__init__.py +++ b/backend/app/models/__init__.py @@ -8,9 +8,13 @@ from app.models.worker import AIWorker from app.models.artifact import Artifact from app.models.review import Review from app.models.cost import CostLog +from app.models.alert import Alert +from app.models.webhook import WebhookConfig +from app.models.knowledge import KnowledgeDoc __all__ = [ "Base", "TimestampMixin", "TenantMixin", "Tenant", "User", "Project", "Task", "AIWorker", "Artifact", "Review", "CostLog", + "Alert", "WebhookConfig", "KnowledgeDoc", ]