28 lines
551 B
Python
28 lines
551 B
Python
"""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",
|
|
]
|