.PHONY: install run dev lint format test install: uv sync run: uv run python app.py dev: uv run gradio app.py lint: uv run ruff check src/ tests/ app.py modal_app.py format: uv run ruff format src/ tests/ app.py modal_app.py test: uv run pytest tests/ -v