def init()

in app/utils/helpers.py [0:0]


def init(output_dir: str) -> None:
    """Initialize the application by creating the output directory if it doesn't exist."""
    if not os.path.exists(output_dir):
        os.makedirs(output_dir)
        logger.info(f"📁 Created output directory: {output_dir}")