Files
2026-07-13 13:39:38 +08:00

8 lines
181 B
Python

from __future__ import annotations
from typing import Protocol
class InferenceExecutor(Protocol):
async def do_inference(self, method: str, data: bytes) -> bytes | None: ...