filesystem_backend
FileSystem backend for PRIMARY mode.
This backend reads and writes model reference JSON files directly on the local filesystem. It is the source of truth for PRIMARY mode instances and never interacts with GitHub.
CategoryMetadataPopulationResult
Bases: BaseModel
Result from ensure_category_metadata_populated method.
Source code in src/horde_model_reference/backends/filesystem_backend.py
category_metadata_initialized
class-attribute
instance-attribute
category_metadata_initialized: bool = Field(
description="Whether v2 CategoryMetadata was initialized"
)
legacy_metadata_initialized
class-attribute
instance-attribute
legacy_metadata_initialized: bool = Field(
description="Whether legacy CategoryMetadata was initialized"
)
models_updated
class-attribute
instance-attribute
AllMetadataPopulationResult
Bases: BaseModel
Result from ensure_all_metadata_populated method.
Source code in src/horde_model_reference/backends/filesystem_backend.py
categories_processed
class-attribute
instance-attribute
categories_processed: list[str] = Field(
description="List of category names that were processed",
default_factory=list,
)
total_categories
class-attribute
instance-attribute
FileSystemBackend
Bases: ReplicaBackendBase
Backend that reads/writes model references directly on the local filesystem.
Source code in src/horde_model_reference/backends/filesystem_backend.py
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 | |
_invalidation_callbacks
instance-attribute
_category_timestamps
instance-attribute
_last_known_mtimes
instance-attribute
_legacy_json_cache
instance-attribute
_legacy_json_string_cache
instance-attribute
_legacy_cache_timestamps
instance-attribute
_legacy_last_known_mtimes
instance-attribute
_stale_legacy_categories
instance-attribute
cache_ttl_seconds
property
The cache TTL currently enforced for category payloads.
async_lock
property
Asyncio lock usable by subclasses when coordinating coroutines.
__init__
__init__(
*,
base_path: str
| Path = horde_model_reference_paths.base_path,
cache_ttl_seconds: int = 60,
replicate_mode: ReplicateMode = ReplicateMode.PRIMARY,
skip_startup_metadata_population: bool = False,
audit_writer: AuditTrailWriter | None = None,
) -> None
Initialize the FileSystem backend.
Parameters:
-
base_path(str | Path, default:base_path) –Base path for model reference files.
-
cache_ttl_seconds(int, default:60) –TTL for internal cache in seconds.
-
replicate_mode(ReplicateMode, default:PRIMARY) –Must be PRIMARY.
-
skip_startup_metadata_population(bool, default:False) –If True, skip automatic metadata population on startup. This is used when GitHub seeding will handle metadata population instead.
-
audit_writer(AuditTrailWriter | None, default:None) –Optional AuditTrailWriter for emitting audit events on CRUD operations.
Raises:
-
ValueError–If replicate_mode is not PRIMARY.
Source code in src/horde_model_reference/backends/filesystem_backend.py
_resolve_legacy_text_generation_path
Return the legacy text_generation path and whether it is CSV-based.
Source code in src/horde_model_reference/backends/filesystem_backend.py
_get_file_path_for_validation
Return the file path for mtime validation.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to get the file path for.
Returns:
-
Path | None–Path | None: Path to file for mtime validation.
Source code in src/horde_model_reference/backends/filesystem_backend.py
_get_legacy_file_path_for_validation
Return the legacy file path for mtime validation.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to get the legacy file path for.
Returns:
-
Path | None–Path | None: Path to legacy file for mtime validation.
Source code in src/horde_model_reference/backends/filesystem_backend.py
_mark_category_modified
Mark a category as modified after a write operation.
This invalidates the cache and triggers callbacks to notify manager.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –Category that was modified.
-
file_path(Path) –Path to the file that was modified.
Source code in src/horde_model_reference/backends/filesystem_backend.py
_mark_legacy_category_modified
_mark_legacy_category_modified(
category: MODEL_REFERENCE_CATEGORY,
legacy_file_path: Path,
) -> None
Mark a legacy category as modified after a write operation.
This invalidates the legacy cache and triggers callbacks.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –Category that was modified.
-
legacy_file_path(Path) –Path to the legacy file that was modified.
Source code in src/horde_model_reference/backends/filesystem_backend.py
_read_legacy_csv_to_dict
Read legacy CSV file (models.csv format) and convert to dict format.
Uses the shared csv_rows_to_legacy_dict to replicate convert.py exactly,
including defaults.json merging, instruct_format, correct field ordering,
and backend prefix generation (3 entries per model).
Parameters:
-
file_path(Path) –Path to the legacy CSV file.
Returns:
Source code in src/horde_model_reference/backends/filesystem_backend.py
_append_audit_event
_append_audit_event(
*,
domain: CanonicalFormat,
category: MODEL_REFERENCE_CATEGORY,
model_name: str,
operation: AuditOperation,
payload: AuditPayload,
logical_user_id: str | None,
request_id: str | None,
) -> None
Source code in src/horde_model_reference/backends/filesystem_backend.py
_read_csv_to_dict
Read CSV file and convert to dict format (grouped by base name, no backend prefixes).
This reads the grouped CSV format and returns a dict with one entry per base model. No backend prefix duplicates are generated here - that only happens during GitHub sync.
Parameters:
-
file_path(Path) –Path to the CSV file.
Returns:
Raises:
-
Exception–If CSV parsing fails.
Source code in src/horde_model_reference/backends/filesystem_backend.py
_write_dict_to_csv
Write dict format to CSV file (removes backend prefix duplicates).
This writes the grouped CSV format with one entry per base model. Any backend-prefixed entries in the input are filtered out.
Parameters:
-
data(dict[str, Any]) –Model data dict (may contain backend-prefixed duplicates).
-
file_path(Path) –Path to write the CSV file.
Raises:
-
Exception–If CSV writing fails.
Source code in src/horde_model_reference/backends/filesystem_backend.py
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 | |
fetch_category
fetch_category(
category: MODEL_REFERENCE_CATEGORY,
*,
force_refresh: bool = False,
) -> dict[str, Any] | None
Fetch model reference data for a specific category from filesystem.
All v2 format files (including text_generation.json) are in JSON format. CSV format is only used for legacy files (legacy/models.csv).
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to fetch.
-
force_refresh(bool, default:False) –If True, bypass cache and read from disk.
Returns:
-
dict[str, Any] | None–dict[str, Any] | None: The model reference data, or None if file doesn't exist.
Source code in src/horde_model_reference/backends/filesystem_backend.py
fetch_all_categories
fetch_all_categories(
*, force_refresh: bool = False
) -> dict[MODEL_REFERENCE_CATEGORY, dict[str, Any] | None]
Fetch model reference data for all categories.
Parameters:
-
force_refresh(bool, default:False) –If True, bypass cache for all categories.
Returns:
-
dict[MODEL_REFERENCE_CATEGORY, dict[str, Any] | None]–dict mapping categories to their model reference data.
Source code in src/horde_model_reference/backends/filesystem_backend.py
fetch_category_async
async
fetch_category_async(
category: MODEL_REFERENCE_CATEGORY,
*,
httpx_client: AsyncClient | None = None,
force_refresh: bool = False,
) -> dict[str, Any] | None
Asynchronously fetch model reference data for a category.
Note: File I/O is still synchronous as async file I/O doesn't provide significant benefits for small JSON files.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to fetch.
-
httpx_client(AsyncClient | None, default:None) –Optional httpx async client for downloads.
-
force_refresh(bool, default:False) –If True, bypass cache.
Returns:
Source code in src/horde_model_reference/backends/filesystem_backend.py
fetch_all_categories_async
async
fetch_all_categories_async(
*,
httpx_client: AsyncClient | None = None,
force_refresh: bool = False,
) -> dict[MODEL_REFERENCE_CATEGORY, dict[str, Any] | None]
Asynchronously fetch all categories (delegates to sync method).
Source code in src/horde_model_reference/backends/filesystem_backend.py
get_category_file_path
Get the file path for a category's data.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to get path for.
Returns:
-
Path | None–Path | None: Path to the JSON file, or None if not configured.
Source code in src/horde_model_reference/backends/filesystem_backend.py
get_all_category_file_paths
Get file paths for all categories.
Returns:
-
dict(dict[MODEL_REFERENCE_CATEGORY, Path | None]) –Mapping of categories to their file paths.
Source code in src/horde_model_reference/backends/filesystem_backend.py
get_legacy_json
get_legacy_json(
category: MODEL_REFERENCE_CATEGORY,
redownload: bool = False,
) -> dict[str, Any] | None
Get legacy format data from legacy/ folder.
For text_generation category, reads from CSV format (models.csv). For other categories, reads from JSON format.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –Category to retrieve.
-
redownload(bool, default:False) –If True, bypass cache and read from disk.
Returns:
-
dict[str, Any] | None–dict[str, Any] | None: The legacy format data, or None if file doesn't exist.
Source code in src/horde_model_reference/backends/filesystem_backend.py
get_legacy_json_string
get_legacy_json_string(
category: MODEL_REFERENCE_CATEGORY,
redownload: bool = False,
) -> str | None
Get legacy format data as JSON string from legacy/ folder.
For text_generation category, reads CSV and converts to JSON string. For other categories, reads JSON format directly.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –Category to retrieve.
-
redownload(bool, default:False) –If True, bypass cache and read from disk.
Returns:
-
str | None–str | None: The legacy format as JSON string, or None if file doesn't exist.
Source code in src/horde_model_reference/backends/filesystem_backend.py
supports_writes
Check if backend supports writes (always True for PRIMARY filesystem).
Returns:
-
bool(bool) –Always True.
supports_metadata
Check if backend supports metadata tracking (always True for PRIMARY filesystem).
Returns:
-
bool(bool) –Always True.
update_model
update_model(
category: MODEL_REFERENCE_CATEGORY,
model_name: str,
record_dict: dict[str, Any],
*,
logical_user_id: str | None = None,
request_id: str | None = None,
) -> None
Update or create a model reference.
Modifies the JSON file on disk atomically for all categories (v2 format is always JSON). Preserves created_at and created_by metadata on updates.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to update.
-
model_name(str) –The name of the model to update or create.
-
record_dict(dict[str, Any]) –The model record data as a dictionary.
-
logical_user_id(str | None, default:None) –Optional logical user ID for audit logging.
-
request_id(str | None, default:None) –Optional request ID for audit logging.
Raises:
-
FileNotFoundError–If the category file path is not configured.
Source code in src/horde_model_reference/backends/filesystem_backend.py
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 | |
delete_model
delete_model(
category: MODEL_REFERENCE_CATEGORY,
model_name: str,
*,
logical_user_id: str | None = None,
request_id: str | None = None,
) -> None
Delete a model reference.
Removes the model from the JSON file on disk atomically for all categories (v2 format is always JSON).
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category containing the model.
-
model_name(str) –The name of the model to delete.
-
logical_user_id(str | None, default:None) –Optional logical user ID for audit logging.
-
request_id(str | None, default:None) –Optional request ID for audit logging.
Raises:
-
FileNotFoundError–If the category file doesn't exist.
-
KeyError–If the model doesn't exist in the category.
Source code in src/horde_model_reference/backends/filesystem_backend.py
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 | |
supports_legacy_writes
Check if backend supports legacy format writes.
Returns True only when canonical_format='LEGACY' in settings.
Returns:
-
bool(bool) –True if legacy writes are supported.
Source code in src/horde_model_reference/backends/filesystem_backend.py
update_model_legacy
update_model_legacy(
category: MODEL_REFERENCE_CATEGORY,
model_name: str,
record_dict: dict[str, Any],
*,
logical_user_id: str | None = None,
request_id: str | None = None,
) -> None
Update or create a model reference in legacy format.
This method modifies the legacy format JSON file on disk atomically.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to update.
-
model_name(str) –The name of the model to update or create.
-
record_dict(dict[str, Any]) –The model record data in legacy format as a dictionary.
-
logical_user_id(str | None, default:None) –Optional logical user ID for audit logging.
-
request_id(str | None, default:None) –Optional request ID for audit logging.
Raises:
-
FileNotFoundError–If the legacy category file path is not configured.
-
RuntimeError–If canonical_format is not set to 'LEGACY'.
Source code in src/horde_model_reference/backends/filesystem_backend.py
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 | |
_update_text_generation_csv
_update_text_generation_csv(
model_name: str,
record_dict: dict[str, Any],
*,
logical_user_id: str | None = None,
request_id: str | None = None,
) -> None
Update a text_generation model by writing CSV (not JSON) to models.csv.
Reads the existing CSV, validates/transforms the record, updates the row list, writes CSV back, and regenerates the cached dict representation.
Parameters:
-
model_name(str) –The base model name (no backend prefix).
-
record_dict(dict[str, Any]) –The model record data.
-
logical_user_id(str | None, default:None) –Optional logical user ID for audit logging.
-
request_id(str | None, default:None) –Optional request ID for audit logging.
Source code in src/horde_model_reference/backends/filesystem_backend.py
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 | |
_delete_text_generation_csv
_delete_text_generation_csv(
model_name: str,
*,
logical_user_id: str | None = None,
request_id: str | None = None,
) -> None
Delete a text_generation model from CSV, preserving CSV format.
Parameters:
-
model_name(str) –The base model name (no backend prefix).
-
logical_user_id(str | None, default:None) –Optional logical user ID for audit logging.
-
request_id(str | None, default:None) –Optional request ID for audit logging.
Raises:
-
FileNotFoundError–If the CSV file doesn't exist.
-
KeyError–If the model doesn't exist.
Source code in src/horde_model_reference/backends/filesystem_backend.py
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 | |
delete_model_legacy
delete_model_legacy(
category: MODEL_REFERENCE_CATEGORY,
model_name: str,
*,
logical_user_id: str | None = None,
request_id: str | None = None,
) -> None
Delete a model reference from legacy format files.
This method removes the model from the legacy format JSON file on disk atomically.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category containing the model.
-
model_name(str) –The name of the model to delete.
-
logical_user_id(str | None, default:None) –Optional logical user ID for audit logging.
-
request_id(str | None, default:None) –Optional request ID for audit logging.
Raises:
-
FileNotFoundError–If the legacy category file doesn't exist.
-
KeyError–If the model doesn't exist in the category.
-
RuntimeError–If canonical_format is not set to 'LEGACY'.
Source code in src/horde_model_reference/backends/filesystem_backend.py
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 | |
_populate_model_metadata
_populate_model_metadata(
category: MODEL_REFERENCE_CATEGORY,
timestamp: int | None = None,
) -> int
Populate missing per-model metadata fields in a category's JSON file.
This method scans all models in a category file and ensures each has: - metadata.created_at (if missing) - metadata.updated_at (if missing)
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to populate metadata for.
-
timestamp(int | None, default:None) –The timestamp to use for created_at/updated_at. If None, uses current time.
Returns:
-
int(int) –Number of models that had metadata populated.
Source code in src/horde_model_reference/backends/filesystem_backend.py
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 | |
ensure_category_metadata_populated
ensure_category_metadata_populated(
category: MODEL_REFERENCE_CATEGORY,
timestamp: int | None = None,
) -> CategoryMetadataPopulationResult
Ensure both CategoryMetadata and per-model metadata are populated for a category.
This method: 1. Checks if CategoryMetadata exists for both v2 and legacy formats 2. Initializes CategoryMetadata if missing 3. Populates per-model metadata fields in JSON files 4. Uses the same timestamp for both backend and model-level metadata
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to ensure metadata for.
-
timestamp(int | None, default:None) –Optional timestamp to use. If None, uses current time.
Returns:
-
CategoryMetadataPopulationResult–dict with keys: - "category_metadata_initialized": bool - "legacy_metadata_initialized": bool - "models_updated": int - "timestamp_used": int
Source code in src/horde_model_reference/backends/filesystem_backend.py
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 | |
ensure_all_metadata_populated
Ensure metadata is populated for all categories that have files.
Scans all category files and ensures: 1. CategoryMetadata exists (both v2 and legacy formats) 2. All model records have metadata fields populated
This is called: - On FileSystemBackend initialization (PRIMARY mode) - After GitHub seeding completes
Returns:
-
AllMetadataPopulationResult–AllMetadataPopulationResult with summary of metadata population.
Source code in src/horde_model_reference/backends/filesystem_backend.py
get_legacy_metadata
Get legacy format metadata for a specific category.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to get metadata for.
Returns:
-
CategoryMetadata–CategoryMetadata | None: The legacy metadata, or None if not available.
Source code in src/horde_model_reference/backends/filesystem_backend.py
get_legacy_metadata_async
async
Asynchronously get legacy format metadata for a specific category.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to get metadata for.
Returns:
-
CategoryMetadata–CategoryMetadata | None: The legacy metadata, or None if not available.
Source code in src/horde_model_reference/backends/filesystem_backend.py
get_metadata
Get v2 format metadata for a specific category.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to get metadata for.
Returns:
-
CategoryMetadata–CategoryMetadata | None: The v2 metadata, or None if not available.
Source code in src/horde_model_reference/backends/filesystem_backend.py
get_metadata_async
async
Asynchronously get v2 format metadata for a specific category.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to get metadata for.
Returns:
-
CategoryMetadata–CategoryMetadata | None: The v2 metadata, or None if not available.
Source code in src/horde_model_reference/backends/filesystem_backend.py
get_all_legacy_metadata
Get legacy format metadata for all categories.
Returns:
-
dict[MODEL_REFERENCE_CATEGORY, CategoryMetadata]–dict[MODEL_REFERENCE_CATEGORY, CategoryMetadata]: Mapping of categories to their legacy metadata.
Source code in src/horde_model_reference/backends/filesystem_backend.py
get_all_legacy_metadata_async
async
Asynchronously get legacy format metadata for all categories.
Returns:
-
dict[MODEL_REFERENCE_CATEGORY, CategoryMetadata]–dict[MODEL_REFERENCE_CATEGORY, CategoryMetadata]: Mapping of categories to their legacy metadata.
Source code in src/horde_model_reference/backends/filesystem_backend.py
get_all_metadata
Get v2 format metadata for all categories.
Returns:
-
dict[MODEL_REFERENCE_CATEGORY, CategoryMetadata]–dict[MODEL_REFERENCE_CATEGORY, CategoryMetadata]: Mapping of categories to their v2 metadata.
Source code in src/horde_model_reference/backends/filesystem_backend.py
get_all_metadata_async
async
Asynchronously get v2 format metadata for all categories.
Returns:
-
dict[MODEL_REFERENCE_CATEGORY, CategoryMetadata]–dict[MODEL_REFERENCE_CATEGORY, CategoryMetadata]: Mapping of categories to their v2 metadata.
Source code in src/horde_model_reference/backends/filesystem_backend.py
needs_refresh
Source code in src/horde_model_reference/backends/replica_backend_base.py
register_invalidation_callback
Register a callback to be called when a category is invalidated.
This allows external components (like ModelReferenceManager) to be notified when cached data becomes stale and needs to be refreshed.
Parameters:
-
callback(Callable[[MODEL_REFERENCE_CATEGORY], None]) –Function to call with the invalidated category.
Source code in src/horde_model_reference/backends/base.py
_notify_invalidation
Notify all registered callbacks that a category has been invalidated.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category that was invalidated.
Source code in src/horde_model_reference/backends/base.py
_mark_stale_impl
mark_stale
Mark a category's data as stale, requiring refresh on next access.
This method calls the backend-specific implementation and then notifies all registered callbacks.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to mark as stale.
Implementation Note
The base class provides this public implementation. Subclasses should override _mark_stale_impl() instead of this method.
See Also
- _mark_stale_impl(): Backend-specific staleness tracking
- register_invalidation_callback(): Register callbacks for invalidation events
Source code in src/horde_model_reference/backends/base.py
support_any_writes
Check if this backend supports any write operations (v2 or legacy).
Returns:
-
bool(bool) –True if any write operations are supported, False otherwise.
Source code in src/horde_model_reference/backends/base.py
supports_cache_warming
Check if this backend supports cache warming operations.
Cache warming pre-populates the cache with data to improve initial request performance. Typically only backends with distributed caching (like Redis) support this.
Returns:
-
bool(bool) –True if cache warming is supported, False otherwise.
Source code in src/horde_model_reference/backends/base.py
supports_health_checks
Check if this backend supports health check operations.
Health checks verify that the backend's external dependencies (Redis, databases, etc.) are accessible and functioning correctly.
Returns:
-
bool(bool) –True if health checks are supported, False otherwise.
Source code in src/horde_model_reference/backends/base.py
supports_statistics
Check if this backend supports statistics retrieval.
Statistics provide insights into backend performance, cache hits/misses, etc.
Returns:
-
bool(bool) –True if statistics are supported, False otherwise.
Source code in src/horde_model_reference/backends/base.py
update_model_from_base_model
update_model_from_base_model(
category: MODEL_REFERENCE_CATEGORY,
model_name: str,
record_model: BaseModel,
*,
logical_user_id: str | None = None,
request_id: str | None = None,
) -> None
Update or create a model reference from a pydantic BaseModel.
This is an optional method that write-capable backends can implement. Read-only backends should leave the default implementation which raises NotImplementedError.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to update.
-
model_name(str) –The name of the model to update or create.
-
record_model(BaseModel) –The model record data as a pydantic BaseModel.
-
logical_user_id(str | None, default:None) –Immutable Horde user id for auditing contexts (optional).
-
request_id(str | None, default:None) –Optional tracing/idempotency identifier for audit correlation.
Raises:
-
NotImplementedError–If the backend does not support write operations.
Implementation Note
The base class provides this implementation automatically. It:
1. Checks supports_writes() returns True
2. Converts the pydantic model to dict using model_dump(exclude_unset=True)
3. Calls update_model() with the dictionary
Backends that support writes typically don't need to override this method.
See Also
- update_model(): Update from dictionary (implement this)
- supports_writes(): Feature detection method
Source code in src/horde_model_reference/backends/base.py
update_model_legacy_from_base_model
update_model_legacy_from_base_model(
category: MODEL_REFERENCE_CATEGORY,
model_name: str,
record_model: BaseModel,
*,
logical_user_id: str | None = None,
request_id: str | None = None,
) -> None
Update or create a model reference in legacy format from a pydantic BaseModel.
This is an optional method that legacy-write-capable backends can implement. Only available when canonical_format='LEGACY' in PRIMARY mode.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to update.
-
model_name(str) –The name of the model to update or create.
-
record_model(BaseModel) –The model record data as a pydantic BaseModel.
-
logical_user_id(str | None, default:None) –Immutable Horde user id for auditing contexts (optional).
-
request_id(str | None, default:None) –Optional tracing/idempotency identifier for audit correlation.
Raises:
-
NotImplementedError–If the backend does not support legacy write operations.
Source code in src/horde_model_reference/backends/base.py
warm_cache
Pre-populate cache with all categories for faster initial requests.
This is an optional method that backends with cache warming support can implement. Backends without cache warming should leave the default implementation.
Raises:
-
NotImplementedError–If the backend does not support cache warming.
Source code in src/horde_model_reference/backends/base.py
warm_cache_async
async
Asynchronously pre-populate cache with all categories for faster initial requests.
This is an optional method that backends with cache warming support can implement. Backends without cache warming should leave the default implementation.
Raises:
-
NotImplementedError–If the backend does not support async cache warming.
Source code in src/horde_model_reference/backends/base.py
health_check
Check the health of the backend's external dependencies.
This is an optional method that backends with health check support can implement. Backends without external dependencies should leave the default implementation.
Returns:
-
bool(bool) –True if healthy, False otherwise.
Raises:
-
NotImplementedError–If the backend does not support health checks.
Source code in src/horde_model_reference/backends/base.py
get_statistics
Get backend performance and usage statistics.
This is an optional method that backends with statistics support can implement. The structure of returned statistics is backend-specific.
Returns:
Raises:
-
NotImplementedError–If the backend does not support statistics.
Source code in src/horde_model_reference/backends/base.py
get_replicate_mode
Get the replication mode of this backend.
Returns:
-
ReplicateMode(ReplicateMode) –The replicate mode (PRIMARY or REPLICA).
_mark_category_fresh
Record that we hold a fresh cache entry for category.
Also updates mtime if a file path is provided by the subclass.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to mark as fresh.
Source code in src/horde_model_reference/backends/replica_backend_base.py
_invalidate_category_timestamp
Drop timestamp knowledge for category without adjusting payloads.
has_cached_data
Check if any data has been cached for this category.
This is a simple existence check that doesn't validate freshness. Use this for initial fetch detection: "Have we loaded this at least once?"
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to check.
Returns:
-
bool(bool) –True if data exists in cache (may be stale), False if never loaded.
Source code in src/horde_model_reference/backends/replica_backend_base.py
is_cache_valid
Check if cached data exists and is still valid for the given category.
This method performs comprehensive validation to determine if cached data can be used without refetching. It's primarily used internally by cache retrieval methods but can also be called directly for validation checks.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to validate.
Returns:
-
bool–True if cache exists and all validation checks pass, False otherwise.
Validation Steps
The method performs checks in the following order:
- Explicit Staleness: Returns False if category is in
_stale_categories - Cache Existence: Returns False if category has never been cached
- Timestamp Existence: Returns False if no timestamp recorded
- TTL Expiration: Checks if
cache_ttl_secondsexceeded (callsmark_stale()if expired) - File Modification: Compares current file mtime with cached mtime (calls
mark_stale()if changed) - Custom Validation: Calls
_additional_cache_validation()for subclass-specific checks
Side Effects
When staleness is detected (TTL expiration or mtime change), this method calls
mark_stale() to trigger invalidation callbacks and notify the manager.
Return Value Semantics
- Returns
Falsefor both "no data" and "stale data" cases - Use
has_cached_data()to distinguish between these cases - Use
needs_refresh()to check staleness without considering initial fetch
Note
This method is thread-safe and uses the internal _lock for synchronization.
Source code in src/horde_model_reference/backends/replica_backend_base.py
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 | |
should_fetch_data
Determine if data should be fetched (initial load OR refresh).
This is a convenience method that combines both initial fetch detection and refresh detection into a single check. Use this when you want to know "should I fetch data now?" regardless of whether it's an initial load or a refresh.
This is equivalent to: not is_cache_valid(category) or needs_refresh(category)
but handles the logic more efficiently.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to check.
Returns:
-
bool(bool) –True if data should be fetched (either initial or refresh), False if cached data is valid and fresh.
Source code in src/horde_model_reference/backends/replica_backend_base.py
_set_cache_ttl_seconds
Allow subclasses to tweak TTL after initialization if desired.
_additional_cache_validation
Perform additional cache validation.
Subclasses can override this to add custom validation logic beyond
TTL and mtime checks. This is called during is_cache_valid().
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to validate.
Returns:
-
bool(bool) –True if cache is valid, False to invalidate.
Source code in src/horde_model_reference/backends/replica_backend_base.py
_fetch_with_cache
_fetch_with_cache(
category: MODEL_REFERENCE_CATEGORY,
fetch_fn: Callable[[], dict[str, Any] | None],
*,
force_refresh: bool = False,
) -> dict[str, Any] | None
Implement standard fetch pattern with automatic caching.
This helper method implements the recommended fetch pattern: 1. Check cache if not forcing refresh 2. Return cached data if valid 3. Fetch data using provided function 4. Store in cache and return
Use this in your fetch_category() implementations to avoid boilerplate.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to fetch.
-
fetch_fn(Callable[[], dict[str, Any] | None]) –Callable that fetches the data (no args, returns dict or None).
-
force_refresh(bool, default:False) –If True, skip cache check and force fetch.
Returns:
Example
def fetch_category(self, category, *, force_refresh=False): return self._fetch_with_cache( category, lambda: self._fetch_from_source(category), force_refresh=force_refresh )
Source code in src/horde_model_reference/backends/replica_backend_base.py
_get_from_cache
Get data from cache if valid.
This is the primary method subclasses should use to retrieve cached data. It handles all validation logic internally, including initial fetch detection (returns None if data has never been loaded).
This method determines if an INITIAL fetch is needed by checking cache existence.
Use needs_refresh() to check if existing cached data should be RE-fetched.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to retrieve from cache.
Returns:
-
dict[str, Any] | None–dict[str, Any] | None: Cached data if valid, None if cache miss (initial fetch needed) or cache invalid (refresh needed).
Source code in src/horde_model_reference/backends/replica_backend_base.py
_store_in_cache
Store data in cache and mark category as fresh.
This is the primary method subclasses should use to store fetched data. It handles timestamp updates and mtime tracking internally.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to store.
-
data(dict[str, Any] | None) –The data to cache, or None if category has no data.
Source code in src/horde_model_reference/backends/replica_backend_base.py
_invalidate_cache
Invalidate cache for a category without deleting the data.
This marks the category as stale, forcing a refetch on next access.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to invalidate.
Source code in src/horde_model_reference/backends/replica_backend_base.py
_mark_legacy_category_fresh
Record that we hold a fresh legacy cache entry for category.
Also updates legacy file mtime if a path is provided by the subclass.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to mark as fresh.
Source code in src/horde_model_reference/backends/replica_backend_base.py
is_legacy_cache_valid
Return True if the legacy cache for category is considered fresh.
Performs validation checks for legacy format cache: 1. Staleness check (explicit invalidation) 2. Cache existence check (dict or string) 3. TTL expiration check 4. File mtime check (if legacy file path provided by subclass)
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to validate.
Returns:
-
bool(bool) –True if legacy cache is valid and can be used.
Source code in src/horde_model_reference/backends/replica_backend_base.py
_get_legacy_from_cache
_get_legacy_from_cache(
category: MODEL_REFERENCE_CATEGORY,
) -> tuple[dict[str, Any] | None, str | None]
Get legacy data from cache if valid.
Returns both dict and string representations of legacy JSON.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to retrieve from cache.
Returns:
-
tuple[dict[str, Any] | None, str | None]–tuple[dict | None, str | None]: (legacy_dict, legacy_string) or (None, None) if cache miss.
Source code in src/horde_model_reference/backends/replica_backend_base.py
_store_legacy_in_cache
_store_legacy_in_cache(
category: MODEL_REFERENCE_CATEGORY,
legacy_dict: dict[str, Any] | None,
legacy_string: str | None,
) -> None
Store legacy data in cache and mark category as fresh.
Stores both dict and string representations of legacy JSON.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to store.
-
legacy_dict(dict[str, Any] | None) –The legacy JSON as a dict, or None.
-
legacy_string(str | None) –The legacy JSON as a string, or None.
Source code in src/horde_model_reference/backends/replica_backend_base.py
_invalidate_legacy_cache
Invalidate legacy cache for a category without deleting the data.
This marks the category as stale, forcing a refetch on next access.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to invalidate.