Add Label Studio adapter module and its build scipts.

This commit is contained in:
Jason Wang
2025-10-22 15:14:01 +08:00
parent 1c97afed7d
commit c640105333
40 changed files with 2902 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# app/clients/__init__.py
from .dm_client import DMServiceClient
from .label_studio_client import LabelStudioClient
from .client_manager import get_clients, set_clients, get_dm_client, get_ls_client
__all__ = ["DMServiceClient", "LabelStudioClient", "get_clients", "set_clients", "get_dm_client", "get_ls_client"]