### Environment ###
.PHONY: env-setup
env-setup:
	uv sync
	uv run pre-commit install

.PHONY: setup-flash
setup-flash:
	uv sync
	uv pip install flash-attn --no-build-isolation

### Tests ###
.PHONY: tests
tests:
	uv run pytest tests
