1
0
Fork 0
onnx-web/api/onnx_web/convert/client/base.py

17 lines
340 B
Python

from typing import Optional
from ..utils import ConversionContext
class BaseClient:
def download(
self,
conversion: ConversionContext,
name: str,
source: str,
format: Optional[str] = None,
dest: Optional[str] = None,
**kwargs,
) -> str:
raise NotImplementedError()