
- Set up FastAPI application structure - Implement SQLite database with SQLAlchemy - Create WhatsApp webhook endpoints - Implement message storage and analysis - Integrate Gemini 2.5 Pro for message analysis - Add email delivery of insights - Configure APScheduler for weekend analysis - Add linting with Ruff
8 lines
261 B
Python
8 lines
261 B
Python
"""
|
|
Base module for database models.
|
|
"""
|
|
# Import all the models, so that Base has them before being
|
|
# imported by Alembic
|
|
from app.db.base_class import Base # noqa
|
|
from app.models.analysis import Analysis # noqa
|
|
from app.models.message import Message # noqa |