12 lines
245 B
Python
12 lines
245 B
Python
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 + "/")
|