Files
annotations/Azaion.AI/remote_command.pxd
T
Alex Bezdieniezhnykh 82b3b526a7 rewrite to zmq push and pull patterns.
file load works, suite can start up
2025-01-23 14:37:13 +02:00

12 lines
210 B
Cython

cdef enum CommandType:
INFERENCE = 1
LOAD = 2
cdef class RemoteCommand:
cdef CommandType command_type
cdef str filename
cdef bytes data
@staticmethod
cdef from_msgpack(bytes data)