- """Project-wide constants and default locations."""
- from __future__ import annotations
- from pathlib import Path
- APP_DIR = Path(__file__).resolve().parent
- ROOT_DIR = APP_DIR.parent
- CONFIG_DIR = ROOT_DIR / "config"
- PROMPT_DIR = ROOT_DIR / "prompts"
- DATA_DIR = ROOT_DIR / "data"
- LOG_ROOT = APP_DIR / "log"
- # Business constants
- MAX_INPUT_CARD_IDS = 3
|