# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual Environment
venv/
env/
ENV/
.venv/
.env/

# Environment Variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# IDE and Editor Files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db

# Logs
*.log
logs/
backend/*.log

# Machine Learning Models and Cache
*.pkl
*.pickle
data/image_embeddings*.pkl
data/embeddings/
models/
.cache/

# Temporary Files
*.tmp
*.temp
temp/
tmp/

# Flask
instance/
.webassets-cache

# Jupyter Notebooks
.ipynb_checkpoints

# PyTorch
*.pth
*.pt

# Transformers Cache
.transformers_cache/

# Large Data Files (uncomment if you don't want to track data files)
# data/*.csv
# data/*.json
# data/images/

# API Keys and Secrets
secrets.json
config/secrets.py
*.key
*.pem

# Database
*.db
*.sqlite
*.sqlite3

# Coverage Reports
htmlcov/
.coverage
.coverage.*
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Operating System
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Backup Files
*.bak
*.backup
*~

# Test Files
test_output/
test_results/
