Files
annotations/Azaion.AI/api_client.pxd
T
Alex Bezdieniezhnykh e21dd7e70f add pxd headers for correct work
fixes definitions
can run until API call
2025-01-16 17:56:58 +02:00

11 lines
356 B
Cython

from processor_command cimport FileCommand
cdef class ApiClient:
cdef str email, password, token, folder, token_file, api_url
cdef get_encryption_key(self, str hardware_hash)
cdef login(self, str email, str password, bint persist_token=*)
cdef bytes load_file(self, str filename, bint persist_token=*)
cdef bytes load_ai_model(self)