File size: 197 Bytes
2541228
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
"""Compatibility wrapper for the required inference.py entrypoint."""
from __future__ import annotations

from inference import run_inference


if __name__ == "__main__":
    run_inference()