mirror of
https://git.isriupjv.fr/ISRI/ai-server
synced 2025-04-24 10:08:11 +02:00
12 lines
208 B
Python
12 lines
208 B
Python
import json
|
|
import typing
|
|
|
|
|
|
def load(model) -> None:
|
|
pass
|
|
|
|
def unload(model) -> None:
|
|
pass
|
|
|
|
def infer(model, file) -> typing.Iterator[bytes]:
|
|
yield json.dumps({"hello": "world!"}).encode("utf-8")
|