Spaces:
Runtime error
Runtime error
File size: 90,887 Bytes
aad7814 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 | # Survey Report Generator β Complete System Redesign v2
## Cursor Implementation Prompt β Template-Agnostic Edition
---
## PARADIGM SHIFT FROM v1
The v1 system hardcoded RICS section codes, condition rating colours, section ordering,
and structural elements as universal facts. It would break entirely for any other firm's
template and added document elements (ratings, badges, footers) that the actual template
may not contain.
**v2 inverts the model entirely:**
> The uploaded template is the sole authority for every structural decision.
> The system discovers β never assumes β sections, ordering, rating systems,
> placeholder syntax, and formatting conventions from whatever document the
> firm uploads. If the template does not contain a structural element,
> the system does not produce it.
The LLM has two permitted actions only:
1. Fill observed facts into retrieved template paragraphs (the mapping step)
2. Decide whether an observation matches a retrieved paragraph (the grounding step)
The LLM is NEVER permitted to:
- Generate report prose from scratch
- Add structural elements not present in the template (ratings, scores, labels, badges)
- Invent defects, measurements, materials, or recommendations not in the notes
- Reorder, rename, or reformat sections beyond what the template defines
---
## OVERVIEW & MISSION
You are building a professional survey report generation system for any property
surveying firm, regardless of which template format or professional body they follow.
The system does the following and only the following:
1. **Schema Discovery**: On first upload, read the firm's master template and extract
a precise schema β sections, ordering, rating systems (if any), placeholder syntax,
and structural hierarchy. Store this as the tenant's authoritative schema.
2. **PII Scrubbing**: Strip all personally identifiable information from raw surveyor
notes before any data leaves the local system or reaches any AI call.
3. **Notes Parsing**: Using the discovered schema as the only section taxonomy,
assign each observation to the correct section.
4. **RAG Retrieval**: Retrieve the most semantically relevant paragraph(s) from the
firm's own uploaded template library for each section.
5. **Mapping**: The LLM fills the surveyor's facts into the retrieved template
paragraph β nothing more, nothing less. Any structural elements in the output
(headings, rating fields, etc.) must originate from the template paragraph itself,
not from assumptions.
6. **Grounding Check**: A second LLM call verifies every claim in the output traces
to either the surveyor's observations or the retrieved paragraph.
7. **Assembly**: Build the final DOCX using the template's own structure and ordering,
not a hardcoded section list.
---
## ARCHITECTURE
### Tech Stack
- **Backend**: Python (FastAPI)
- **Vector Store**: FAISS (local, per-tenant isolation)
- **Embeddings**: `text-embedding-3-small` (OpenAI) β swappable via config
- **LLM**: Anthropic Claude claude-sonnet-4-20250514 via `anthropic` Python SDK
- **Document Output**: `python-docx`
- **PII Scrubber**: Custom regex + spaCy transformer NER pipeline
- **Schema Store**: JSON per tenant (discovered from uploaded template)
- **Auth**: JWT, per-tenant data isolation
### File Structure
```
survey-report-system/
βββ backend/
β βββ main.py # FastAPI app entrypoint
β βββ config.py # Settings (env vars, thresholds, feature flags)
β βββ requirements.txt
β β
β βββ api/
β β βββ routes/
β β β βββ upload.py # Template ingestion + schema discovery trigger
β β β βββ report.py # Report generation endpoints
β β β βββ schema.py # Schema inspection / update endpoints
β β β βββ auth.py # JWT auth
β β
β βββ core/
β β βββ pii_scrubber.py # PII detection + redaction (two-pass)
β β βββ template_discoverer.py # NEW: reads uploaded template β TemplateSchema
β β βββ notes_parser.py # Dynamic: driven by TemplateSchema, not hardcoded
β β βββ rag_store.py # Schema-agnostic FAISS (section_id is dynamic)
β β βββ section_mapper.py # Orchestrator: scrub β parse β retrieve β map β check
β β βββ report_assembler.py # Template-driven DOCX builder
β β βββ grounding_checker.py # Post-generation audit
β β
β βββ prompts/
β β βββ discovery_prompt.py # NEW: LLM-based schema extraction
β β βββ mapping_prompt.py # Template-driven mapping (no assumed structure)
β β βββ grounding_prompt.py # Grounding auditor
β β
β βββ models/
β β βββ schema.py # TemplateSchema, SectionDefinition, RatingSystem
β β βββ section.py # SectionNote (schema-agnostic)
β β βββ report.py # Full report model
β β
β βββ utils/
β βββ doc_extractor.py # Extract text + heading structure from DOCX/PDF
β βββ docx_builder.py # python-docx helpers
β βββ tenant_store.py # Per-tenant FAISS + schema + metadata store
β
βββ data/
β βββ tenants/
β βββ {tenant_id}/
β βββ schema.json # Discovered template schema
β βββ index.faiss # Embeddings
β βββ metadata.json # Chunk metadata
β
βββ docs/
βββ LIVE_AI_PROMPTS.md # Auto-generated prompt inventory
```
---
## MODULE 1: PII SCRUBBER (`core/pii_scrubber.py`)
Runs **before any data leaves the local system and before any LLM call**. Two passes:
regex (deterministic, fast) then spaCy transformer NER (catches names and locations
the regex misses). The scrubber is domain-agnostic β it does not assume RICS or any
specific report format.
### What Must Be Redacted
| Category | Examples | Replacement Token |
|---|---|---|
| Full street addresses | "1a Woodland Hill, Lambeth" | `[REDACTED_ADDRESS]` |
| Postcodes / ZIP codes | "SE19 1PB", "10001" | `[REDACTED_POSTCODE]` |
| Person names | Any proper name of an individual | `[REDACTED_NAME]` |
| Company / firm names | Any named organisation | `[REDACTED_COMPANY]` |
| Phone numbers | UK, US, international formats | `[REDACTED_PHONE]` |
| Email addresses | Any `x@y.z` format | `[REDACTED_EMAIL]` |
| Reference / case numbers | Alphanumeric IDs, report numbers | `[REDACTED_REF]` |
| Specific individual dates | "1st December 2025" | `[REDACTED_DATE]` |
| Currency amounts | "Β£450,000", "$1.2M" | `[REDACTED_AMOUNT]` |
| URLs containing identifiers | Any URL with names or IDs | `[REDACTED_URL]` |
### Implementation
```python
# core/pii_scrubber.py
import re
import spacy
from typing import Tuple, List, Dict
nlp = spacy.load("en_core_web_trf") # Transformer NER β highest accuracy
# Regex patterns β order matters; most specific first
REGEX_PATTERNS = [
# UK postcodes (full: "SE19 1PB") β place before generic alphanumeric ID pattern
(r'\b[A-Z]{1,2}[0-9][0-9A-Z]?\s*[0-9][A-Z]{2}\b', '[REDACTED_POSTCODE]'),
# US ZIP codes ("10001", "90210-1234")
(r'\b\d{5}(?:-\d{4})?\b', '[REDACTED_POSTCODE]'),
# Email
(r'\b[A-Za-z0-9._%+\-]+@[A-Za-z0-9.\-]+\.[A-Za-z]{2,}\b', '[REDACTED_EMAIL]'),
# UK phone numbers (07..., +44..., 01..., 02...)
(r'\b(?:(?:\+44|0)[\d\s\-\(\)]{9,13})\b', '[REDACTED_PHONE]'),
# US phone numbers
(r'\b(?:\+1[\s\-]?)?\(?\d{3}\)?[\s\-]?\d{3}[\s\-]?\d{4}\b', '[REDACTED_PHONE]'),
# Currency amounts (Β£, $, β¬, preceded by digit)
(r'[Β£$β¬]\s*[\d,]+(?:\.\d{1,2})?(?:\s*(?:million|m|k|bn))?\b', '[REDACTED_AMOUNT]'),
# Reference / report / case numbers (alphanumeric with separator, e.g. NCS-100147, REF/2024/001)
(r'\b[A-Z]{2,}[\-\/][A-Z0-9][\-\/A-Z0-9]{2,}\b', '[REDACTED_REF]'),
# Pure numeric IDs of 6+ digits (RICS member numbers, report IDs, etc.)
(r'\b\d{6,}\b', '[REDACTED_REF]'),
# URLs
(r'https?://[^\s]+', '[REDACTED_URL]'),
# Written-out dates tied to individuals ("1st December 2025", "January 15th 2024")
(
r'\b\d{1,2}(?:st|nd|rd|th)?\s+(?:January|February|March|April|May|June|'
r'July|August|September|October|November|December)\s+\d{4}\b',
'[REDACTED_DATE]'
),
# Numeric dates (15/12/2025, 15-12-2025, 2025/12/15)
(r'\b\d{1,2}[\/\-]\d{1,2}[\/\-]\d{2,4}\b', '[REDACTED_DATE]'),
(r'\b\d{4}[\/\-]\d{2}[\/\-]\d{2}\b', '[REDACTED_DATE]'),
]
# spaCy entity types that map to PII
NER_ENTITY_MAP = {
'PERSON': '[REDACTED_NAME]',
'ORG': '[REDACTED_COMPANY]',
'GPE': '[REDACTED_LOCATION]', # Geopolitical entity
'LOC': '[REDACTED_LOCATION]', # Non-GPE location
'FAC': '[REDACTED_LOCATION]', # Buildings/facilities
}
def scrub(text: str) -> Tuple[str, List[Dict]]:
"""
Two-pass PII scrubbing.
Pass 1 β Regex: deterministic, fast, catches structured patterns.
Pass 2 β spaCy NER: catches names, company names, locations regex misses.
Returns:
scrubbed_text: PII replaced with tokens
redaction_log: List of {type, count} dicts for audit. Never stores original values.
"""
redaction_log = []
# Pass 1: Regex (most specific patterns first)
for pattern, token in REGEX_PATTERNS:
matches = re.findall(pattern, text, re.IGNORECASE)
if matches:
redaction_log.append({'type': token, 'count': len(matches)})
text = re.sub(pattern, token, text, flags=re.IGNORECASE)
# Pass 2: spaCy NER (process on regex-scrubbed text to reduce confusion)
doc = nlp(text)
# Reverse order to preserve character offsets when replacing
for ent in reversed(doc.ents):
if ent.label_ in NER_ENTITY_MAP:
replacement = NER_ENTITY_MAP[ent.label_]
redaction_log.append({'type': replacement, 'label': ent.label_})
text = text[:ent.start_char] + replacement + text[ent.end_char:]
return text, redaction_log
def scrub_rag_chunk(chunk: str) -> str:
"""
Used during ingest of reference (past-report) documents.
Strips all PII so no property's specific data can leak into another report.
Master template paragraphs (boilerplate with no real property data)
are exempt from this β they are ingested as-is because they are structural
templates, not property-specific records.
"""
scrubbed, _ = scrub(chunk)
return scrubbed
def assert_no_pii(text: str) -> bool:
"""
Final belt-and-braces check on any text before it leaves the system.
Returns True if no PII patterns remain, False otherwise.
Used as a gate in the report assembler before DOCX export.
"""
for pattern, _ in REGEX_PATTERNS:
if re.search(pattern, text, re.IGNORECASE):
return False
# Run a lightweight NER check
doc = nlp(text)
for ent in doc.ents:
if ent.label_ in NER_ENTITY_MAP:
return False
return True
```
**Critical rules:**
- `scrub()` runs on surveyor notes BEFORE any embedding or LLM call
- `scrub_rag_chunk()` runs on reference-tier documents at ingest time, never on master templates
- `assert_no_pii()` runs on every mapped paragraph AFTER the LLM generates it, before it enters the DOCX
---
## RAG DOCUMENT INGESTION β PII HANDLING POLICY
This section defines how sensitive information is treated when documents are uploaded
to become part of the RAG store. It is a distinct concern from the scrubbing of
surveyor notes: the risk profile is different and the rules are not the same for
both document tiers.
### The Risk This Policy Prevents
The RAG store is the memory of the system. When the mapping LLM retrieves a paragraph
to fill with observations, it receives that paragraph's text directly in its context.
If a retrieved paragraph contains a real client's name, a real property address, or a
specific defect description tied to a specific past survey, the LLM may reproduce that
information in the new report β either verbatim or by treating it as a known fact about
the current property.
This is cross-property data leakage: private information from one client's survey
contaminating another client's report. It is a data protection violation regardless
of whether the LLM does it accidentally or deliberately. The PII handling policy for
ingested documents exists entirely to prevent this failure mode.
### The Two-Tier Document Model
Every document uploaded to the RAG store is assigned to one of two tiers. The tier
determines whether PII scrubbing is applied and how strictly.
---
#### TIER_MASTER β Firm's Approved Template Library
**What these documents are:**
The firm's own master paragraph library: generic, property-agnostic prose written to
work for any survey of the relevant type. No real client, no real address, no specific
measured defects. These are structural templates, not records of past work.
**PII scrubbing at ingest: NOT APPLIED.**
The reason is that these documents contain no property-specific data to strip, and
scrubbing them would risk corrupting the placeholder syntax and generic professional
language the mapping step depends on. Running a spaCy NER pass over a paragraph that
contains the word "the owner should" or "the surveyor observed" would risk redacting
generic nouns that happen to resemble names.
**The guard that replaces scrubbing: ingest-time PII verification.**
Before a TIER_MASTER document is chunked and embedded, the upload endpoint runs
`assert_no_pii()` across the full document text. If any PII pattern is detected,
the ingest is rejected with a clear error message:
```
HTTP 400: Master template document appears to contain personally identifiable
information (detected: [REDACTED_POSTCODE] pattern). Master templates must be
property-agnostic boilerplate. Remove all real addresses, names, and reference
numbers before uploading, or re-upload this document as a reference document instead.
```
The ingest does not proceed until the document passes this check. This is not a
warning β it is a hard gate. The firm must either clean the document or reclassify it
as a reference document (which will then be scrubbed on ingest).
**Metadata flag:** All TIER_MASTER chunks are stored with `is_scrubbed: false`.
This accurately reflects that no scrubbing was applied, and it is safe precisely
because the ingest-time verification confirmed no PII was present.
---
#### TIER_REFERENCE β Past Completed Reports
**What these documents are:**
Completed survey reports from previous jobs, uploaded to provide the RAG store with
examples of professional terminology, sentence rhythm, and the firm's writing style.
These documents contain real client data: real names, real addresses, real inspection
dates, real reference numbers, real amounts, and real property-specific observations.
**PII scrubbing at ingest: MANDATORY AND UNCONDITIONAL.**
`scrub_rag_chunk()` is called on every paragraph chunk before it is embedded or
stored. This is the same two-pass scrubber used on surveyor notes (regex first,
then spaCy NER), applied at chunk level rather than document level so that the
embedding captures the technical content after redaction.
**What survives scrubbing in a reference document:**
| Survives | Removed |
|---|---|
| Technical defect vocabulary ("spalling brickwork", "failed pointing") | All names (client, surveyor, firm) |
| Professional sentence structure and tone | All addresses and postcodes |
| Generic recommendations ("further investigation is recommended") | All reference and report numbers |
| Building material descriptions ("render", "slate", "uPVC") | All currency amounts |
| Condition language ("moderate deterioration was noted") | All inspection dates |
| Section headings and structural phrases | All phone numbers and emails |
The embedding of a scrubbed reference chunk therefore captures style and vocabulary β
which is the legitimate purpose of the reference tier β while containing nothing that
could identify the original property or client.
**Metadata flag:** All TIER_REFERENCE chunks are stored with `is_scrubbed: true`.
This flag is set unconditionally at ingest β there is no code path that stores a
TIER_REFERENCE chunk without first calling `scrub_rag_chunk()`.
---
### The Search-Level Safety Backstop
Even if the ingest logic were to fail β due to a bug, a race condition, or a direct
database manipulation β the search function provides a second line of defence.
In `SurveyRagStore.search()`, any result where `tier == TIER_REFERENCE` and
`is_scrubbed == False` is excluded from the returned list before it reaches the
mapping LLM. The condition is checked on every search call:
```python
# In SurveyRagStore.search() β enforced on every call
if meta['tier'] == TIER_REFERENCE and not meta.get('is_scrubbed', False):
continue # Never returned to the LLM
```
This means a TIER_REFERENCE chunk that somehow entered the store without scrubbing
will never appear in a retrieval result. It remains in the index (so the ingest
appears to succeed) but is permanently invisible to the mapping step.
---
### The Audit Trail
Every scrubbing action on every ingested document is logged. The log records:
- Document filename and tier
- Timestamp of ingest
- Number of chunks processed
- For each chunk: a list of `{type, count}` redaction entries (e.g., `{"type": "[REDACTED_NAME]", "count": 3}`)
- Whether the chunk passed `is_scrubbed` verification
The log never records the original values of redacted items β only their type and
count. This provides compliance evidence that scrubbing occurred without creating a
secondary record of the PII itself.
---
### Implementation in `scrub_rag_chunk()` (already shown in MODULE 1)
```python
def scrub_rag_chunk(chunk: str) -> str:
"""
Applied to every paragraph chunk from a TIER_REFERENCE document before
embedding or storage. Uses the same two-pass pipeline as note scrubbing.
Called by: SurveyRagStore.ingest_document() when tier == TIER_REFERENCE.
Never called on TIER_MASTER documents.
The ingest_document() method is the only place this function is called.
There is no other code path that stores a TIER_REFERENCE chunk.
"""
scrubbed, _ = scrub(chunk)
return scrubbed
```
The strict call-site rule β only `ingest_document()` calls `scrub_rag_chunk()`,
and `ingest_document()` always calls it for TIER_REFERENCE β means there is no
ambiguity about when scrubbing applies. A code reviewer can verify the policy by
searching the codebase for calls to `scrub_rag_chunk()`: there must be exactly one,
inside `ingest_document()`, guarded by `if tier == TIER_REFERENCE`.
---
### Summary Table
| Stage | Document type | Scrubbing applied | Guard mechanism |
|---|---|---|---|
| Notes from surveyor | N/A (not a document) | `scrub()` β always | Hard gate before any LLM call |
| Master template ingest | TIER_MASTER | None | `assert_no_pii()` rejects ingest if PII found |
| Reference report ingest | TIER_REFERENCE | `scrub_rag_chunk()` β every chunk | `is_scrubbed` flag; search excludes unverified chunks |
| LLM output paragraph | N/A (generated text) | `assert_no_pii()` then `scrub()` if needed | Raises ValueError if PII found post-generation |
---
## MODULE 2: TEMPLATE SCHEMA DISCOVERY (`core/template_discoverer.py`)
This is the foundational new module in v2. It runs exactly once per firm β when they
upload their master template document. It extracts a complete machine-readable schema
that every other module uses as its sole structural authority.
### What the Schema Captures
```python
# models/schema.py
from pydantic import BaseModel
from typing import List, Optional, Dict, Any
class RatingValue(BaseModel):
value: str # e.g. "1", "2", "3", "A", "NI"
meaning: Optional[str] = None # e.g. "no immediate action", "urgent repair"
class RatingSystem(BaseModel):
detected: bool = False
type: Optional[str] = None # "numeric", "letter", "text", "boolean" β None if absent
values: List[RatingValue] = [] # Ordered list of possible values
format_template: Optional[str] = None # e.g. "Condition Rating [VALUE]" β None if absent
# How the rating appears in the template paragraph (for LLM to replicate)
inline_example: Optional[str] = None # Verbatim example from template
class SectionDefinition(BaseModel):
id: str # Stable identifier (auto-generated if none in template)
label: str # Human label exactly as it appears in the template
order: int # 1-based position in the template
parent_id: Optional[str] = None # For sub-sections; None if flat structure
has_rating_field: bool = False # Whether this section contains a rating in the template
rating_inline_format: Optional[str] = None # e.g. "Condition Rating [X]" β verbatim
keywords: List[str] = [] # Auto-extracted for notes matching
placeholder_hints: List[str] = [] # Placeholder strings found in this section's template text
class PlaceholderSyntax(BaseModel):
detected_formats: List[str] = [] # All placeholder formats found, e.g. ["[PLACEHOLDER]"]
primary_format: Optional[str] = None # Most common format
class TemplateSchema(BaseModel):
tenant_id: str
source_filename: str
extracted_at: str # ISO timestamp
report_type: Optional[str] = None # Detected report type, e.g. "RICS Home Survey Level 3"
sections: List[SectionDefinition] = []
section_hierarchy: str = "flat" # "flat", "two-level", "three-level"
rating_system: RatingSystem = RatingSystem()
placeholder_syntax: PlaceholderSyntax = PlaceholderSyntax()
raw_section_texts: Dict[str, str] = {} # section_id β full template text for that section
# Any custom metadata the discovery LLM extracted
additional_metadata: Dict[str, Any] = {}
```
### Discovery Prompt (`prompts/discovery_prompt.py`)
```python
# prompts/discovery_prompt.py
DISCOVERY_SYSTEM = """
You are a document structure analyst. You receive the extracted text and heading
structure of a professional report template. Your task is to return a precise
machine-readable JSON schema describing the template's structure.
You must extract exactly what is present in the document. You must never add,
invent, or assume structural elements that are not explicitly present.
Specifically:
- If the template has a rating or condition system, describe it precisely using
the exact values and format from the document. If there is no rating system,
set "detected": false and do not describe one.
- If sections have sub-sections, reflect that hierarchy. If the structure is flat,
say so.
- Extract keywords for each section from its label and opening sentences only.
Do not invent keywords from general domain knowledge.
- For placeholders: identify the exact syntax used (e.g. "[...]", "{...}", "___").
If no placeholders exist, leave the list empty.
Return ONLY a valid JSON object. No preamble, no markdown fences, no explanation.
The JSON must match this schema exactly:
{
"report_type": string or null,
"section_hierarchy": "flat" | "two-level" | "three-level",
"rating_system": {
"detected": boolean,
"type": "numeric" | "letter" | "text" | "boolean" | null,
"values": [{"value": string, "meaning": string or null}],
"format_template": string or null,
"inline_example": string or null
},
"placeholder_syntax": {
"detected_formats": [string],
"primary_format": string or null
},
"sections": [
{
"id": string,
"label": string,
"order": integer,
"parent_id": string or null,
"has_rating_field": boolean,
"rating_inline_format": string or null,
"keywords": [string],
"placeholder_hints": [string]
}
],
"additional_metadata": {}
}
"""
DISCOVERY_USER_TEMPLATE = """
DOCUMENT FILENAME: {filename}
EXTRACTED HEADING STRUCTURE:
{heading_outline}
EXTRACTED FULL TEXT (first 8000 characters):
{document_text_excerpt}
Analyse this template document and return the JSON schema.
"""
```
### Template Discoverer Implementation
```python
# core/template_discoverer.py
import json
import anthropic
from datetime import datetime, timezone
from utils.doc_extractor import extract_structure
from models.schema import TemplateSchema, SectionDefinition, RatingSystem, PlaceholderSyntax
from prompts.discovery_prompt import DISCOVERY_SYSTEM, DISCOVERY_USER_TEMPLATE
client = anthropic.Anthropic()
def discover_schema(
doc_bytes: bytes,
filename: str,
tenant_id: str,
content_type: str
) -> TemplateSchema:
"""
Reads an uploaded master template document and returns a TemplateSchema.
Steps:
1. Extract text + heading outline from the document
2. Send to LLM with strict JSON-only instructions
3. Parse and validate the returned JSON
4. Augment with raw section texts for the RAG store
5. Persist schema.json for this tenant
"""
# Step 1: Extract structure from document bytes
structure = extract_structure(doc_bytes, content_type)
# structure = {
# "heading_outline": "...", # Indented list of headings
# "full_text": "...", # Plain text of entire document
# "section_texts": { # Heading label β body text for that section
# "Chimney Stacks": "...",
# ...
# }
# }
# Step 2: LLM schema extraction
user_message = DISCOVERY_USER_TEMPLATE.format(
filename=filename,
heading_outline=structure["heading_outline"],
document_text_excerpt=structure["full_text"][:8000] # Respect context limits
)
response = client.messages.create(
model="claude-sonnet-4-20250514",
max_tokens=4000,
system=DISCOVERY_SYSTEM,
messages=[{"role": "user", "content": user_message}]
)
raw_json = response.content[0].text.strip()
# Strip any accidental markdown fences
if raw_json.startswith("```"):
raw_json = raw_json.split("```")[1]
if raw_json.startswith("json"):
raw_json = raw_json[4:]
raw_json = raw_json.strip()
# Step 3: Parse and validate
try:
data = json.loads(raw_json)
except json.JSONDecodeError as e:
raise ValueError(
f"Schema discovery LLM returned invalid JSON: {e}\n"
f"Raw response: {raw_json[:500]}"
)
# Step 4: Build TemplateSchema from parsed data
sections = []
for i, s in enumerate(data.get("sections", [])):
sections.append(SectionDefinition(
id=s.get("id", f"S{i+1:03d}"),
label=s.get("label", f"Section {i+1}"),
order=s.get("order", i + 1),
parent_id=s.get("parent_id"),
has_rating_field=s.get("has_rating_field", False),
rating_inline_format=s.get("rating_inline_format"),
keywords=s.get("keywords", []),
placeholder_hints=s.get("placeholder_hints", [])
))
rating_data = data.get("rating_system", {})
rating_system = RatingSystem(
detected=rating_data.get("detected", False),
type=rating_data.get("type"),
values=rating_data.get("values", []),
format_template=rating_data.get("format_template"),
inline_example=rating_data.get("inline_example")
)
ph_data = data.get("placeholder_syntax", {})
placeholder_syntax = PlaceholderSyntax(
detected_formats=ph_data.get("detected_formats", []),
primary_format=ph_data.get("primary_format")
)
schema = TemplateSchema(
tenant_id=tenant_id,
source_filename=filename,
extracted_at=datetime.now(timezone.utc).isoformat(),
report_type=data.get("report_type"),
sections=sections,
section_hierarchy=data.get("section_hierarchy", "flat"),
rating_system=rating_system,
placeholder_syntax=placeholder_syntax,
raw_section_texts=structure.get("section_texts", {}),
additional_metadata=data.get("additional_metadata", {})
)
# Step 5: Persist
_persist_schema(schema, tenant_id)
return schema
def load_schema(tenant_id: str) -> TemplateSchema:
"""Load a previously discovered schema from disk."""
from pathlib import Path
schema_path = Path(f"data/tenants/{tenant_id}/schema.json")
if not schema_path.exists():
raise FileNotFoundError(
f"No template schema found for tenant {tenant_id}. "
f"Upload a master template document first."
)
with open(schema_path, "r") as f:
return TemplateSchema.model_validate_json(f.read())
def _persist_schema(schema: TemplateSchema, tenant_id: str):
from pathlib import Path
schema_dir = Path(f"data/tenants/{tenant_id}")
schema_dir.mkdir(parents=True, exist_ok=True)
with open(schema_dir / "schema.json", "w") as f:
f.write(schema.model_dump_json(indent=2))
```
### Doc Extractor Utility (`utils/doc_extractor.py`)
```python
# utils/doc_extractor.py
from typing import Dict
from docx import Document
import pypdf
def extract_structure(doc_bytes: bytes, content_type: str) -> Dict:
"""
Extracts a standardised structure dict from a DOCX or PDF.
Returns:
{
"heading_outline": str, # Indented heading tree
"full_text": str, # All body text concatenated
"section_texts": dict[str, str] # heading label β body text beneath it
}
"""
if 'pdf' in content_type:
return _extract_from_pdf(doc_bytes)
else:
return _extract_from_docx(doc_bytes)
def _extract_from_docx(doc_bytes: bytes) -> Dict:
import io
doc = Document(io.BytesIO(doc_bytes))
headings = []
section_texts = {}
full_text_parts = []
current_heading = None
current_body_parts = []
HEADING_STYLES = {
'Heading 1', 'Heading 2', 'Heading 3',
'Heading 4', 'Heading 5', 'Heading 6'
}
for para in doc.paragraphs:
text = para.text.strip()
if not text:
continue
style_name = para.style.name if para.style else ""
if style_name in HEADING_STYLES:
# Flush previous section
if current_heading is not None:
body = "\n".join(current_body_parts).strip()
section_texts[current_heading] = body
current_body_parts = []
# Determine indent level from heading number
level = int(style_name[-1]) if style_name[-1].isdigit() else 1
indent = " " * (level - 1)
headings.append(f"{indent}{text}")
current_heading = text
else:
current_body_parts.append(text)
full_text_parts.append(text)
# Flush last section
if current_heading is not None:
section_texts[current_heading] = "\n".join(current_body_parts).strip()
return {
"heading_outline": "\n".join(headings),
"full_text": "\n\n".join(full_text_parts),
"section_texts": section_texts
}
def _extract_from_pdf(doc_bytes: bytes) -> Dict:
import io
reader = pypdf.PdfReader(io.BytesIO(doc_bytes))
full_text_parts = []
for page in reader.pages:
page_text = page.extract_text()
if page_text:
full_text_parts.append(page_text)
full_text = "\n\n".join(full_text_parts)
# For PDFs, heading detection is heuristic
# Lines that are short (< 80 chars) and followed by a blank line are likely headings
lines = full_text.split("\n")
headings = []
section_texts = {}
current_heading = None
current_body = []
for i, line in enumerate(lines):
line = line.strip()
if not line:
continue
next_line = lines[i + 1].strip() if i + 1 < len(lines) else ""
is_likely_heading = (
len(line) < 80
and (not next_line or len(next_line) > 60)
and not line.endswith(".")
)
if is_likely_heading:
if current_heading:
section_texts[current_heading] = "\n".join(current_body).strip()
current_body = []
headings.append(line)
current_heading = line
else:
current_body.append(line)
if current_heading:
section_texts[current_heading] = "\n".join(current_body).strip()
return {
"heading_outline": "\n".join(headings),
"full_text": full_text,
"section_texts": section_texts
}
```
---
## MODULE 3: DYNAMIC NOTES PARSER (`core/notes_parser.py`)
In v1 this module contained a hardcoded `RICS_SECTIONS` dictionary and a hardcoded
`KEYWORD_SECTION_MAP`. In v2, both are built dynamically from the discovered schema
at runtime. There are no hardcoded section codes anywhere.
```python
# core/notes_parser.py
import re
from typing import List, Optional, Dict
from pydantic import BaseModel
from models.schema import TemplateSchema, SectionDefinition
class SectionNote(BaseModel):
section_id: str # From TemplateSchema.sections[i].id (dynamic)
section_label: str # From TemplateSchema.sections[i].label
raw_observations: List[str] # Bullet-form facts extracted from the notes
rating_value: Optional[str] = None # Only populated if schema.rating_system.detected = True
shorthand_expanded: Optional[str] = None # After optional expansion pass
def build_keyword_map(schema: TemplateSchema) -> Dict[str, str]:
"""
Build a keyword β section_id map dynamically from the discovered schema.
Sources for keywords per section:
1. schema.sections[i].keywords (discovered by LLM from heading + first sentences)
2. Words in the section label itself (lowercased, meaningful words only)
Returns: {keyword: section_id}
"""
STOP_WORDS = {
'and', 'or', 'the', 'of', 'in', 'a', 'an', 'to', 'for',
'with', 'other', 'general', 'section', 'part', 'item'
}
keyword_map = {}
for section in schema.sections:
# From discovered keywords
for kw in section.keywords:
keyword_map[kw.lower()] = section.id
# From label words
label_words = re.findall(r'\b[a-zA-Z]{3,}\b', section.label)
for word in label_words:
w = word.lower()
if w not in STOP_WORDS:
keyword_map[w] = section.id
return keyword_map
def _detect_section_from_text(
text: str,
schema: TemplateSchema,
keyword_map: Dict[str, str]
) -> Optional[str]:
"""
Attempt to identify which schema section a block of text belongs to.
Three strategies, in order:
1. Explicit section ID match (e.g. "D1:", "Section 3:", "3.2")
2. Explicit section label match (case-insensitive)
3. Keyword match from keyword_map
Returns section_id or None if no match found.
"""
text_lower = text.lower()
# Strategy 1: Explicit section ID β look for pattern at start of line
for section in schema.sections:
pattern = r'(?i)^\s*' + re.escape(section.id) + r'\s*[:\.\-]'
if re.search(pattern, text, re.MULTILINE):
return section.id
# Strategy 2: Explicit section label
for section in schema.sections:
if section.label.lower() in text_lower:
return section.id
# Strategy 3: Keyword match (first match wins β ordered by section order)
words_in_text = set(re.findall(r'\b[a-zA-Z]{3,}\b', text_lower))
for section in sorted(schema.sections, key=lambda s: s.order):
section_keywords = set(kw.lower() for kw in section.keywords)
label_words = set(
w.lower() for w in re.findall(r'\b[a-zA-Z]{3,}\b', section.label)
)
all_kws = section_keywords | label_words
if all_kws & words_in_text:
return section.id
return None
def _extract_rating_value(text: str, schema: TemplateSchema) -> Optional[str]:
"""
If the schema has a rating system, attempt to find a rating value in this text.
Returns the matched value string or None.
Only runs if schema.rating_system.detected is True.
Uses the known values from the schema β never invents new values.
"""
if not schema.rating_system.detected:
return None
for rv in schema.rating_system.values:
# Look for the value as a standalone token (not embedded in a larger number)
pattern = r'(?<!\w)' + re.escape(rv.value) + r'(?!\w)'
if re.search(pattern, text, re.IGNORECASE):
return rv.value
# Also check for common shorthand like "CR2", "rating 2" etc.
if schema.rating_system.type == "numeric":
for rv in schema.rating_system.values:
if rv.value.isdigit():
patterns = [
r'(?i)\bcr\s*' + rv.value + r'\b',
r'(?i)\brating\s+' + rv.value + r'\b',
r'(?i)\bcondition\s+' + rv.value + r'\b',
]
for p in patterns:
if re.search(p, text):
return rv.value
return None
def parse_notes_to_sections(
scrubbed_notes: str,
schema: TemplateSchema
) -> List[SectionNote]:
"""
Converts scrubbed surveyor notes into a list of SectionNote objects.
The section taxonomy is entirely determined by the schema β no hardcoded codes.
Strategy:
1. Split the notes into blocks (double newline, or explicit section markers)
2. For each block, detect which schema section it belongs to
3. Extract any rating value (only if schema.rating_system.detected)
4. Split the block into individual observations (one per bullet / sentence)
5. Collect unassigned text into an UNASSIGNED bucket for the user to review
Returns a list of SectionNote, one per detected section (merged if same section
appears multiple times in the notes).
"""
keyword_map = build_keyword_map(schema)
# Split into blocks
blocks = re.split(r'\n{2,}', scrubbed_notes.strip())
# Accumulate observations per section
section_accumulator: Dict[str, List[str]] = {}
section_ratings: Dict[str, Optional[str]] = {}
unassigned_blocks: List[str] = []
for block in blocks:
block = block.strip()
if not block:
continue
section_id = _detect_section_from_text(block, schema, keyword_map)
if section_id is None:
unassigned_blocks.append(block)
continue
# Extract individual observations from the block
# Split on: newlines, bullet characters, semicolons at sentence boundaries
raw_lines = re.split(r'\n|(?<=\.)\s+(?=[A-Z])', block)
observations = []
for line in raw_lines:
line = line.strip().lstrip('β’-*Β·βΈβΉββΊ').strip()
if line and len(line) > 5:
observations.append(line)
if section_id not in section_accumulator:
section_accumulator[section_id] = []
section_accumulator[section_id].extend(observations)
# Rating detection (only if schema has rating system)
if section_id not in section_ratings:
section_ratings[section_id] = _extract_rating_value(block, schema)
# Build SectionNote objects
result = []
schema_sections_by_id = {s.id: s for s in schema.sections}
for section_id, observations in section_accumulator.items():
section_def = schema_sections_by_id.get(section_id)
if not section_def:
continue
result.append(SectionNote(
section_id=section_id,
section_label=section_def.label,
raw_observations=observations,
rating_value=section_ratings.get(section_id)
))
# Sort by schema order
result.sort(
key=lambda sn: schema_sections_by_id.get(sn.section_id, SectionDefinition(
id="", label="", order=9999
)).order
)
# Attach unassigned blocks as a special section so nothing is silently lost
if unassigned_blocks:
result.append(SectionNote(
section_id="UNASSIGNED",
section_label="Unassigned Observations",
raw_observations=unassigned_blocks,
rating_value=None
))
return result
```
---
## MODULE 4: RAG STORE (`core/rag_store.py`)
The RAG store in v2 is schema-agnostic. The `section_code` field from v1 is replaced
by a `section_id` that comes from the schema, not from a hardcoded dictionary.
Both document tiers (master template paragraphs, reference past reports) remain β
the distinction between them is PII handling, not structural assumption.
```python
# core/rag_store.py
import faiss
import numpy as np
import json
import os
from pathlib import Path
from typing import List, Dict, Optional
from openai import OpenAI
embed_client = OpenAI() # For text-embedding-3-small
TIER_MASTER = 'master' # Firm's standard template paragraphs β NOT PII-scrubbed
TIER_REFERENCE = 'reference' # Past completed reports β PII-scrubbed on ingest
class SurveyRagStore:
"""
Per-tenant FAISS vector store.
Schema-agnostic: section_id is whatever string the schema defines.
Metadata per chunk:
chunk_id β unique identifier
section_id β schema section id (e.g. "D1", "S003", "Roof Coverings")
section_label β human-readable label
paragraph_text β the text of this chunk
source_doc β original filename
tier β TIER_MASTER or TIER_REFERENCE
is_scrubbed β bool: was PII scrubbing applied at ingest?
"""
EMBED_DIM = 1536 # text-embedding-3-small output dimension
def __init__(self, tenant_id: str):
self.tenant_id = tenant_id
self.store_path = Path(f'data/tenants/{tenant_id}')
self.store_path.mkdir(parents=True, exist_ok=True)
index_path = self.store_path / 'index.faiss'
meta_path = self.store_path / 'metadata.json'
if index_path.exists():
self.index = faiss.read_index(str(index_path))
with open(meta_path, 'r') as f:
self.metadata: List[Dict] = json.load(f)
else:
# Inner product on normalised vectors = cosine similarity
self.index = faiss.IndexFlatIP(self.EMBED_DIM)
self.metadata = []
def ingest_document(
self,
doc_text: str,
source_filename: str,
tier: str,
section_id_hint_map: Optional[Dict[str, str]] = None
# Maps heading text β section_id from schema, so chunks get correct IDs
) -> int:
"""
Chunk the document by paragraph boundary, embed, and store.
Returns the number of chunks ingested.
For TIER_MASTER: preserve original text exactly.
For TIER_REFERENCE: PII-scrub each chunk before embedding.
"""
from core.pii_scrubber import scrub_rag_chunk
paragraphs = _split_into_paragraphs(doc_text)
ingested = 0
for i, para in enumerate(paragraphs):
is_scrubbed = False
if tier == TIER_REFERENCE:
para = scrub_rag_chunk(para)
is_scrubbed = True
# Detect section_id: use hint map first, then keyword/label search
section_id = 'UNKNOWN'
section_label = ''
if section_id_hint_map:
for heading, sid in section_id_hint_map.items():
if heading.lower() in para.lower()[:120]:
section_id = sid
break
embedding = _embed(para)
norm = np.linalg.norm(embedding)
if norm > 0:
embedding = embedding / norm
self.index.add(np.array([embedding], dtype='float32'))
self.metadata.append({
'chunk_id': f'{source_filename}_chunk_{i:04d}',
'section_id': section_id,
'section_label': section_label,
'paragraph_text': para,
'source_doc': source_filename,
'tier': tier,
'is_scrubbed': is_scrubbed,
})
ingested += 1
self._persist()
return ingested
def search(
self,
query: str,
section_id: str,
top_k: int = 5,
tier_preference: str = TIER_MASTER
) -> List[Dict]:
"""
Retrieve top_k most relevant paragraphs for the given section.
Priority ranking:
1. Same section_id AND tier_preference β highest rank
2. Same section_id, any tier β second rank
3. Semantically similar, any section β fallback
IMPORTANT: Chunks from TIER_REFERENCE that were NOT scrubbed (is_scrubbed=False)
are excluded from results as a safety measure to prevent PII leakage.
"""
if self.index.ntotal == 0:
return []
query_emb = _embed(query)
norm = np.linalg.norm(query_emb)
if norm > 0:
query_emb = query_emb / norm
pool_k = min(top_k * 15, self.index.ntotal)
scores, indices = self.index.search(
np.array([query_emb], dtype='float32'), pool_k
)
results = []
for score, idx in zip(scores[0], indices[0]):
if idx == -1:
continue
meta = self.metadata[idx].copy()
meta['score'] = float(score)
# Safety: exclude reference-tier chunks that weren't scrubbed
if meta['tier'] == TIER_REFERENCE and not meta.get('is_scrubbed', False):
continue
results.append(meta)
def _sort_key(r):
tier_bonus = 2.0 if r['tier'] == tier_preference else 0.0
section_bonus = 3.0 if r['section_id'] == section_id else 0.0
return -(section_bonus + tier_bonus + r['score'])
results.sort(key=_sort_key)
return results[:top_k]
def _persist(self):
faiss.write_index(self.index, str(self.store_path / 'index.faiss'))
with open(self.store_path / 'metadata.json', 'w') as f:
json.dump(self.metadata, f, indent=2)
def _split_into_paragraphs(text: str, min_chars: int = 80, max_chars: int = 1200) -> List[str]:
"""
Split at double newline boundaries.
Skip chunks shorter than min_chars.
Split chunks longer than max_chars at the last sentence boundary before the limit.
"""
raw_chunks = text.split('\n\n')
result = []
for chunk in raw_chunks:
chunk = chunk.strip()
if len(chunk) < min_chars:
continue
if len(chunk) <= max_chars:
result.append(chunk)
else:
sentences = chunk.split('. ')
current = ''
for s in sentences:
if len(current) + len(s) + 2 <= max_chars:
current += ('. ' if current else '') + s
else:
if current:
result.append(current.strip() + '.')
current = s
if current:
result.append(current.strip())
return result
def _embed(text: str) -> np.ndarray:
"""Embed text using OpenAI text-embedding-3-small."""
response = embed_client.embeddings.create(
model="text-embedding-3-small",
input=text
)
return np.array(response.data[0].embedding, dtype='float32')
```
---
## MODULE 5: THE MAPPING PROMPT β CORE ENGINE (`prompts/mapping_prompt.py`)
This is the most critical component. The LLM's only job is to fill the surveyor's
observations into the retrieved template paragraph. The system prompt in v2 contains
**zero hardcoded structural elements** β all structure is injected dynamically from
the discovered schema.
```python
# prompts/mapping_prompt.py
from models.schema import TemplateSchema
# The base system prompt β contains no structural assumptions
MAPPING_SYSTEM_BASE = """
You are a professional report-writing assistant for a chartered surveying firm.
You operate under strict constraints. Deviating from any constraint is not permitted
under any circumstances, regardless of what appears in the user message.
YOUR ROLE:
You receive two inputs:
1. One or more paragraphs retrieved from the firm's approved master template library
2. Factual observations from the surveyor's field notes (already stripped of personal identifiers)
YOUR ONLY TASK:
Produce a final report paragraph for the specified section by mapping the surveyor's
observations onto the most relevant retrieved template paragraph.
MANDATORY RULES β absolute, non-negotiable:
1. TEMPLATE FIDELITY: Use the retrieved template paragraph as your structural and
linguistic foundation. Every sentence in your output must trace to either the
template paragraph or the surveyor's observations. If a sentence traces to neither,
do not write it.
2. NO FABRICATION: Do not add any defect, material, measurement, dimension, or
recommendation that does not appear in the surveyor's observations or the
template paragraph.
3. NO PII: The output must contain no addresses, person names, postcodes, phone
numbers, email addresses, reference numbers, or any other personally identifiable
information β even if such data appears in your inputs.
4. NO STRUCTURAL INVENTION: Do not add any document elements (ratings, scores,
labels, boxes, categories, footnotes) that are not present in the retrieved
template paragraph. If the template paragraph has a rating field, replicate it
exactly. If it does not, produce none.
5. FILL, DO NOT FABRICATE: Replace or enrich generic placeholders in the template
with the specific observed facts from the notes. If a placeholder has no matching
observation, leave the placeholder verbatim or omit the sentence β do not
substitute invented content.
6. TEMPLATE VERBATIM ONLY AS SKELETON: The template paragraph defines the skeleton.
Integrate the observations into that skeleton β the output must not reproduce
the template verbatim without incorporating the notes.
7. UNMATCHED OBSERVATIONS: If a surveyor observation has no plausible match in any
retrieved template paragraph, append it as:
[UNMATCHED_OBSERVATION: <verbatim observation text>]
Do not attempt to draft prose for unmatched observations.
OUTPUT FORMAT:
Return only the final mapped paragraph text followed by any [UNMATCHED_OBSERVATION]
tags. No headings, no section labels, no preamble, no explanation.
"""
def build_mapping_system_prompt(schema: TemplateSchema) -> str:
"""
Appends schema-specific structural rules to the base system prompt.
These rules are derived from the discovered schema β never hardcoded.
If the schema has a rating system, the LLM is told its exact format.
If it does not, no rating instructions are added at all.
"""
additions = []
if schema.rating_system.detected:
# Build the rating instruction from the schema's own values and format
values_desc = ", ".join(
f"{rv.value}" + (f" ({rv.meaning})" if rv.meaning else "")
for rv in schema.rating_system.values
)
format_template = schema.rating_system.format_template or "[VALUE]"
example = schema.rating_system.inline_example or ""
additions.append(f"""
RATING SYSTEM:
This template uses a rating system. The permissible values are: {values_desc}.
The format as it appears in template paragraphs is: {format_template}
{f'Example from the template: "{example}"' if example else ''}
When the retrieved template paragraph contains a rating field, fill it with the
value indicated in the surveyor's notes. If the notes do not specify a value,
use the value that best reflects the described condition β but only choose from
the permitted values listed above. Never invent a rating value not in this list.
""")
else:
additions.append("""
RATING SYSTEM:
This template does not use a rating system. Do not add any rating, score,
condition label, or classification to the output under any circumstances.
""")
if schema.placeholder_syntax.primary_format:
additions.append(f"""
PLACEHOLDER SYNTAX:
This template uses the following format for placeholders: {schema.placeholder_syntax.primary_format}
When you see this format in the retrieved paragraph, replace it with the
appropriate observed fact from the surveyor's notes.
If no observation matches a placeholder, leave it verbatim.
""")
return MAPPING_SYSTEM_BASE + "\n".join(additions)
def build_mapping_messages(
section_id: str,
section_label: str,
retrieved_paragraphs: list,
scrubbed_observations: list,
schema: TemplateSchema,
rating_value: str = None
) -> list:
"""
Builds the messages list for the Claude API call.
All context about the rating system comes from the schema β nothing is hardcoded.
"""
# Format retrieved paragraphs
rag_block = ""
for i, para in enumerate(retrieved_paragraphs[:3], 1):
rag_block += (
f"[RETRIEVED TEMPLATE PARAGRAPH {i} β "
f"Source: {para['tier'].upper()}, "
f"Section: {para['section_id']}]\n"
f"{para['paragraph_text'].strip()}\n\n"
)
# Format observations
obs_block = "\n".join(f"β’ {obs}" for obs in scrubbed_observations)
# Rating instruction β only if schema has rating system AND a value was detected
rating_instruction = ""
if schema.rating_system.detected and rating_value:
rating_instruction = (
f"\nThe surveyor's notes indicate a rating value of: {rating_value}\n"
f"Reflect this in the output using the template's rating format.\n"
)
user_message = f"""SECTION: {section_id} β {section_label}
{rating_instruction}
--- RETRIEVED TEMPLATE PARAGRAPHS ---
{rag_block}
--- SURVEYOR'S FIELD OBSERVATIONS (PII removed) ---
{obs_block}
--- TASK ---
Map the field observations onto the most relevant retrieved template paragraph above.
Produce the final report paragraph for section '{section_label}'.
Do not add any element not present in the template paragraphs above.
"""
return [{"role": "user", "content": user_message}]
```
---
## MODULE 6: SECTION MAPPER β ORCHESTRATOR (`core/section_mapper.py`)
Ties every module together. Every structural decision flows from the schema.
```python
# core/section_mapper.py
import anthropic
from core.pii_scrubber import scrub, assert_no_pii
from core.notes_parser import parse_notes_to_sections
from core.rag_store import SurveyRagStore, TIER_MASTER
from core.grounding_checker import check_grounding
from core.template_discoverer import load_schema
from prompts.mapping_prompt import build_mapping_system_prompt, build_mapping_messages
from models.schema import TemplateSchema
client = anthropic.Anthropic()
def generate_report(
raw_notes: str,
tenant_id: str,
property_metadata: dict, # {property_type, tenure} β NO address, NO names
schema: TemplateSchema = None # If None, loaded from disk
) -> dict:
"""
Master pipeline. Returns a dict keyed by section_id, each containing:
- status: 'OK' | 'NO_RAG_MATCH' | 'GROUNDING_REVIEW' | 'UNASSIGNED'
- paragraph: the final mapped text
- rating_value: (only if schema has rating system and one was detected)
- rag_sources: chunk IDs used
- grounding_passed: bool
- unmatched_observations: list of observations with no matching template
Pipeline:
1. Load schema (or use passed schema)
2. PII-scrub raw notes
3. Parse notes into sections (using schema taxonomy)
4. For each section: retrieve template paragraphs β map β ground-check β PII-check
5. Return all sections
"""
# Step 1: Load schema
if schema is None:
schema = load_schema(tenant_id)
# Step 2: PII scrub β MUST happen before any LLM call
scrubbed_notes, redaction_log = scrub(raw_notes)
# Step 3: Parse into schema-driven sections
sections = parse_notes_to_sections(scrubbed_notes, schema)
# Step 4: Build schema-aware mapping system prompt (done once, reused per section)
mapping_system = build_mapping_system_prompt(schema)
# Step 5: Load RAG store
rag_store = SurveyRagStore(tenant_id)
results = {}
for section in sections:
# Handle UNASSIGNED bucket β surface for manual review, do not attempt to map
if section.section_id == 'UNASSIGNED':
results['UNASSIGNED'] = {
'status': 'UNASSIGNED',
'paragraph': '[These observations could not be assigned to any template section. Manual review required.]',
'unmatched_observations': section.raw_observations,
'grounding_passed': False,
}
continue
# Build semantic search query from section label + top observations
query = f"{section.section_label}: " + " ".join(section.raw_observations[:3])
# Retrieve template paragraphs (master tier preferred)
retrieved = rag_store.search(
query=query,
section_id=section.section_id,
top_k=5,
tier_preference=TIER_MASTER
)
if not retrieved:
results[section.section_id] = {
'status': 'NO_RAG_MATCH',
'paragraph': (
f'[No template paragraph found for section "{section.section_label}". '
f'Manual entry required.]'
),
'unmatched_observations': section.raw_observations,
'grounding_passed': False,
}
continue
# Build mapping messages and call LLM
messages = build_mapping_messages(
section_id=section.section_id,
section_label=section.section_label,
retrieved_paragraphs=retrieved,
scrubbed_observations=section.raw_observations,
schema=schema,
rating_value=section.rating_value
)
response = client.messages.create(
model="claude-sonnet-4-20250514",
max_tokens=1000,
system=mapping_system,
messages=messages,
)
mapped_text = response.content[0].text.strip()
# Extract UNMATCHED_OBSERVATION tags before grounding check
import re
unmatched_tags = re.findall(
r'\[UNMATCHED_OBSERVATION:\s*(.*?)\]', mapped_text, re.DOTALL
)
mapped_text_clean = re.sub(
r'\[UNMATCHED_OBSERVATION:.*?\]', '', mapped_text, flags=re.DOTALL
).strip()
# Grounding check
grounding_result = check_grounding(
mapped_paragraph=mapped_text_clean,
source_observations=section.raw_observations,
source_rag_paragraphs=[p['paragraph_text'] for p in retrieved]
)
if not grounding_result['passed']:
mapped_text_clean = grounding_result['cleaned_text']
# Final PII belt-and-braces check
if not assert_no_pii(mapped_text_clean):
mapped_text_clean, _ = scrub(mapped_text_clean)
results[section.section_id] = {
'status': 'OK' if grounding_result['passed'] else 'GROUNDING_REVIEW',
'paragraph': mapped_text_clean,
'section_label': section.section_label,
'rating_value': section.rating_value if schema.rating_system.detected else None,
'rag_sources': [p['chunk_id'] for p in retrieved[:3]],
'grounding_passed': grounding_result['passed'],
'grounding_violations': grounding_result.get('violations', []),
'unmatched_observations': unmatched_tags,
}
return results
```
---
## MODULE 7: GROUNDING CHECKER (`core/grounding_checker.py`)
Unchanged in logic from v1 β but the language in the auditor prompt is made
domain-agnostic (no RICS-specific references).
```python
# core/grounding_checker.py
import re
import json
import anthropic
client = anthropic.Anthropic()
GROUNDING_SYSTEM = """
You are a quality auditor for professional survey reports.
Your task is to verify that every factual claim in a generated paragraph is
supported by at least one of two allowed sources:
Source A: The surveyor's original field observations
Source B: The retrieved template paragraph(s)
Flag any content that:
- States a specific measurement, defect, material, or product name not present in either source
- Makes a recommendation not supported by either source
- Contains any proper noun (person name, company, address) that slipped through scrubbing
- Introduces a structural element (label, rating, category) not present in the template source
Return ONLY a valid JSON object. No preamble, no explanation.
{
"passed": true | false,
"violations": ["...list of specific invented phrases or sentences..."],
"cleaned_text": "...the paragraph with violations replaced by [REVIEW_REQUIRED: <reason>]..."
}
"""
def check_grounding(
mapped_paragraph: str,
source_observations: list,
source_rag_paragraphs: list
) -> dict:
"""
Two-stage grounding audit:
Stage 1 β Regex fast pass: catches any PII patterns that slipped through
Stage 2 β LLM semantic audit: catches invented content that regex cannot detect
"""
# Stage 1: Fast regex PII check
pii_patterns = [
r'\b[A-Z]{1,2}[0-9][0-9A-Z]?\s*[0-9][A-Z]{2}\b', # UK postcodes
r'\b\d{5}(?:-\d{4})?\b', # US ZIP codes
r'\b\d{6,}\b', # Long numeric IDs
r'\b[A-Za-z0-9._%+\-]+@[A-Za-z0-9.\-]+\.[A-Za-z]{2,}\b', # Emails
]
regex_violations = []
cleaned = mapped_paragraph
for pattern in pii_patterns:
matches = re.findall(pattern, cleaned)
if matches:
regex_violations.extend(matches)
cleaned = re.sub(pattern, '[REVIEW_REQUIRED: PII detected]', cleaned)
# Stage 2: LLM semantic audit
obs_text = '\n'.join(f' β’ {o}' for o in source_observations)
rag_text = '\n\n---\n\n'.join(source_rag_paragraphs[:2])
audit_message = f"""GENERATED PARAGRAPH TO AUDIT:
{mapped_paragraph}
ALLOWED SOURCE A β SURVEYOR FIELD OBSERVATIONS:
{obs_text}
ALLOWED SOURCE B β RETRIEVED TEMPLATE PARAGRAPHS:
{rag_text}
Audit the generated paragraph. Every factual claim must trace to Source A or Source B.
Return the JSON audit result."""
response = client.messages.create(
model="claude-sonnet-4-20250514",
max_tokens=600,
system=GROUNDING_SYSTEM,
messages=[{"role": "user", "content": audit_message}]
)
raw = response.content[0].text.strip()
if raw.startswith("```"):
raw = raw.split("```")[1].lstrip("json").strip()
try:
result = json.loads(raw)
except json.JSONDecodeError:
# Parse failure: treat as passed if no regex violations
result = {
'passed': len(regex_violations) == 0,
'violations': regex_violations,
'cleaned_text': cleaned
}
if regex_violations:
result['passed'] = False
result['violations'] = regex_violations + result.get('violations', [])
result['cleaned_text'] = cleaned # Use regex-cleaned version
return result
```
---
## MODULE 8: REPORT ASSEMBLER (`core/report_assembler.py`)
In v2, the assembler has no hardcoded section order, no hardcoded condition colours,
and no hardcoded structural elements. Everything is driven by the discovered schema.
```python
# core/report_assembler.py
import io
from docx import Document
from docx.shared import Pt, RGBColor
from docx.oxml.ns import qn
from models.schema import TemplateSchema
# Only if the schema has a rating system with numeric values 1-3 do we apply
# standard traffic-light colours. Even these are not applied if the schema
# does not define colour conventions.
DEFAULT_RATING_COLORS = {
'3': RGBColor(0xBF, 0x1E, 0x2E), # Red
'2': RGBColor(0xF5, 0xA6, 0x23), # Amber
'1': RGBColor(0x2E, 0x7D, 0x32), # Green
'NI': RGBColor(0x90, 0x90, 0x90), # Grey
'R': RGBColor(0x1A, 0x23, 0x7E), # Dark blue
}
def build_docx(
mapped_sections: dict, # {section_id: {paragraph, rating_value, status, ...}}
report_metadata: dict, # {property_type, tenure} β NO addresses or names
schema: TemplateSchema, # The discovered schema β sole structural authority
template_docx_path: str = None # Path to branded DOCX template if provided
) -> bytes:
"""
Assembles the final report DOCX.
Returns bytes for download.
Section order is taken from schema.sections ordered by section.order.
No section codes, headings, or structural elements are added unless they
originate from the schema or the mapped paragraph text.
"""
doc = Document(template_docx_path) if template_docx_path else Document()
if not template_docx_path:
# Only apply minimal generic styles if no branded template is provided
_apply_minimal_styles(doc)
# Cover page β property metadata only (no addresses from AI pipeline)
_add_cover_page(doc, report_metadata, schema)
doc.add_page_break()
# Sections β in the exact order defined by the schema
ordered_sections = sorted(schema.sections, key=lambda s: s.order)
for section_def in ordered_sections:
sid = section_def.id
if sid not in mapped_sections:
continue # Section not in notes β omit entirely
section_data = mapped_sections[sid]
_add_section(doc, section_def, section_data, schema)
# Surface any unassigned observations at the end for manual review
if 'UNASSIGNED' in mapped_sections:
_add_unassigned_block(doc, mapped_sections['UNASSIGNED'])
buffer = io.BytesIO()
doc.save(buffer)
return buffer.getvalue()
def _add_section(doc, section_def, section_data, schema: TemplateSchema):
"""Add a single section to the document."""
status = section_data.get('status', 'OK')
paragraph_text = section_data.get('paragraph', '')
rating_value = section_data.get('rating_value')
# Section heading β use the label from the schema, not any assumed code
heading_text = f"{section_def.id} {section_def.label}" if section_def.id else section_def.label
heading = doc.add_heading(heading_text, level=3)
# Rating annotation β ONLY if the schema defines a rating system
# AND this specific section has a rating field in the template
# AND a rating value was detected in the notes
if (
schema.rating_system.detected
and section_def.has_rating_field
and rating_value is not None
):
rating_run = heading.add_run(f" {rating_value}")
rating_run.bold = True
# Apply colour if it maps to a known colour β otherwise leave default
color = DEFAULT_RATING_COLORS.get(rating_value)
if color:
rating_run.font.color.rgb = color
# Paragraph body
if status == 'NO_RAG_MATCH':
p = doc.add_paragraph()
p.add_run(
f'[No template paragraph matched for "{section_def.label}". '
f'Manual entry required.]'
).italic = True
elif status == 'GROUNDING_REVIEW':
p = doc.add_paragraph(paragraph_text)
review_p = doc.add_paragraph()
review_p.add_run(
'[Grounding review required β some content could not be verified against sources.]'
).italic = True
else:
doc.add_paragraph(paragraph_text)
# Unmatched observations β surface clearly for manual drafting
for unmatched in section_data.get('unmatched_observations', []):
if unmatched.strip():
up = doc.add_paragraph()
up.add_run(
f'[Note requiring manual drafting: {unmatched}]'
).italic = True
def _add_unassigned_block(doc, unassigned_data):
"""Adds a clearly labelled block for observations that couldn't be section-matched."""
doc.add_page_break()
doc.add_heading('Unassigned Observations β Manual Review Required', level=2)
p = doc.add_paragraph(
'The following observations from the surveyor\'s notes could not be '
'automatically assigned to any template section. Please review and draft manually.'
)
for obs in unassigned_data.get('unmatched_observations', []):
doc.add_paragraph(f'β’ {obs}', style='List Bullet')
def _add_cover_page(doc, metadata, schema: TemplateSchema):
"""
Minimal cover page using only non-PII metadata.
Address and client name must be added manually by the user after export.
"""
doc.add_heading('Survey Report', level=1)
if schema.report_type:
doc.add_paragraph(schema.report_type)
if metadata.get('property_type'):
doc.add_paragraph(f"Property type: {metadata['property_type']}")
if metadata.get('tenure'):
doc.add_paragraph(f"Tenure: {metadata['tenure']}")
doc.add_paragraph(
'[Address, client name, inspection date and surveyor details '
'to be completed by the surveyor before issue.]'
).italic = True
def _apply_minimal_styles(doc):
"""Apply minimal generic styles when no branded template is provided."""
from docx.shared import Pt
style = doc.styles['Normal']
font = style.font
font.name = 'Calibri'
font.size = Pt(10)
```
---
## MODULE 9: API ENDPOINTS
### Template Upload + Schema Discovery (`api/routes/upload.py`)
```python
# api/routes/upload.py
from fastapi import APIRouter, UploadFile, File, Depends, HTTPException, Query
from core.template_discoverer import discover_schema, load_schema
from core.rag_store import SurveyRagStore, TIER_MASTER, TIER_REFERENCE
from core.pii_scrubber import scrub_rag_chunk
from utils.doc_extractor import extract_structure
router = APIRouter(prefix='/api/upload', tags=['upload'])
@router.post('/template')
async def upload_master_template(
file: UploadFile = File(...),
tenant_id: str = Depends(get_current_tenant)
):
"""
Upload the firm's master template document.
This triggers schema discovery and ingests the template into the MASTER tier RAG store.
Must be done before any report generation.
"""
content = await file.read()
content_type = file.content_type or 'application/octet-stream'
# Step 1: Discover schema from the template
schema = discover_schema(
doc_bytes=content,
filename=file.filename,
tenant_id=tenant_id,
content_type=content_type
)
# Step 2: Ingest template paragraphs into MASTER tier RAG store
structure = extract_structure(content, content_type)
# Build section_id hint map from schema (label β id) for chunk attribution
hint_map = {s.label: s.id for s in schema.sections}
# Also add discovered raw section texts as individual ingestion units
full_text = structure['full_text']
rag_store = SurveyRagStore(tenant_id)
chunks_ingested = rag_store.ingest_document(
doc_text=full_text,
source_filename=file.filename,
tier=TIER_MASTER,
section_id_hint_map=hint_map
)
return {
'status': 'template_ingested',
'filename': file.filename,
'sections_discovered': len(schema.sections),
'has_rating_system': schema.rating_system.detected,
'rating_type': schema.rating_system.type,
'report_type': schema.report_type,
'chunks_ingested': chunks_ingested,
'tier': TIER_MASTER,
}
@router.post('/reference')
async def upload_reference_document(
file: UploadFile = File(...),
tenant_id: str = Depends(get_current_tenant)
):
"""
Upload a past completed report as a reference document.
This is PII-scrubbed on ingest and stored in REFERENCE tier for terminology/style guidance.
Reference documents are NEVER used as a source of facts β only style examples.
"""
content = await file.read()
content_type = file.content_type or 'application/octet-stream'
structure = extract_structure(content, content_type)
full_text = structure['full_text']
# PII-scrub entire document before embedding
scrubbed_text = scrub_rag_chunk(full_text)
# Load schema to get hint map for section attribution
try:
schema = load_schema(tenant_id)
hint_map = {s.label: s.id for s in schema.sections}
except FileNotFoundError:
hint_map = {}
rag_store = SurveyRagStore(tenant_id)
chunks_ingested = rag_store.ingest_document(
doc_text=scrubbed_text,
source_filename=file.filename,
tier=TIER_REFERENCE,
section_id_hint_map=hint_map
)
return {
'status': 'reference_ingested',
'filename': file.filename,
'chunks_ingested': chunks_ingested,
'tier': TIER_REFERENCE,
'pii_scrubbed': True
}
@router.get('/schema')
async def get_schema(tenant_id: str = Depends(get_current_tenant)):
"""Return the currently discovered schema for inspection."""
try:
schema = load_schema(tenant_id)
return schema.model_dump()
except FileNotFoundError:
raise HTTPException(
status_code=404,
detail='No template schema found. Upload a master template first.'
)
```
### Report Generation (`api/routes/report.py`)
```python
# api/routes/report.py
from fastapi import APIRouter, Depends, HTTPException
from fastapi.responses import Response
from pydantic import BaseModel, field_validator
from core.section_mapper import generate_report
from core.report_assembler import build_docx
from core.template_discoverer import load_schema
from core.pii_scrubber import scrub
router = APIRouter(prefix='/api/report', tags=['report'])
class GenerateReportRequest(BaseModel):
raw_notes: str
property_type: str # e.g. "semi-detached house", "flat" β generic descriptor
tenure: str # e.g. "freehold", "leasehold"
# CRITICAL: No client name, no address, no personal data here.
# Address and client details are added manually by the surveyor post-export.
@field_validator('raw_notes')
@classmethod
def notes_not_empty(cls, v):
if not v.strip():
raise ValueError('raw_notes cannot be empty')
return v
@router.post('/generate')
async def generate(
req: GenerateReportRequest,
tenant_id: str = Depends(get_current_tenant)
):
"""
Full pipeline: surveyor notes in β DOCX out.
PII scrubbing is the first operation inside generate_report().
No raw notes ever reach an LLM.
"""
try:
schema = load_schema(tenant_id)
except FileNotFoundError:
raise HTTPException(
status_code=400,
detail='No template has been uploaded for this account. '
'Upload a master template document first.'
)
mapped_sections = generate_report(
raw_notes=req.raw_notes,
tenant_id=tenant_id,
property_metadata={
'property_type': req.property_type,
'tenure': req.tenure,
},
schema=schema
)
docx_bytes = build_docx(
mapped_sections=mapped_sections,
report_metadata={
'property_type': req.property_type,
'tenure': req.tenure,
},
schema=schema
)
return Response(
content=docx_bytes,
media_type=(
'application/vnd.openxmlformats-officedocument'
'.wordprocessingml.document'
),
headers={'Content-Disposition': 'attachment; filename="survey_report_draft.docx"'}
)
@router.post('/preview')
async def preview_mapped_sections(
req: GenerateReportRequest,
tenant_id: str = Depends(get_current_tenant)
):
"""
Returns JSON of mapped sections without building a DOCX.
Useful for the UI to show section-by-section preview before download.
"""
try:
schema = load_schema(tenant_id)
except FileNotFoundError:
raise HTTPException(status_code=400, detail='No template found.')
mapped_sections = generate_report(
raw_notes=req.raw_notes,
tenant_id=tenant_id,
property_metadata={
'property_type': req.property_type,
'tenure': req.tenure,
},
schema=schema
)
return {
'schema_report_type': schema.report_type,
'sections_mapped': len([s for s in mapped_sections.values() if s['status'] == 'OK']),
'sections_needing_review': len([
s for s in mapped_sections.values()
if s['status'] in ('NO_RAG_MATCH', 'GROUNDING_REVIEW', 'UNASSIGNED')
]),
'sections': mapped_sections
}
```
---
## MODULE 10: NOTES EXPANDER β OPTIONAL (`prompts/notes_expander.py`)
The expander converts extreme shorthand into full professional observations
BEFORE the mapping step. In v2, the shorthand dictionary is schema-informed β
it does not assume any rating system exists, and adds rating-system shorthand
only if the schema has one.
```python
# prompts/notes_expander.py
from models.schema import TemplateSchema
EXPANDER_SYSTEM_BASE = """
You are a professional report-writing assistant for a property surveying firm.
You receive shorthand field notes and expand them into full professional observations.
RULES:
- Expand only what is clearly implied by the shorthand. Never add defects, materials,
or measurements not mentioned in the original.
- If a shorthand code is ambiguous, preserve it verbatim with: [AMBIGUOUS: <original>]
- Never add observations that are not present in the input.
- Output a clean bulleted list β one observation per bullet.
- Use clear, professional language consistent with a formal property survey.
COMMON SHORTHAND (domain-agnostic building terms):
- det / dett β deterioration noted
- NI β not inspected
- rep reqd β repair required
- v. limited β very limited access / visibility
- n/a β not applicable / not present
- gen β generally / general condition
- DPC β damp proof course
- MC β moisture content reading
- UV / uPVC β unplasticised polyvinyl chloride (plastic) material
- conc β concrete
- s/s β stainless steel
- pt / part β part of / partial
- approx β approximately
- ext β external / exterior
- int β internal / interior
- org β original
- prev β previous / previously
"""
def build_expander_system_prompt(schema: TemplateSchema) -> str:
"""
Appends rating-system-specific shorthand ONLY if the schema defines one.
Never adds rating shorthand for schemas without a rating system.
"""
additions = EXPANDER_SYSTEM_BASE
if schema.rating_system.detected and schema.rating_system.values:
values_shorthand = "\n".join(
f"- {rv.value} β rating value: {rv.value}" +
(f" ({rv.meaning})" if rv.meaning else "")
for rv in schema.rating_system.values
)
format_hint = schema.rating_system.format_template or "[VALUE]"
additions += f"""
RATING SYSTEM SHORTHAND:
This template uses the following rating values. Expand shorthand rating references
using these exact values:
{values_shorthand}
When a rating value appears in the notes, expand it as: {format_hint}
with the appropriate value substituted for [VALUE].
"""
else:
additions += """
RATING SYSTEM:
This template does not use a rating system. Do not expand any shorthand as a rating,
condition score, or similar classification.
"""
return additions
```
---
## CONFIGURATION (`config.py`)
```python
# config.py
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
# API keys
anthropic_api_key: str
openai_api_key: str # For embeddings
# Models
embedding_model: str = "text-embedding-3-small"
mapping_model: str = "claude-sonnet-4-20250514"
grounding_model: str = "claude-sonnet-4-20250514"
discovery_model: str = "claude-sonnet-4-20250514"
# RAG settings
rag_top_k: int = 5
paragraph_min_chars: int = 80
paragraph_max_chars: int = 1200
# PII scrubbing
spacy_model: str = "en_core_web_trf"
# Output
max_tokens_mapping: int = 1000
max_tokens_grounding: int = 600
max_tokens_discovery: int = 4000
# Feature flags
notes_expansion_enabled: bool = True
grounding_check_enabled: bool = True
# Grounding alert threshold β if more than this fraction of sections fail,
# the response will flag the entire report for manual review
grounding_alert_threshold: float = 0.2
class Config:
env_file = ".env"
settings = Settings()
```
---
## REQUIREMENTS (`requirements.txt`)
```
fastapi>=0.110.0
uvicorn>=0.27.0
anthropic>=0.25.0
openai>=1.12.0
faiss-cpu>=1.8.0
numpy>=1.26.0
spacy>=3.7.0
python-docx>=1.1.0
pydantic>=2.6.0
pydantic-settings>=2.2.0
python-multipart>=0.0.9
python-jose>=3.3.0
passlib>=1.7.4
pypdf>=4.0.0
```
---
## COMPLETE DATA FLOW
```
TENANT ONBOARDING (one-time per firm)
βββββββββββββββββββββββββββββββββββββ
Upload master template (DOCX or PDF)
β
βΌ
[TEMPLATE DISCOVERER]
Extract heading structure + full text
β
βΌ
[DISCOVERY LLM CALL]
Claude extracts TemplateSchema JSON:
sections, ordering, rating system (if any),
placeholder syntax, keywords
β
βΌ
schema.json β saved per tenant
β
βΌ
[RAG INGEST β MASTER TIER]
Template paragraphs chunked + embedded
into FAISS (NOT PII-scrubbed β it's boilerplate)
Optionally: upload past completed reports
β
βΌ
[RAG INGEST β REFERENCE TIER]
Past reports PII-scrubbed β embedded into FAISS
REPORT GENERATION (per survey)
βββββββββββββββββββββββββββββββββββββ
Surveyor submits raw field notes
β
βΌ
[1] PII SCRUBBER ββββββββββββββββ redaction_log (audit only, no originals stored)
β scrubbed_notes
βΌ
[2] NOTES PARSER (schema-driven)
β List[SectionNote] β section_ids from schema, not hardcoded
βΌ
[3] Optional: NOTES EXPANDER (schema-informed shorthand expansion)
β enriched observations
βΌ
[4] For each SectionNote:
β
ββ RAG SEARCH β FAISS (section_id filter, MASTER tier preferred)
β β retrieved template paragraphs
β βΌ
ββ MAPPING LLM CALL (schema-aware system prompt)
β β mapped paragraph text
β βΌ
ββ GROUNDING CHECK (LLM audit)
β β violations flagged / cleaned
β βΌ
ββ FINAL PII CHECK (assert_no_pii regex)
β clean mapped paragraph
βΌ
[5] REPORT ASSEMBLER
Schema section ordering β python-docx
Schema rating system β conditional rating display
No hardcoded section list, no hardcoded colours
β
βΌ
DOCX DOWNLOAD
(Address, client name, inspection date added manually by surveyor before issue)
```
---
## SECURITY REQUIREMENTS
1. **All LLM calls use PII-scrubbed text exclusively** β raw notes never reach any API endpoint
2. **Tenant isolation** β each tenant's FAISS index and schema live in a private directory; cross-tenant access is architecturally impossible
3. **Scrubbing audit log** β every redaction recorded with type and count only (never the original value)
4. **Output PII gate** β `assert_no_pii()` runs on every mapped paragraph before it enters the DOCX
5. **Reference tier safety gate** β chunks with `is_scrubbed=False` are excluded from RAG search results
6. **Master template PII guard** β at ingest time, the upload endpoint checks that the uploaded master template is structural boilerplate (no real addresses) by running a lightweight regex scan and warning the user if potential PII is found
7. **Request-level PII middleware** β FastAPI middleware intercepts the `raw_notes` field in every request and runs a lightweight postcode + email regex scan as a first-line check before any processing
8. **API key management** β Anthropic and OpenAI API keys in environment variables only, never logged
---
## TESTING PLAN
### Unit Tests
- `test_pii_scrubber.py`
- Regex coverage: postcodes, emails, phones, currency, reference numbers, dates
- spaCy NER: person names, company names, locations
- `assert_no_pii()` on clean text β True; on text with PII β False
- `test_template_discoverer.py`
- Upload a DOCX with known sections β verify schema has correct section count and order
- Upload a template WITH a rating system β verify `rating_system.detected=True` and values correct
- Upload a template WITHOUT a rating system β verify `rating_system.detected=False`
- Upload a PDF β verify heading extraction produces a usable outline
- `test_notes_parser.py`
- Notes with explicit section IDs β correct assignment
- Notes with only keywords β correct keyword-based assignment
- Notes with no recognisable section β lands in UNASSIGNED
- Notes with rating values (only tested with schema that has rating system)
- `test_rag_store.py`
- Ingest MASTER tier document β chunks stored with `is_scrubbed=False`
- Ingest REFERENCE tier document β chunks stored with `is_scrubbed=True`
- Search with `section_id` filter β MASTER tier sections returned preferentially
- Reference chunks with `is_scrubbed=False` never appear in search results
- `test_mapping_prompt.py`
- Schema WITH rating system β system prompt contains rating instructions
- Schema WITHOUT rating system β system prompt contains explicit no-rating instruction
- Build messages with rating value present β rating instruction in user message
- Build messages with rating value absent β no rating instruction
### Integration Tests
- **End-to-end with rating template**: Notes with rating indicators β DOCX contains rating annotations only on sections where the schema says `has_rating_field=True`
- **End-to-end without rating template**: Notes passed to a schema with no rating system β DOCX contains zero rating annotations regardless of what shorthand appears in the notes
- **New firm onboarding**: Upload a completely different firm's template β schema discovered correctly β report generated using that template's section structure exclusively
- **Grounding adversarial**: Inject a defect into notes that has zero matching template paragraph β `UNMATCHED_OBSERVATION` tag appears in output, not invented prose
- **PII adversarial**: Embed a postcode and person name in notes β neither appears in DOCX output
---
## CRITICAL IMPLEMENTATION NOTES FOR CURSOR
1. **Build `core/pii_scrubber.py` and `test_pii_scrubber.py` first** with 100% test
coverage before touching any other module. This is the security foundation.
2. **Build `core/template_discoverer.py` second** and verify it with at least two
different template formats before building the notes parser. The schema must be
stable before anything depends on it.
3. **The notes parser has zero hardcoded section codes.** If you find yourself typing
a section code like `D1` or `E3` anywhere outside a test fixture, stop β you are
hardcoding. The taxonomy comes from the schema exclusively.
4. **The mapping system prompt is built at runtime** by `build_mapping_system_prompt(schema)`.
There must be no static SYSTEM_PROMPT string that contains rating rules or section
codes. The string is always constructed from the schema.
5. **Rating logic is entirely conditional on `schema.rating_system.detected`.**
Search your codebase for "Condition Rating", "CR1", "CR2", "CR3" β if any of
these appear as constants or default strings outside test fixtures, they must be
removed and replaced with schema-derived values.
6. **The report assembler uses `schema.sections` ordered by `section.order`** for
its output order. The `SECTION_ORDER` list from v1 does not exist in v2.
7. **Coloured rating annotations in the DOCX** are applied only when ALL of the
following are true:
- `schema.rating_system.detected is True`
- `section_def.has_rating_field is True` for that specific section
- `section_data['rating_value'] is not None`
If any of these is false, no colour annotation is added.
8. **The DOCX assembler does NOT add an AI Transparency footer** by default. This
was in v1 but is not part of any template β it is an assumption. If the firm
wants it, add a config flag `ai_transparency_footer_enabled: bool = False`
and only render it when explicitly enabled.
9. **`assert_no_pii()` must gate every paragraph before it enters `build_docx()`.**
The assembler should raise a `ValueError` if a paragraph fails the PII check.
This forces the caller to re-run `scrub()` and log the incident.
10. **FAISS health check at startup**: `main.py` must include a startup event that
checks each tenant's FAISS index exists and has at least one vector. If a
generation request arrives and the index is empty, return a clear 400 error:
`"Template has not been ingested. Upload a master template first."`
11. **Schema versioning**: If the firm uploads a new master template, the schema and
FAISS index are both replaced atomically. Store the previous schema as
`schema_prev.json` before overwriting, in case a rollback is needed.
12. **The discovery LLM call uses `max_tokens=4000`** to handle large templates with
many sections. If the template has more than 8000 characters, send only the first
8000 of body text but the complete heading outline β headings are compact and carry
all the structural information needed.
```
|