Spaces:
Sleeping
Sleeping
File size: 709 Bytes
dc1b199 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # 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"}'
```
|