feat(immich): write-back (upsert_tag, tag_assets) + _pipeline tag conventions

This commit is contained in:
2026-06-27 17:16:07 +02:00
parent c36d93e3c7
commit da5b1de2a2
5 changed files with 60 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
ROOT = "_pipeline"
PROCESSED = f"{ROOT}/processed"
NON_TRIP = f"{ROOT}/non-trip"
def ai_rating(n: int) -> str:
return f"{ROOT}/ai-rating/{n}"
def is_pipeline_tag(name: str) -> bool:
return name == ROOT or name.startswith(ROOT + "/")