Files
bakery-ia/services/ai_insights/app/models/__init__.py
2025-11-05 13:34:56 +01:00

12 lines
291 B
Python

"""Database models for AI Insights Service."""
from app.models.ai_insight import AIInsight
from app.models.insight_feedback import InsightFeedback
from app.models.insight_correlation import InsightCorrelation
__all__ = [
"AIInsight",
"InsightFeedback",
"InsightCorrelation",
]