# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
.venv/
venv/
ENV/

# Git
.git/
.gitignore
.gitattributes

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# Documentation
docs/
*.md
!README.md

# Examples and tests
examples/
tests/
*.db
*.log

# CI/CD
.github/

# Cache files
llm_cache.db
*.cache

# Environment
.env
.env.*
!.env.example
