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

16 lines
322 B
Python
Raw Normal View History

from typing import Optional
2023-12-10 00:46:47 +00:00
from ..utils import ConversionContext
class BaseClient:
def download(
self,
conversion: ConversionContext,
name: str,
source: str,
2023-12-10 00:46:47 +00:00
format: Optional[str] = None,
dest: Optional[str] = None,
) -> str:
raise NotImplementedError()