11 lines
No EOL
176 B
Python
11 lines
No EOL
176 B
Python
import typing
|
|
|
|
|
|
def load(model) -> None:
|
|
pass
|
|
|
|
def unload(model) -> None:
|
|
pass
|
|
|
|
async def infer(model, file) -> typing.AsyncIterator[bytes]:
|
|
yield await file.read() |