d766458
1
2
3
4
5
6
7
from typing import Any, Protocol, runtime_checkable @runtime_checkable class ProtenixAPI(Protocol): def predict(self, input_json_path: str, **kw: Any): ...