You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
style: apply Black formatting and fix Bandit security config
- Apply Black code formatting to all Python files
- Update Bandit configuration in pyproject.toml to skip:
- B104: hardcoded_bind_all_interfaces (0.0.0.0 is intentional for Docker)
- B608: hardcoded_sql_expressions (table names from schema introspection)
- B615: huggingface_unsafe_download (model versioning via config)
These security rules are false positives for our use case:
- 0.0.0.0 binding is required for containerized deployments
- SQL table names come from trusted schema introspection
- Model versioning is handled through configuration
0 commit comments