model_reference_manager
Singleton manager for model reference lifecycle: backend selection, caching, and the public API.
__all__
module-attribute
PrefetchStrategy
Bases: StrEnum
Controls when and how the manager fetches model references.
Source code in src/horde_model_reference/model_reference_manager.py
LAZY
class-attribute
instance-attribute
Defer backend fetches until first access (legacy lazy_mode=True behavior).
SYNC
class-attribute
instance-attribute
Immediately fetch all categories on the calling thread during initialization.
DEFERRED
class-attribute
instance-attribute
Expose a handle the caller can trigger later (sync or async) without blocking init.
ASYNC
class-attribute
instance-attribute
Automatically schedule a background async warm-up when an event loop is available.
ModelReferenceManager
Singleton class for downloading and reading model reference files.
This class is responsible for managing the lifecycle of model reference files, including downloading, caching, and providing access to the model references.
Uses a pluggable backend architecture to support different data sources (GitHub, database, etc.).
Settings on initialization (base_path, backend, prefetch_strategy, etc) are only set on the first instantiation
(e.g. ModelReferenceManager(base_path=...)). Subsequent instantiations will return the same instance.
Retrieve all model references with get_all_model_references_or_none().
Source code in src/horde_model_reference/model_reference_manager.py
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 | |
backend
instance-attribute
The backend provider for model reference data.
_cached_records
instance-attribute
Cache of pydantic model records by category.
_deferred_prefetch_handle
class-attribute
instance-attribute
_async_prefetch_task
class-attribute
instance-attribute
_pending_queue_service
class-attribute
instance-attribute
_group_alias_store
class-attribute
instance-attribute
_group_family_store
class-attribute
instance-attribute
_group_schema_store
class-attribute
instance-attribute
prefetch_strategy
property
Return the prefetch strategy originally configured for this manager.
offline
property
Return whether this manager reads from local disk only (never downloads).
pending_queue_service
property
Return the pending queue service when queueing is enabled.
group_alias_store
property
Return the group alias store when in PRIMARY mode.
group_family_store
property
Return the related-group family store when in PRIMARY mode.
group_schema_store
property
Return the group schema store when in PRIMARY mode.
deferred_prefetch_handle
property
Handle that callers can use to trigger a deferred eager fetch.
is_warm
property
Return whether every category has been loaded into the in-memory cache.
This is a pure in-memory check (it does not consult the backend). Use it to
assert readiness after a warm-up (e.g. PrefetchStrategy.ASYNC or
:meth:ensure_ready_async) instead of relying on a log line. A category cached
as None (e.g. managed elsewhere or empty) still counts as loaded; False
means at least one category has never been fetched.
prefetch_pending
property
Return whether a deferred warm-up is exposed but has not yet made the cache warm.
True means a :class:DeferredPrefetchHandle is available and no async
prefetch task is running, yet the cache is not warm - so the caller must
trigger the handle (run_sync / run_async) to warm it. This makes the
PrefetchStrategy.ASYNC "no running event loop" degrade discoverable beyond
the logged warning.
provider_registry
property
Return the registry of third-party model providers owned by this manager.
_CATEGORY_TO_HORDE_TYPE
class-attribute
_CATEGORY_TO_HORDE_TYPE: dict[
MODEL_REFERENCE_CATEGORY, HordeModelType
] = {image_generation: "image", text_generation: "text"}
get_instance
classmethod
Get the singleton instance of ModelReferenceManager.
Returns:
-
ModelReferenceManager(ModelReferenceManager) –The singleton instance.
Raises:
-
RuntimeError–If the instance has not been created yet.
Source code in src/horde_model_reference/model_reference_manager.py
has_instance
classmethod
Check if the singleton instance has been created.
Returns:
-
bool(bool) –True if the instance exists, False otherwise.
Source code in src/horde_model_reference/model_reference_manager.py
reset
classmethod
Destroy the singleton instance so a fresh one can be created.
Intended for testing and development only. Production code should not call this - the singleton is designed to live for the process lifetime.
Source code in src/horde_model_reference/model_reference_manager.py
_create_backend
staticmethod
_create_backend(
base_path: str | Path,
replicate_mode: ReplicateMode,
audit_writer: AuditTrailWriter | None,
offline: bool = False,
) -> ModelReferenceBackend
Create the appropriate backend based on mode and settings.
Parameters:
-
base_path(str | Path) –Base path for model reference files.
-
replicate_mode(ReplicateMode) –The replication mode.
-
audit_writer(AuditTrailWriter | None) –Optional audit writer used by write-capable backends.
-
offline(bool, default:False) –If True, return a read-only local-disk backend that never downloads, regardless of replicate_mode. Used by subprocesses whose parent owns downloading.
Returns:
-
ModelReferenceBackend(ModelReferenceBackend) –The configured backend instance.
Source code in src/horde_model_reference/model_reference_manager.py
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 | |
__new__
__new__(
*,
backend: ModelReferenceBackend | None = None,
base_path: str
| Path = horde_model_reference_paths.base_path,
replicate_mode: ReplicateMode = horde_model_reference_settings.replicate_mode,
prefetch_strategy: PrefetchStrategy = PrefetchStrategy.LAZY,
offline: bool = horde_model_reference_settings.offline,
) -> ModelReferenceManager
Create a new instance of ModelReferenceManager.
Uses the singleton pattern to ensure only one instance exists to avoid multiple downloads and conversions. Subsequent instantiations will return the same instance, and an attempt to re-instantiate with different settings will raise an exception.
Parameters:
-
backend(ModelReferenceBackend | None, default:None) –The backend to use for fetching model references. If None, automatically selects the appropriate backend based on replicate_mode and settings: - PRIMARY mode: FileSystemBackend (optionally wrapped with RedisBackend if configured) - REPLICA mode: HTTPBackend (if PRIMARY API URL configured) or GitHubBackend (fallback) Defaults to None.
-
base_path(str | Path, default:base_path) –The base path to use for storing model reference files. Only used if backend is None. Defaults to horde_model_reference_paths.base_path.
-
replicate_mode(ReplicateMode, default:replicate_mode) –The replicate mode to use. - PRIMARY: Local filesystem is source of truth - REPLICA: Fetch from PRIMARY API or GitHub Only used if backend is None. Defaults to horde_model_reference_settings.replicate_mode.
-
prefetch_strategy(PrefetchStrategy, default:LAZY) –Controls whether initial cache warm-up is skipped (LAZY/NONE), performed synchronously, deferred, or executed via background async task. Defaults to PrefetchStrategy.LAZY.
-
offline(bool, default:offline) –If True, read references from local disk only via LocalReadOnlyBackend and never download (no GitHub / PRIMARY API / Redis), regardless of replicate_mode. Intended for subprocesses whose parent already downloaded the reference files. Defaults to horde_model_reference_settings.offline.
Returns:
-
ModelReferenceManager(ModelReferenceManager) –The singleton instance of ModelReferenceManager.
Raises:
-
RuntimeError–If an attempt is made to re-instantiate with different settings.
Source code in src/horde_model_reference/model_reference_manager.py
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 | |
_apply_prefetch_strategy
Apply the configured prefetch strategy once the backend is available.
Source code in src/horde_model_reference/model_reference_manager.py
_on_backend_invalidated
On callback invoked by backend when a category's cache is invalidated.
This ensures the pydantic model cache stays in sync with backend invalidations.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category that was invalidated.
Source code in src/horde_model_reference/model_reference_manager.py
_invalidate_cache
Invalidate the cached pydantic model references.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY | None, default:None) –If provided, only invalidate the specific category. If None, invalidate the entire cache.
Source code in src/horde_model_reference/model_reference_manager.py
invalidate_category_cache
Explicitly invalidate cached data for a category.
Intended for use by the apply workflow after a successful backend write, so stale data is never served regardless of backend callback timing.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category whose cache should be dropped.
Source code in src/horde_model_reference/model_reference_manager.py
_fetch_from_backend_if_needed
_fetch_from_backend_if_needed(
force_refresh: bool,
) -> dict[MODEL_REFERENCE_CATEGORY, dict[str, Any] | None]
Fetch references from backend if needed.
Parameters:
-
force_refresh(bool) –Whether to force refresh all categories.
Source code in src/horde_model_reference/model_reference_manager.py
_fetch_from_backend_if_needed_async
async
_fetch_from_backend_if_needed_async(
force_refresh: bool, httpx_client: AsyncClient | None
) -> dict[MODEL_REFERENCE_CATEGORY, dict[str, Any] | None]
Asynchronously fetch references from backend if needed.
Parameters:
-
force_refresh(bool) –Whether to force refresh all categories.
-
httpx_client(AsyncClient | None) –An optional httpx async client to use.
Source code in src/horde_model_reference/model_reference_manager.py
_build_pending_queue_service
staticmethod
_build_pending_queue_service(
*, audit_writer: AuditTrailWriter | None
) -> PendingQueueService | None
Create the pending queue service when enabled.
Source code in src/horde_model_reference/model_reference_manager.py
create_deferred_prefetch_handle
Create a deferred prefetch handle tied to this manager.
Parameters:
-
force_refresh(bool, default:False) –Whether the handle should bypass backend caches.
Returns:
-
DeferredPrefetchHandle(DeferredPrefetchHandle) –Handle that can execute the warm-up later.
Source code in src/horde_model_reference/model_reference_manager.py
_schedule_async_prefetch
Schedule an async cache warm-up when an event loop is available.
Source code in src/horde_model_reference/model_reference_manager.py
warm_cache_async
async
warm_cache_async(
*,
force_refresh: bool = False,
httpx_client: AsyncClient | None = None,
) -> None
Warm cached pydantic records using backend async APIs.
Parameters:
-
force_refresh(bool, default:False) –Whether to bypass backend caches while warming.
-
httpx_client(AsyncClient | None, default:None) –Optional shared async client for HTTP backends.
Source code in src/horde_model_reference/model_reference_manager.py
ensure_ready
Ensure cached references exist synchronously (sync mirror of :meth:ensure_ready_async).
Useful for warming the cache up-front from synchronous code - or for completing
a deferred PrefetchStrategy.ASYNC warm-up that degraded because no event loop
was running at construction. After this returns, :attr:is_warm is True.
Parameters:
-
overwrite_existing(bool, default:False) –Whether to bypass backend caches while warming.
Source code in src/horde_model_reference/model_reference_manager.py
ensure_ready_async
async
ensure_ready_async(
*,
overwrite_existing: bool = False,
httpx_client: AsyncClient | None = None,
) -> None
Ensure cached references exist by delegating to warm_cache_async.
Parameters:
-
overwrite_existing(bool, default:False) –Whether to bypass backend caches while warming.
-
httpx_client(AsyncClient | None, default:None) –Optional shared async client for HTTP backends.
Source code in src/horde_model_reference/model_reference_manager.py
supports_metadata
Return whether the active backend tracks per-category metadata.
Metadata (timestamps, operation counts) is typically only available in PRIMARY
mode; REPLICA backends return False. Check this before relying on
:meth:get_metadata / :meth:last_updated returning a value.
Source code in src/horde_model_reference/model_reference_manager.py
get_metadata
get_metadata(
category: MODEL_REFERENCE_CATEGORY,
*,
raise_if_unsupported: bool = False,
) -> CategoryMetadata | None
Return per-category metadata, or None when the backend cannot provide it.
A first-class manager accessor so library consumers do not need to reach into
manager.backend and contend with backend-varying supports_metadata().
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to fetch metadata for.
-
raise_if_unsupported(bool, default:False) –When
True, raiseNotImplementedErrorinstead of returningNoneif the backend does not support metadata.
Returns:
-
CategoryMetadata | None–The category metadata, or
Nonewhen unsupported (and not raising).
Source code in src/horde_model_reference/model_reference_manager.py
get_metadata_async
async
get_metadata_async(
category: MODEL_REFERENCE_CATEGORY,
*,
raise_if_unsupported: bool = False,
) -> CategoryMetadata | None
Async counterpart to :meth:get_metadata.
Source code in src/horde_model_reference/model_reference_manager.py
last_updated
Return the unix timestamp of the category's last update, or None.
Convenience over :meth:get_metadata for cheap change-detection polling by
library consumers. Returns None when the backend does not track metadata.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to inspect.
Returns:
-
int | None–The
last_updatedunix timestamp, orNonewhen unavailable.
Source code in src/horde_model_reference/model_reference_manager.py
_file_json_dict_to_model_reference
staticmethod
_file_json_dict_to_model_reference(
category: MODEL_REFERENCE_CATEGORY,
file_json_dict: dict[str, Any] | None,
safe_mode: bool = False,
) -> dict[str, GenericModelRecord] | None
Return a model reference object from a JSON dictionary, or None if conversion failed.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The target model reference category to convert.
-
file_json_dict(dict[str, Any] | None) –The dict object representing the model reference.
-
safe_mode(bool, default:False) –Whether to raise exceptions on failure. If False, exceptions are caught and None is returned. Defaults to False.
Returns:
-
dict[str, GenericModelRecord] | None–dict[str, GenericModelRecord] | None: The dict representing the model reference, or None if conversion failed.
Source code in src/horde_model_reference/model_reference_manager.py
model_reference_to_json_dict
staticmethod
model_reference_to_json_dict(
model_reference: dict[str, GenericModelRecord],
safe_mode: bool = False,
) -> dict[str, Any] | None
Return a JSON dictionary from a model reference object, or None if conversion failed.
Parameters:
-
model_reference(dict[str, GenericModelRecord]) –The model reference object.
-
safe_mode(bool, default:False) –Whether to raise exceptions on failure. If False, exceptions are caught and None is returned. Use
model_reference_to_json_dict_safe()for the better type hinting if you intend to use this. Defaults to False.
Returns:
-
dict[str, Any] | None–dict | None: The dict representing the model reference, or None if conversion failed.
Source code in src/horde_model_reference/model_reference_manager.py
model_reference_to_json_dict_safe
staticmethod
model_reference_to_json_dict_safe(
model_reference: dict[str, GenericModelRecord],
) -> dict[str, Any]
Return a JSON dictionary from a model reference object.
Raises an exception if conversion fails.
Parameters:
-
model_reference(dict[str, GenericModelRecord]) –The model reference object.
Returns:
Source code in src/horde_model_reference/model_reference_manager.py
_get_all_cached_model_references
_get_all_cached_model_references(
safe_mode: bool = False,
) -> dict[
MODEL_REFERENCE_CATEGORY,
dict[str, GenericModelRecord] | None,
]
Get all cached pydantic model references.
Returns:
-
dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord] | None]–dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord] | None]: A mapping of model reference categories to their corresponding pydantic model objects.
Source code in src/horde_model_reference/model_reference_manager.py
_evaluate_cache_state
_evaluate_cache_state(
*, overwrite_existing: bool, safe_mode: bool
) -> tuple[
bool,
dict[
MODEL_REFERENCE_CATEGORY,
dict[str, GenericModelRecord] | None,
],
list[MODEL_REFERENCE_CATEGORY],
]
Return whether cached data can be reused plus categories needing refresh.
Source code in src/horde_model_reference/model_reference_manager.py
_load_categories_from_payload
_load_categories_from_payload(
*,
categories_to_load: Iterable[MODEL_REFERENCE_CATEGORY],
payload: dict[
MODEL_REFERENCE_CATEGORY, dict[str, Any] | None
]
| None,
overwrite_existing: bool,
safe_mode: bool,
) -> None
Convert backend payload into cached pydantic models for selected categories.
Source code in src/horde_model_reference/model_reference_manager.py
get_all_model_references_or_none
get_all_model_references_or_none(
overwrite_existing: bool = False,
*,
safe_mode: bool = False,
) -> dict[
MODEL_REFERENCE_CATEGORY,
dict[str, GenericModelRecord] | None,
]
Return a mapping of all model reference categories to their corresponding model reference objects.
Note that values may be None if the model reference file could not be found or parsed.
Parameters:
-
overwrite_existing(bool, default:False) –Whether to force a redownload of all model reference files. Defaults to False.
-
safe_mode(bool, default:False) –Whether to raise exceptions on failure. If False, exceptions are caught and None is returned for that category. Defaults to False. Use
get_all_model_references()for the better type hinting if you intend to use this.
Returns:
-
dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord] | None]–dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord] | None]: A mapping of model reference categories to their corresponding model reference objects.
Source code in src/horde_model_reference/model_reference_manager.py
_build_safe_reference_view
_build_safe_reference_view(
all_references: dict[
MODEL_REFERENCE_CATEGORY,
dict[str, GenericModelRecord] | None,
],
) -> dict[
MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord]
]
Convert a possibly sparse reference view into a safe mapping with logging.
Parameters:
-
all_references(dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord] | None]) –Mapping of categories to model reference dicts or None.
Returns:
-
dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord]]–dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord]]: Mapping where
-
dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord]]–missing categories map to empty dicts.
Source code in src/horde_model_reference/model_reference_manager.py
get_all_model_references
get_all_model_references(
overwrite_existing: bool = False,
) -> dict[
MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord]
]
Return a mapping of all model reference categories to their corresponding model reference objects.
If a model reference file could not be found or parsed, an exception is raised. If you want to allow
missing model references, use get_all_model_references_or_none() instead.
Parameters:
-
overwrite_existing(bool, default:False) –Whether to force a redownload of all model reference files. Defaults to False.
Returns:
-
dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord]]–dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord]]: A mapping of model reference categories to their corresponding model reference objects.
Source code in src/horde_model_reference/model_reference_manager.py
get_all_model_references_or_none_async
async
get_all_model_references_or_none_async(
overwrite_existing: bool = False,
*,
safe_mode: bool = False,
httpx_client: AsyncClient | None = None,
) -> dict[
MODEL_REFERENCE_CATEGORY,
dict[str, GenericModelRecord] | None,
]
Return model references asynchronously without enforcing presence.
Parameters:
-
overwrite_existing(bool, default:False) –Whether to force backend refresh.
-
safe_mode(bool, default:False) –Whether to propagate conversion errors.
-
httpx_client(AsyncClient | None, default:None) –Optional shared async client for HTTP backends.
Returns:
-
dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord] | None]–dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord] | None]: Possibly
-
dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord] | None]–sparse mapping keyed by category.
Source code in src/horde_model_reference/model_reference_manager.py
get_all_model_references_async
async
get_all_model_references_async(
overwrite_existing: bool = False,
*,
httpx_client: AsyncClient | None = None,
) -> dict[
MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord]
]
Return all model references asynchronously, raising on missing categories.
Parameters:
-
overwrite_existing(bool, default:False) –Whether to force backend refresh.
-
httpx_client(AsyncClient | None, default:None) –Optional shared async client for HTTP backends.
Returns:
-
dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord]]–dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord]]: Mapping with
-
dict[MODEL_REFERENCE_CATEGORY, dict[str, GenericModelRecord]]–empty dicts substituted for missing categories.
Source code in src/horde_model_reference/model_reference_manager.py
get_model_reference_or_none
get_model_reference_or_none(
category: MODEL_REFERENCE_CATEGORY,
overwrite_existing: bool = False,
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> dict[str, GenericModelRecord] | None
Return the model reference object for a specific category.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to retrieve.
-
overwrite_existing(bool, default:False) –Whether to force a redownload. Defaults to False.
-
source(SourceSelector, default:HORDE_SOURCE_ID) –Which source(s) to read from. Defaults to canonical horde data (:data:
~horde_model_reference.source_consts.HORDE_SOURCE_ID). Pass"any"to merge all registered providers, or a provider id / sequence of ids to select specific third-party sources. On name collisions the canonical (or earlier-listed) source wins.
Returns:
-
dict[str, GenericModelRecord] | None–dict[str, GenericModelRecord] | None: The model reference object for the category, or None if not found.
Source code in src/horde_model_reference/model_reference_manager.py
get_model_reference_or_none_async
async
get_model_reference_or_none_async(
category: MODEL_REFERENCE_CATEGORY,
overwrite_existing: bool = False,
*,
httpx_client: AsyncClient | None = None,
source: SourceSelector = HORDE_SOURCE_ID,
) -> dict[str, GenericModelRecord] | None
Return a single category's references asynchronously without strict enforcement.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –Target category to load.
-
overwrite_existing(bool, default:False) –Whether to force backend refresh.
-
httpx_client(AsyncClient | None, default:None) –Optional shared async client for HTTP backends.
-
source(SourceSelector, default:HORDE_SOURCE_ID) –Which source(s) to read from. See :meth:
get_model_reference_or_none.
Returns:
-
dict[str, GenericModelRecord] | None–dict[str, GenericModelRecord] | None: Mapping of model names or None.
Source code in src/horde_model_reference/model_reference_manager.py
get_model_reference
get_model_reference(
category: Literal[audio_generation],
overwrite_existing: bool = False,
) -> dict[str, AudioGenerationModelRecord]
get_model_reference(
category: Literal[blip],
overwrite_existing: bool = False,
) -> dict[str, BlipModelRecord]
get_model_reference(
category: Literal[clip],
overwrite_existing: bool = False,
) -> dict[str, ClipModelRecord]
get_model_reference(
category: Literal[codeformer],
overwrite_existing: bool = False,
) -> dict[str, CodeformerModelRecord]
get_model_reference(
category: Literal[controlnet],
overwrite_existing: bool = False,
) -> dict[str, ControlNetModelRecord]
get_model_reference(
category: Literal[image_generation],
overwrite_existing: bool = False,
) -> dict[str, ImageGenerationModelRecord]
get_model_reference(
category: MODEL_REFERENCE_CATEGORY = MODEL_REFERENCE_CATEGORY.image_generation,
overwrite_existing: bool = False,
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> Mapping[str, GenericModelRecord]
Return the model reference object for a specific category.
Raises an exception if the model reference could not be found or parsed.
If you want to allow missing model references, use get_model_reference_or_none() instead.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY, default:image_generation) –The category to retrieve.
-
overwrite_existing(bool, default:False) –Whether to force a redownload. Defaults to False.
-
source(SourceSelector, default:HORDE_SOURCE_ID) –Which source(s) to read from. See :meth:
get_model_reference_or_none.
Returns:
-
Mapping[str, GenericModelRecord]–Mapping[str, GenericModelRecord]: The model reference object for the category.
Source code in src/horde_model_reference/model_reference_manager.py
get_model_reference_async
async
get_model_reference_async(
category: MODEL_REFERENCE_CATEGORY,
overwrite_existing: bool = False,
*,
httpx_client: AsyncClient | None = None,
source: SourceSelector = HORDE_SOURCE_ID,
) -> dict[str, GenericModelRecord]
Return a single category's references asynchronously, raising if missing.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –Target category to load.
-
overwrite_existing(bool, default:False) –Whether to force backend refresh.
-
httpx_client(AsyncClient | None, default:None) –Optional shared async client for HTTP backends.
-
source(SourceSelector, default:HORDE_SOURCE_ID) –Which source(s) to read from. See :meth:
get_model_reference_or_none.
Returns:
-
dict[str, GenericModelRecord]–dict[str, GenericModelRecord]: Mapping of model names for the category.
Raises:
-
RuntimeError–If the category is missing or could not be parsed.
Source code in src/horde_model_reference/model_reference_manager.py
get_model_or_none
get_model_or_none(
category: MODEL_REFERENCE_CATEGORY,
model_name: str,
overwrite_existing: bool = False,
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> GenericModelRecord | None
Return a specific model from a category.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to retrieve.
-
model_name(str) –The name of the model within the category.
-
overwrite_existing(bool, default:False) –Whether to force a redownload. Defaults to False.
-
source(SourceSelector, default:HORDE_SOURCE_ID) –Which source(s) to read from. See :meth:
get_model_reference_or_none.
Returns:
-
GenericModelRecord | None–GenericModelRecord | None: The model record, or None if not found.
Source code in src/horde_model_reference/model_reference_manager.py
get_model
get_model(
category: MODEL_REFERENCE_CATEGORY,
model_name: str,
overwrite_existing: bool = False,
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> GenericModelRecord
Return a specific model from a category.
Raises an exception if the model could not be found or parsed.
If you want to allow missing models, use get_model_or_none() instead.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to retrieve.
-
model_name(str) –The name of the model within the category.
-
overwrite_existing(bool, default:False) –Whether to force a redownload. Defaults to False.
-
source(SourceSelector, default:HORDE_SOURCE_ID) –Which source(s) to read from. See :meth:
get_model_reference_or_none.
Returns:
-
GenericModelRecord(GenericModelRecord) –The model record.
Source code in src/horde_model_reference/model_reference_manager.py
get_raw_model_reference_json
get_raw_model_reference_json(
category: MODEL_REFERENCE_CATEGORY,
overwrite_existing: bool = False,
) -> dict[str, Any] | None
Return the raw JSON dict for a specific category without pydantic validation.
This method delegates to the backend to fetch the raw JSON data directly, avoiding the overhead of creating pydantic models. Ideal for API endpoints that need fast JSON responses.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to retrieve.
-
overwrite_existing(bool, default:False) –Whether to force a redownload. Defaults to False.
Returns:
-
dict[str, Any] | None–dict[str, Any] | None: The raw JSON dict for the category, or None if not found.
Source code in src/horde_model_reference/model_reference_manager.py
get_raw_model_json
get_raw_model_json(
category: MODEL_REFERENCE_CATEGORY,
model_name: str,
overwrite_existing: bool = False,
) -> dict[str, Any] | None
Return the raw JSON dict for a specific model in a category without pydantic validation.
This method delegates to the backend to fetch the raw JSON data directly, avoiding the overhead of creating pydantic models. Ideal for API endpoints that need fast JSON responses.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –The category to retrieve.
-
model_name(str) –The name of the model within the category.
-
overwrite_existing(bool, default:False) –Whether to force a redownload. Defaults to False.
Returns:
-
dict[str, Any] | None–dict[str, Any] | None: The raw JSON dict for the model, or None if not found.
Source code in src/horde_model_reference/model_reference_manager.py
_get_typed_models
_get_typed_models(
category: MODEL_REFERENCE_CATEGORY,
*,
record_type: type[TModelRecord],
) -> dict[str, TModelRecord]
Return a typed mapping for the requested category.
Source code in src/horde_model_reference/model_reference_manager.py
register_provider
Register a third-party :class:ModelProvider for use in reads/queries.
Parameters:
-
provider(ModelProvider) –The provider to register.
-
replace(bool, default:False) –If
True, replace an existing provider with the same source id.
Raises:
-
ValueError–If the source id is reserved/empty, or already registered and replace is
False.
Source code in src/horde_model_reference/model_reference_manager.py
unregister_provider
Remove the provider registered under source_id.
Returns:
-
bool(bool) –Trueif a provider was removed,Falseotherwise.
Source code in src/horde_model_reference/model_reference_manager.py
list_providers
Return the source ids of all registered providers (registration order).
get_provider
Return the provider registered under source_id, or None.
_resolve_ordered_source_ids
Return an ordered, de-duplicated list of concrete source ids to read.
Unlike a canonical-first split, this preserves each selector's position so
callers control collision precedence (earlier sources win during the
setdefault merge). The canonical source (:data:HORDE_SOURCE_ID) is treated
as just another id and keeps wherever it appears in the selector, so
["pending", "horde"] lets the "pending" provider override canonical while
the default ["horde"] is canonical-only.
ANY_SOURCE expands to the canonical source first, then every registered
provider in registration order, preserving the historical "canonical wins"
default for "any". Explicitly named, unregistered provider ids raise
ValueError; ids discovered via ANY_SOURCE are simply the live set and
never raise.
Source code in src/horde_model_reference/model_reference_manager.py
_is_canonical_only
staticmethod
Return whether source selects canonical data exclusively (the default).
_gather_sourced_records
_gather_sourced_records(
category: MODEL_REFERENCE_CATEGORY,
source: SourceSelector,
*,
overwrite_existing: bool = False,
) -> tuple[
list[GenericModelRecord],
list[str],
dict[str, SourceOutcome],
]
Collect records and aligned source ids for category from the selected sources.
Records are returned in selector order (the canonical source is read at its
position in the selector rather than always first), so the first source to
provide a given name wins during the setdefault merge. Duplicates are
intentionally retained so callers/queries can detect collisions. A provider
raising or returning None is logged and skipped (error isolation).
The third return value maps every selected source id to its outcome
("ok" / "empty" / "error") so callers can distinguish a source
that failed from one that simply had nothing for this category.
Source code in src/horde_model_reference/model_reference_manager.py
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 | |
_merge_sourced_reference
_merge_sourced_reference(
category: MODEL_REFERENCE_CATEGORY,
source: SourceSelector,
*,
overwrite_existing: bool = False,
) -> dict[str, GenericModelRecord] | None
Return a canonical-wins merged name -> record mapping across source.
Returns None only when no source produced any records for the category,
preserving the *_or_none contract.
Source code in src/horde_model_reference/model_reference_manager.py
_gather_sourced_records_async
async
_gather_sourced_records_async(
category: MODEL_REFERENCE_CATEGORY,
source: SourceSelector,
*,
overwrite_existing: bool = False,
httpx_client: AsyncClient | None = None,
) -> tuple[
list[GenericModelRecord],
list[str],
dict[str, SourceOutcome],
]
Async counterpart to :meth:_gather_sourced_records using provider async fetch.
Source code in src/horde_model_reference/model_reference_manager.py
_merge_sourced_reference_async
async
_merge_sourced_reference_async(
category: MODEL_REFERENCE_CATEGORY,
source: SourceSelector,
*,
overwrite_existing: bool = False,
httpx_client: AsyncClient | None = None,
) -> dict[str, GenericModelRecord] | None
Async counterpart to :meth:_merge_sourced_reference.
Source code in src/horde_model_reference/model_reference_manager.py
query
query(
category: Literal["image_generation", image_generation],
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> ImageGenerationQuery
query(
category: Literal["text_generation", text_generation],
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> TextModelQuery
query(
category: Literal["controlnet", controlnet],
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> ControlNetQuery
query(
category: Literal["blip", blip],
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> ModelQuery[BlipModelRecord, GenericFieldName]
query(
category: Literal["clip", clip],
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> ModelQuery[ClipModelRecord, GenericFieldName]
query(
category: Literal["codeformer", codeformer],
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> ModelQuery[CodeformerModelRecord, GenericFieldName]
query(
category: Literal["esrgan", esrgan],
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> ModelQuery[EsrganModelRecord, GenericFieldName]
query(
category: Literal["gfpgan", gfpgan],
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> ModelQuery[GfpganModelRecord, GenericFieldName]
query(
category: Literal["safety_checker", safety_checker],
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> ModelQuery[SafetyCheckerModelRecord, GenericFieldName]
query(
category: Literal["audio_generation", audio_generation],
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> ModelQuery[
AudioGenerationModelRecord, GenericFieldName
]
query(
category: Literal["video_generation", video_generation],
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> ModelQuery[
VideoGenerationModelRecord, GenericFieldName
]
query(
category: MODEL_REFERENCE_CATEGORY | str,
*,
source: SourceSelector = HORDE_SOURCE_ID,
) -> (
ImageGenerationQuery
| TextModelQuery
| ControlNetQuery
| ModelQuery[
GenericModelRecord,
GenericFieldName
| ImageGenFieldName
| TextGenFieldName
| ControlNetFieldName,
]
)
Return the query builder for a single category.
This is the single entry point for filtering, sorting, and aggregating model
records. The returned builder is typed to the category's record class; the
three domain categories return enriched subclasses with extra helpers
(ImageGenerationQuery, TextModelQuery, ControlNetQuery).
Parameters:
-
category(MODEL_REFERENCE_CATEGORY | str) –The model reference category to query, as the :class:
~horde_model_reference.meta_consts.MODEL_REFERENCE_CATEGORYmember (recommended, for precise return typing) or its string value. -
source(SourceSelector, default:HORDE_SOURCE_ID) –Which source(s) to include. Defaults to canonical horde data (:data:
~horde_model_reference.source_consts.HORDE_SOURCE_ID). Pass"any"to merge all registered providers, or a provider id / ordered sequence of ids. When more than one source is selected, results are de-duplicated by name (canonical / earlier-listed source wins); use :meth:~horde_model_reference.query.ModelQuery.duplicate_namesto detect collisions and :meth:~horde_model_reference.query.ModelQuery.where_sourceto filter by provenance.
Returns:
-
ImageGenerationQuery | TextModelQuery | ControlNetQuery | ModelQuery[GenericModelRecord, GenericFieldName | ImageGenFieldName | TextGenFieldName | ControlNetFieldName]–A
ModelQuery(or typed subclass) ready for chaining filters.
Source code in src/horde_model_reference/model_reference_manager.py
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 | |
_gather_typed_sourced
_gather_typed_sourced(
category: MODEL_REFERENCE_CATEGORY,
*,
record_type: type[TModelRecord],
source: SourceSelector,
) -> tuple[
list[TModelRecord], list[str], dict[str, SourceOutcome]
]
Gather records (and aligned sources) for category, validating their type.
Raises:
-
RuntimeError–If any source supplies a record that is not an instance of record_type (or a subclass of it).
Source code in src/horde_model_reference/model_reference_manager.py
query_all
query_all() -> ModelQuery[
GenericModelRecord,
GenericFieldName
| ImageGenFieldName
| TextGenFieldName
| ControlNetFieldName,
]
Return a query builder spanning all categories.
Returns:
-
ModelQuery[GenericModelRecord, GenericFieldName | ImageGenFieldName | TextGenFieldName | ControlNetFieldName]–A
ModelQuery[GenericModelRecord]over every cached record.
Source code in src/horde_model_reference/model_reference_manager.py
get_popular_models
async
get_popular_models(
category: MODEL_REFERENCE_CATEGORY,
*,
limit: int = 10,
sort_by: Literal[
"worker_count",
"usage_day",
"usage_month",
"usage_total",
] = "worker_count",
include_workers: bool = False,
) -> list[PopularModelResult]
Return models ranked by live Horde popularity metrics.
Requires the Horde public API to be reachable. Only image_generation
and text_generation categories have Horde API data; other categories
return an empty list.
Parameters:
-
category(MODEL_REFERENCE_CATEGORY) –Model category to rank.
-
limit(int, default:10) –Maximum number of results.
-
sort_by(Literal['worker_count', 'usage_day', 'usage_month', 'usage_total'], default:'worker_count') –Metric to rank by.
-
include_workers(bool, default:False) –Whether to fetch per-worker details (slower).
Returns:
-
list[PopularModelResult]–A list of
PopularModelResultsorted by the chosen metric.
Source code in src/horde_model_reference/model_reference_manager.py
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 | |
DeferredPrefetchHandle
Bases: Awaitable[None]
Encapsulates a deferred eager fetch for a ModelReferenceManager.
Source code in src/horde_model_reference/model_reference_manager.py
force_refresh
property
Whether this handle forces a backend refresh when executed.
__init__
Store the manager reference and desired refresh semantics.
Source code in src/horde_model_reference/model_reference_manager.py
run_sync
Execute the deferred warm-up synchronously on the current thread.
Warms the manager's converted-record cache (not just the backend layer) so the
next read is served without a backend fetch or pydantic conversion - leaving
:attr:ModelReferenceManager.is_warm True afterwards.
Source code in src/horde_model_reference/model_reference_manager.py
run_async
async
Execute the deferred warm-up asynchronously, warming the manager's record cache.