# --- Python Environment ---
__pycache__/
*.py[cod]
*$py.class
venv/
env/
.env
.venv
pip-log.txt

# --- Failure Intelligence Storage (The Vault) ---
# We ignore the actual data files so your personal test results 
# don't overwrite your teammate's data on GitHub.
storage/*.json
!storage/__init__.py
failures.json

# --- VS Code & IDEs ---
.vscode/
.idea/
*.swp
*.bak

# --- Testing & Reports ---
.pytest_cache/
.coverage
htmlcov/
nosetests.xml
*.log

# --- Streamlit ---
.streamlit/config.toml
static/

# --- Training Data (large raw datasets, not source code) ---
data/labeled/
data/datasets/

# --- Notebook comparison artifacts ---
notebooks/comparison_plots/

# --- Generated Notebook Artifacts ---
notebooks/*.png
notebooks/*.jpg

# --- Research Paper (personal, not for public repo) ---
paper/

# --- Internal Technical Documentation (architecture details, not public) ---
README_files/