RandomZ / mnt /data /samples /PLACE_SAMPLE_FILES_HERE.md
StormShadow308's picture
feat: scaffold complete RAG system for RICS-style report generation
dc1b199
|
Raw
History Blame Contribute Delete
709 Bytes

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):

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"}'