# ── Python ────────────────────────────────────────────────────────────────── __pycache__/ *.py[cod] *.pyo *.pyd *.pyc # ── Environnements virtuels ────────────────────────────────────────────────── venv/ .venv/ env/ ENV/ Pipfile.lock # ── Secrets ─────────────────────────────────────────────────────────────────── .env .env.* secret.env secrets.py *.secret credentials.json token.json # ── Logs ───────────────────────────────────────────────────────────────────── *.log logs/ # ── IDE ─────────────────────────────────────────────────────────────────────── .vscode/ .idea/ *.swp .DS_Store Thumbs.db # ── Tests / Coverage ───────────────────────────────────────────────────────── .coverage htmlcov/ .pytest_cache/ # ── Build ───────────────────────────────────────────────────────────────────── dist/ build/ *.egg-info/ # ── Modèles IA (trop lourds pour git) ─────────────────────────────────────── *.gguf *.bin *.safetensors models/ weights/