File size: 360 Bytes
6bff5d9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """Bulk re-run CatalogEnricher with the current prompt.
For when src/config/prompts/catalog_enricher.md changes and existing
catalog descriptions need to be regenerated across all users.
Usage:
uv run python scripts/enrich_all_sources.py [--user-id USER_ID]
"""
def main() -> None:
raise NotImplementedError
if __name__ == "__main__":
main()
|