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