separate load functionality from inference client to loader client. Call loader client from inference to get the model.

remove dummy dlls, remove resource loader from c#.

TODO: Load dlls separately by Loader UI and loader client

WIP
This commit is contained in:
Alex Bezdieniezhnykh
2025-06-06 20:04:03 +03:00
parent 500db31142
commit 7750025631
54 changed files with 353 additions and 571 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
from remote_command cimport RemoteCommand
from annotation cimport Annotation, Detection
from ai_config cimport AIRecognitionConfig
from api_client cimport ApiClient
from loader_client cimport LoaderClient
from inference_engine cimport InferenceEngine
cdef class Inference:
cdef ApiClient api_client
cdef LoaderClient loader_client
cdef InferenceEngine engine
cdef object on_annotation
cdef Annotation _previous_annotation