# =============================== # Python # =============================== __pycache__/ *.py[cod] *.pyo *.pyd *.so *.egg-info/ .eggs/ dist/ build/ # Virtual environments .env .venv venv/ env/ myenv/ ENV/ # =============================== # Environment & Secrets # =============================== .env.local .env.*.local .env.production .env.development .env.test *.key *.pem # API keys / credentials secrets/ credentials/ config/secrets.yaml config/secrets.json # =============================== # Jupyter / Data Science # =============================== .ipynb_checkpoints/ *.ipynb # =============================== # ML / AI Artifacts # =============================== models/ checkpoints/ weights/ *.pt *.pth *.onnx *.joblib *.pkl # Vector stores / RAG indexes faiss_index/ chroma/ vectorstore/ embeddings/ # =============================== # Logs & Runtime Files # =============================== logs/ *.log *.out *.err # =============================== # Gradio / FastAPI # =============================== gradio_cached_examples/ .gradio/ tmp/ uploads/ # =============================== # Cache / Temp # =============================== .cache/ .mypy_cache/ .pytest_cache/ ruff_cache/ coverage/ htmlcov/ # =============================== # OS / Editor # =============================== .DS_Store Thumbs.db .idea/ .vscode/ *.swp *.swo # =============================== # Docker # =============================== docker-data/ *.tar # =============================== # Deployment # =============================== *.local *.tfstate *.tfstate.backup .envrc # =============================== # Reports / Generated Content # =============================== reports/ outputs/ generated_images/ charts/ visualizations/ # =============================== # Misc # =============================== *.bak *.tmp