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)