from pathlib import Path


APP_ID = "migration_evidence_builder"
SUPPORTED_CATEGORIES = [
    "identity",
    "education",
    "employment",
    "translations",
    "generated",
]

DOCUMENT_SUBFOLDERS = ["original", "extracted", "summary", "meta"]

PROJECT_ROOT = Path(__file__).resolve().parents[2]
DEFAULT_STORAGE_ROOT = PROJECT_ROOT / "storage" / "applicants"

# If extraction confidence reaches this threshold, manual confirmation is optional.
AUTO_CONFIRM_THRESHOLD = 0.90
