submaster/whisper_project/run_full_pipeline.py

14 lines
311 B
Python

#!/usr/bin/env python3
"""Compatibility shim: run_full_pipeline
This module forwards to `whisper_project.main:main` to preserve the
historical CLI entrypoint name expected by tests and users.
"""
from __future__ import annotations
from whisper_project.main import main
if __name__ == "__main__":
main()