OCRExecutor.py 243 B

1234567
  1. from agent.executor.base import ExecutorBase
  2. class OCRExectuor(ExecutorBase):
  3. def __init__(self, **kwargs):
  4. self._init(**kwargs)
  5. self._args = kwargs.get("args", [])
  6. self._script_path = kwargs.get("script_path", "")