| .env | |
| __pycache__/ | |
| *.py[cod] | |
| *.pyo | |
| .pytest_cache/ | |
| .hypothesis/ | |
| # Model weights — large binary files | |
| *.gguf | |
| *.onnx | |
| *.pt | |
| *.pth | |
| *.bin | |
| *.safetensors | |
| # Generated data — do not commit | |
| data/synthetic_invoices/ | |
| # Real invoice samples — potentially sensitive | |
| data/sample_invoices/*.jpg | |
| data/sample_invoices/*.jpeg | |
| data/sample_invoices/*.png | |
| data/sample_invoices/*.pdf | |
| # SQLite DB | |
| *.db | |
| *.sqlite | |
| # HF cache | |
| .cache/ | |
| huggingface/ | |
| # Temp files | |
| tmp/ | |
| *.tmp | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| # Virtualenv (local model testing) | |
| .venv/ | |
| venv/ | |
| # Remotion video project | |
| video/node_modules/ | |
| video/out/ | |
| # Local diagnostic logs | |
| samples/diag_*_out*.txt | |
| *.png | |
| *.mp4 | |
| video/ |