# Sample Files Place your RICS survey PDF/DOCX sample files in this directory for local development and integration testing. Expected files (from the project brief): - `Sample Building Survey Report.pdf` - `SAMPLE LEVEL 3 REPORT NCS.pdf` These files are used only as RAG source documents during development. They are **not** committed to the repository (see `.gitignore`). To ingest them during local dev, use the `/test/ingest` endpoint (requires `DEV_MODE=true`): ```bash curl -X POST http://localhost:8000/test/ingest \ -H "X-Tenant-ID: dev_tenant" \ -H "Content-Type: application/json" \ -d '{"file_path": "/mnt/data/samples/Sample Building Survey Report.pdf", "tenant_id": "dev_tenant"}' ```