Improve AI logic

This commit is contained in:
Urtzi Alfaro
2025-11-05 13:34:56 +01:00
parent 5c87fbcf48
commit 394ad3aea4
218 changed files with 30627 additions and 7658 deletions

View File

@@ -0,0 +1,27 @@
"""Pydantic schemas for AI Insights Service."""
from app.schemas.insight import (
AIInsightBase,
AIInsightCreate,
AIInsightUpdate,
AIInsightResponse,
AIInsightList,
InsightMetrics,
InsightFilters
)
from app.schemas.feedback import (
InsightFeedbackCreate,
InsightFeedbackResponse
)
__all__ = [
"AIInsightBase",
"AIInsightCreate",
"AIInsightUpdate",
"AIInsightResponse",
"AIInsightList",
"InsightMetrics",
"InsightFilters",
"InsightFeedbackCreate",
"InsightFeedbackResponse",
]