mirror of
https://git.isriupjv.fr/ISRI/ai-server
synced 2025-04-24 18:18:11 +02:00
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() |