mastefan's picture
Upload folder using huggingface_hub
e82864c verified
raw
history blame
190 Bytes
import sys
from pathlib import Path
ROOT = Path(__file__).resolve().parent
SRC = ROOT / "src"
sys.path.append(str(SRC))
from app.main_app import main
if __name__ == "__main__":
main()