domain/ ← pure Python only (no framework imports) │ application/ ← domain + port interfaces only │ infrastructure/ ← SQLModel, Alembic, SQLite adapters │ api/ ← FastAPI routers, middleware, dependency ...
FinalProject_FastAPI/ │ ├── main.py # FastAPI app + optional Streamlit dashboard ├── bl.py # Business logic (training, prediction, tokens) ├── dal.py # Data access (SQLite + joblib model persistence) ...