Files
annotations/Azaion.Inference/loader_client.pxd
T
Alex Bezdieniezhnykh dcd0fabc1f add loader and versioning
2025-06-10 08:53:57 +03:00

18 lines
450 B
Cython

from remote_command cimport RemoteCommand
cdef class LoadResult:
cdef public str err
cdef public bytes data
cdef class LoaderClient:
cdef object _loader_context
cdef object _socket
cdef RemoteCommand _send_receive_command(self, RemoteCommand command)
cdef load_big_small_resource(self, str filename, str directory)
cdef upload_big_small_resource(self, bytes content, str filename, str directory)
cdef stop(self)