AGENTS.md — FastAPI
- Python 3.12+, FastAPI ≥ 0.115, Pydantic v2.
async defhandlers by default; never block the loop.- Request + response Pydantic models on every endpoint.
- Type hints everywhere.
mypy --strictshould pass. - Inject dependencies via
Depends(...); no module-level mutable state.
uvicorn app.main:app --reload
pytest
mypy app