A tiny FastAPI service that summarizes text. Includes a /summarize endpoint that returns a short summary and basic word-count stats. Built as a lightweight practice project to learn AI-assisted development.
python -m venv .venv
source .venv/bin/activatepip install -r requirements.txtuvicorn main:app --reload