label-studio-sdk 1.0.10__py3-none-any.whl → 1.0.12__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of label-studio-sdk might be problematic. Click here for more details.
- label_studio_sdk/__init__.py +21 -1
- label_studio_sdk/_extensions/label_studio_tools/core/utils/json_schema.py +5 -0
- label_studio_sdk/base_client.py +8 -0
- label_studio_sdk/converter/converter.py +22 -0
- label_studio_sdk/converter/exports/brush_to_coco.py +332 -0
- label_studio_sdk/converter/main.py +14 -0
- label_studio_sdk/core/client_wrapper.py +34 -15
- label_studio_sdk/errors/__init__.py +3 -1
- label_studio_sdk/errors/not_found_error.py +9 -0
- label_studio_sdk/errors/unauthorized_error.py +9 -0
- label_studio_sdk/jwt_settings/__init__.py +2 -0
- label_studio_sdk/jwt_settings/client.py +259 -0
- label_studio_sdk/label_interface/control_tags.py +15 -2
- label_studio_sdk/label_interface/interface.py +80 -1
- label_studio_sdk/label_interface/object_tags.py +2 -2
- label_studio_sdk/projects/__init__.py +2 -1
- label_studio_sdk/projects/client.py +4 -0
- label_studio_sdk/projects/exports/client_ext.py +106 -40
- label_studio_sdk/projects/pauses/__init__.py +2 -0
- label_studio_sdk/projects/pauses/client.py +704 -0
- label_studio_sdk/projects/types/projects_update_response.py +10 -0
- label_studio_sdk/tokens/__init__.py +2 -0
- label_studio_sdk/tokens/client.py +610 -0
- label_studio_sdk/tokens/client_ext.py +94 -0
- label_studio_sdk/types/__init__.py +14 -0
- label_studio_sdk/types/access_token_response.py +22 -0
- label_studio_sdk/types/annotation.py +2 -1
- label_studio_sdk/types/annotation_completed_by.py +6 -0
- label_studio_sdk/types/api_token_response.py +32 -0
- label_studio_sdk/types/jwt_settings_response.py +32 -0
- label_studio_sdk/types/model_provider_connection_provider.py +1 -1
- label_studio_sdk/types/pause.py +34 -0
- label_studio_sdk/types/pause_paused_by.py +5 -0
- label_studio_sdk/types/project.py +10 -0
- label_studio_sdk/types/prompt_version_provider.py +1 -1
- label_studio_sdk/types/rotate_token_response.py +22 -0
- {label_studio_sdk-1.0.10.dist-info → label_studio_sdk-1.0.12.dist-info}/METADATA +3 -2
- {label_studio_sdk-1.0.10.dist-info → label_studio_sdk-1.0.12.dist-info}/RECORD +40 -23
- {label_studio_sdk-1.0.10.dist-info → label_studio_sdk-1.0.12.dist-info}/WHEEL +1 -1
- {label_studio_sdk-1.0.10.dist-info → label_studio_sdk-1.0.12.dist-info}/LICENSE +0 -0
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
+
from .access_token_response import AccessTokenResponse
|
|
3
4
|
from .annotation import Annotation
|
|
5
|
+
from .annotation_completed_by import AnnotationCompletedBy
|
|
4
6
|
from .annotation_filter_options import AnnotationFilterOptions
|
|
5
7
|
from .annotation_last_action import AnnotationLastAction
|
|
6
8
|
from .annotations_dm_field import AnnotationsDmField
|
|
7
9
|
from .annotations_dm_field_last_action import AnnotationsDmFieldLastAction
|
|
10
|
+
from .api_token_response import ApiTokenResponse
|
|
8
11
|
from .azure_blob_export_storage import AzureBlobExportStorage
|
|
9
12
|
from .azure_blob_export_storage_status import AzureBlobExportStorageStatus
|
|
10
13
|
from .azure_blob_import_storage import AzureBlobImportStorage
|
|
@@ -39,6 +42,7 @@ from .inference_run_created_by import InferenceRunCreatedBy
|
|
|
39
42
|
from .inference_run_organization import InferenceRunOrganization
|
|
40
43
|
from .inference_run_project_subset import InferenceRunProjectSubset
|
|
41
44
|
from .inference_run_status import InferenceRunStatus
|
|
45
|
+
from .jwt_settings_response import JwtSettingsResponse
|
|
42
46
|
from .key_indicator_value import KeyIndicatorValue
|
|
43
47
|
from .key_indicators import KeyIndicators
|
|
44
48
|
from .key_indicators_item import KeyIndicatorsItem
|
|
@@ -57,6 +61,8 @@ from .model_provider_connection_created_by import ModelProviderConnectionCreated
|
|
|
57
61
|
from .model_provider_connection_organization import ModelProviderConnectionOrganization
|
|
58
62
|
from .model_provider_connection_provider import ModelProviderConnectionProvider
|
|
59
63
|
from .model_provider_connection_scope import ModelProviderConnectionScope
|
|
64
|
+
from .pause import Pause
|
|
65
|
+
from .pause_paused_by import PausePausedBy
|
|
60
66
|
from .prediction import Prediction
|
|
61
67
|
from .project import Project
|
|
62
68
|
from .project_import import ProjectImport
|
|
@@ -79,6 +85,7 @@ from .redis_import_storage import RedisImportStorage
|
|
|
79
85
|
from .redis_import_storage_status import RedisImportStorageStatus
|
|
80
86
|
from .refined_prompt_response import RefinedPromptResponse
|
|
81
87
|
from .refined_prompt_response_refinement_status import RefinedPromptResponseRefinementStatus
|
|
88
|
+
from .rotate_token_response import RotateTokenResponse
|
|
82
89
|
from .s3export_storage import S3ExportStorage
|
|
83
90
|
from .s3export_storage_status import S3ExportStorageStatus
|
|
84
91
|
from .s3import_storage import S3ImportStorage
|
|
@@ -101,11 +108,14 @@ from .webhook_serializer_for_update_actions_item import WebhookSerializerForUpda
|
|
|
101
108
|
from .workspace import Workspace
|
|
102
109
|
|
|
103
110
|
__all__ = [
|
|
111
|
+
"AccessTokenResponse",
|
|
104
112
|
"Annotation",
|
|
113
|
+
"AnnotationCompletedBy",
|
|
105
114
|
"AnnotationFilterOptions",
|
|
106
115
|
"AnnotationLastAction",
|
|
107
116
|
"AnnotationsDmField",
|
|
108
117
|
"AnnotationsDmFieldLastAction",
|
|
118
|
+
"ApiTokenResponse",
|
|
109
119
|
"AzureBlobExportStorage",
|
|
110
120
|
"AzureBlobExportStorageStatus",
|
|
111
121
|
"AzureBlobImportStorage",
|
|
@@ -140,6 +150,7 @@ __all__ = [
|
|
|
140
150
|
"InferenceRunOrganization",
|
|
141
151
|
"InferenceRunProjectSubset",
|
|
142
152
|
"InferenceRunStatus",
|
|
153
|
+
"JwtSettingsResponse",
|
|
143
154
|
"KeyIndicatorValue",
|
|
144
155
|
"KeyIndicators",
|
|
145
156
|
"KeyIndicatorsItem",
|
|
@@ -158,6 +169,8 @@ __all__ = [
|
|
|
158
169
|
"ModelProviderConnectionOrganization",
|
|
159
170
|
"ModelProviderConnectionProvider",
|
|
160
171
|
"ModelProviderConnectionScope",
|
|
172
|
+
"Pause",
|
|
173
|
+
"PausePausedBy",
|
|
161
174
|
"Prediction",
|
|
162
175
|
"Project",
|
|
163
176
|
"ProjectImport",
|
|
@@ -180,6 +193,7 @@ __all__ = [
|
|
|
180
193
|
"RedisImportStorageStatus",
|
|
181
194
|
"RefinedPromptResponse",
|
|
182
195
|
"RefinedPromptResponseRefinementStatus",
|
|
196
|
+
"RotateTokenResponse",
|
|
183
197
|
"S3ExportStorage",
|
|
184
198
|
"S3ExportStorageStatus",
|
|
185
199
|
"S3ImportStorage",
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.pydantic_utilities import UniversalBaseModel
|
|
4
|
+
import pydantic
|
|
5
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
|
+
import typing
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class AccessTokenResponse(UniversalBaseModel):
|
|
10
|
+
access: str = pydantic.Field()
|
|
11
|
+
"""
|
|
12
|
+
New JWT access token
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
if IS_PYDANTIC_V2:
|
|
16
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
17
|
+
else:
|
|
18
|
+
|
|
19
|
+
class Config:
|
|
20
|
+
frozen = True
|
|
21
|
+
smart_union = True
|
|
22
|
+
extra = pydantic.Extra.allow
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
from ..core.pydantic_utilities import UniversalBaseModel
|
|
4
4
|
import typing
|
|
5
5
|
import pydantic
|
|
6
|
+
from .annotation_completed_by import AnnotationCompletedBy
|
|
6
7
|
import datetime as dt
|
|
7
8
|
from .annotation_last_action import AnnotationLastAction
|
|
8
9
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
@@ -25,7 +26,7 @@ class Annotation(UniversalBaseModel):
|
|
|
25
26
|
Time delta from creation time
|
|
26
27
|
"""
|
|
27
28
|
|
|
28
|
-
completed_by: typing.Optional[
|
|
29
|
+
completed_by: typing.Optional[AnnotationCompletedBy] = None
|
|
29
30
|
unique_id: typing.Optional[str] = None
|
|
30
31
|
was_cancelled: typing.Optional[bool] = pydantic.Field(default=None)
|
|
31
32
|
"""
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.pydantic_utilities import UniversalBaseModel
|
|
4
|
+
import pydantic
|
|
5
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
|
+
import typing
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class ApiTokenResponse(UniversalBaseModel):
|
|
10
|
+
token: str = pydantic.Field()
|
|
11
|
+
"""
|
|
12
|
+
JWT token
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
created_at: str = pydantic.Field()
|
|
16
|
+
"""
|
|
17
|
+
Token creation timestamp
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
expires_at: str = pydantic.Field()
|
|
21
|
+
"""
|
|
22
|
+
Token expiration timestamp
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
if IS_PYDANTIC_V2:
|
|
26
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
27
|
+
else:
|
|
28
|
+
|
|
29
|
+
class Config:
|
|
30
|
+
frozen = True
|
|
31
|
+
smart_union = True
|
|
32
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.pydantic_utilities import UniversalBaseModel
|
|
4
|
+
import pydantic
|
|
5
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
|
+
import typing
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class JwtSettingsResponse(UniversalBaseModel):
|
|
10
|
+
api_tokens_enabled: bool = pydantic.Field()
|
|
11
|
+
"""
|
|
12
|
+
Whether JWT API tokens are enabled
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
legacy_api_tokens_enabled: bool = pydantic.Field()
|
|
16
|
+
"""
|
|
17
|
+
Whether legacy API tokens are enabled
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
api_token_ttl_days: int = pydantic.Field()
|
|
21
|
+
"""
|
|
22
|
+
Number of days before API tokens expire
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
if IS_PYDANTIC_V2:
|
|
26
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
27
|
+
else:
|
|
28
|
+
|
|
29
|
+
class Config:
|
|
30
|
+
frozen = True
|
|
31
|
+
smart_union = True
|
|
32
|
+
extra = pydantic.Extra.allow
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
import typing
|
|
4
4
|
|
|
5
5
|
ModelProviderConnectionProvider = typing.Union[
|
|
6
|
-
typing.Literal["OpenAI", "AzureOpenAI", "VertexAI", "Gemini", "Custom"], typing.Any
|
|
6
|
+
typing.Literal["OpenAI", "AzureOpenAI", "AzureAIFoundry", "VertexAI", "Gemini", "Anthropic", "Custom"], typing.Any
|
|
7
7
|
]
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.pydantic_utilities import UniversalBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
from .pause_paused_by import PausePausedBy
|
|
6
|
+
import pydantic
|
|
7
|
+
import datetime as dt
|
|
8
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class Pause(UniversalBaseModel):
|
|
12
|
+
id: typing.Optional[int] = None
|
|
13
|
+
project: typing.Optional[int] = None
|
|
14
|
+
user: typing.Optional[int] = None
|
|
15
|
+
paused_by: typing.Optional[PausePausedBy] = pydantic.Field(default=None)
|
|
16
|
+
"""
|
|
17
|
+
User who created the pause
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
reason: str
|
|
21
|
+
verbose_reason: typing.Optional[str] = None
|
|
22
|
+
deleted_by: typing.Optional[int] = None
|
|
23
|
+
deleted_at: typing.Optional[dt.datetime] = None
|
|
24
|
+
created_at: typing.Optional[dt.datetime] = None
|
|
25
|
+
updated_at: typing.Optional[dt.datetime] = None
|
|
26
|
+
|
|
27
|
+
if IS_PYDANTIC_V2:
|
|
28
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
29
|
+
else:
|
|
30
|
+
|
|
31
|
+
class Config:
|
|
32
|
+
frozen = True
|
|
33
|
+
smart_union = True
|
|
34
|
+
extra = pydantic.Extra.allow
|
|
@@ -61,6 +61,16 @@ class Project(UniversalBaseModel):
|
|
|
61
61
|
Maximum number of annotations for one task. If the number of annotations per task is equal or greater to this value, the task is completed (is_labeled=True)
|
|
62
62
|
"""
|
|
63
63
|
|
|
64
|
+
annotation_limit_count: typing.Optional[int] = pydantic.Field(default=None)
|
|
65
|
+
"""
|
|
66
|
+
Maximum number of tasks that can be annotated by a single annotator in this project pause
|
|
67
|
+
"""
|
|
68
|
+
|
|
69
|
+
annotation_limit_percent: typing.Optional[float] = pydantic.Field(default=None)
|
|
70
|
+
"""
|
|
71
|
+
Maximum percentage of tasks in this project that can be annotated by a single annotator
|
|
72
|
+
"""
|
|
73
|
+
|
|
64
74
|
is_published: typing.Optional[bool] = pydantic.Field(default=None)
|
|
65
75
|
"""
|
|
66
76
|
Whether or not the project is published to annotators
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.pydantic_utilities import UniversalBaseModel
|
|
4
|
+
import pydantic
|
|
5
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
|
+
import typing
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class RotateTokenResponse(UniversalBaseModel):
|
|
10
|
+
refresh: str = pydantic.Field()
|
|
11
|
+
"""
|
|
12
|
+
New JWT refresh token
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
if IS_PYDANTIC_V2:
|
|
16
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
17
|
+
else:
|
|
18
|
+
|
|
19
|
+
class Config:
|
|
20
|
+
frozen = True
|
|
21
|
+
smart_union = True
|
|
22
|
+
extra = pydantic.Extra.allow
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: label-studio-sdk
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.12
|
|
4
4
|
Summary:
|
|
5
5
|
Requires-Python: >=3.9,<4
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -28,10 +28,11 @@ Requires-Dist: jsf (>=0.11.2,<0.12.0)
|
|
|
28
28
|
Requires-Dist: jsonschema (>=4.23.0)
|
|
29
29
|
Requires-Dist: lxml (>=4.2.5)
|
|
30
30
|
Requires-Dist: nltk (>=3.9.1,<4.0.0)
|
|
31
|
-
Requires-Dist: numpy (>=1.26.4,<
|
|
31
|
+
Requires-Dist: numpy (>=1.26.4,<3.0.0)
|
|
32
32
|
Requires-Dist: pandas (>=0.24.0)
|
|
33
33
|
Requires-Dist: pydantic (>=1.9.2)
|
|
34
34
|
Requires-Dist: pydantic-core (>=2.18.2,<3.0.0)
|
|
35
|
+
Requires-Dist: pyjwt (>=2.10.1,<3.0.0)
|
|
35
36
|
Requires-Dist: requests (>=2.22.0)
|
|
36
37
|
Requires-Dist: requests-mock (==1.12.1)
|
|
37
38
|
Requires-Dist: typing_extensions (>=4.0.0)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
label_studio_sdk/__init__.py,sha256=
|
|
1
|
+
label_studio_sdk/__init__.py,sha256=_-HHT-pw6BSHqpL65CAaZLsirX14w9UxghASGcecRU8,11053
|
|
2
2
|
label_studio_sdk/_extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
label_studio_sdk/_extensions/eval/categorical.py,sha256=MxH2Jl8Mc6HS2byBnlRgABZgwMutSQdH3tgspwCkxqk,2703
|
|
4
4
|
label_studio_sdk/_extensions/label_studio_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -7,7 +7,7 @@ label_studio_sdk/_extensions/label_studio_tools/core/label_config.py,sha256=P1S7
|
|
|
7
7
|
label_studio_sdk/_extensions/label_studio_tools/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
label_studio_sdk/_extensions/label_studio_tools/core/utils/exceptions.py,sha256=JxaXUMghUp1YvL--s8KFC4mCHVbV39giE3kSBHCmuFU,66
|
|
9
9
|
label_studio_sdk/_extensions/label_studio_tools/core/utils/io.py,sha256=FO0fBVvffuDjbQQcvqLsXmGUn1gCP1YmA-tmNsvX8oo,9650
|
|
10
|
-
label_studio_sdk/_extensions/label_studio_tools/core/utils/json_schema.py,sha256=
|
|
10
|
+
label_studio_sdk/_extensions/label_studio_tools/core/utils/json_schema.py,sha256=_Lg3DxhRqGhzlk3egGUDufx-iaoEWec19upZKp-Cwic,3378
|
|
11
11
|
label_studio_sdk/_extensions/label_studio_tools/core/utils/params.py,sha256=ZSUb-IXG5OcPQ7pJ8NDRLon-cMxnjVq6XtinxvTuJso,1244
|
|
12
12
|
label_studio_sdk/_extensions/label_studio_tools/etl/__init__.py,sha256=SdN7JGLJ1araqbx-nL2fVdhm6E6CNyru-vWVs6sMswI,31
|
|
13
13
|
label_studio_sdk/_extensions/label_studio_tools/etl/beam.py,sha256=aGWS-LgU6du2Fm0HE_3mDWeQ5dcwMWWMeuS-0xjEcVE,833
|
|
@@ -43,15 +43,16 @@ label_studio_sdk/annotations/client.py,sha256=KZ0Mw5CObbTfNpcZeQ5xGt_wShJcGK1EpD
|
|
|
43
43
|
label_studio_sdk/annotations/types/__init__.py,sha256=wOEYShhl4NB9NeIN4k4J10C492Pi5Bk4JAFLy2uwymM,346
|
|
44
44
|
label_studio_sdk/annotations/types/annotations_create_bulk_request_selected_items.py,sha256=jeNau7AKVKY__kH2z6z1o5rbaeQRtTQsKF_T9gWchn0,1178
|
|
45
45
|
label_studio_sdk/annotations/types/annotations_create_bulk_response_item.py,sha256=ZBfjirdGaXSuxVxKZlRmuVbje9h8U6-2Sv5SgtxbSS4,600
|
|
46
|
-
label_studio_sdk/base_client.py,sha256=
|
|
46
|
+
label_studio_sdk/base_client.py,sha256=MpJrK0OdHghzPJKOCHA2WSoIb1PiBrh2i56dkMkmue8,10518
|
|
47
47
|
label_studio_sdk/client.py,sha256=g5YFI-U6OxGiGJ2aMqeREF1tGt-7LA5NSDl2CvW0wNA,916
|
|
48
48
|
label_studio_sdk/comments/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
49
49
|
label_studio_sdk/comments/client.py,sha256=k359u7Q8YyPtaawoA1FW4dAuYzGVmeGM9rR2Gcg5L2c,18278
|
|
50
50
|
label_studio_sdk/converter/__init__.py,sha256=qppSJed16HAiZbGons0yVrPRjszuWFia025Rm477q1c,201
|
|
51
51
|
label_studio_sdk/converter/audio.py,sha256=U9oTULkeimodZhIkB16Gl3eJD8YzsbADWxW_r2tPcxw,1905
|
|
52
52
|
label_studio_sdk/converter/brush.py,sha256=jRL3fLl_J06fVEX7Uat31ru0uUZ71C4zrXnX2qOcrIo,13370
|
|
53
|
-
label_studio_sdk/converter/converter.py,sha256=
|
|
53
|
+
label_studio_sdk/converter/converter.py,sha256=o90sU1oY7xE6Ni6O5qMkBUcT96QzqwVg9yd6zu-1gqw,51338
|
|
54
54
|
label_studio_sdk/converter/exports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
+
label_studio_sdk/converter/exports/brush_to_coco.py,sha256=YeVSyZxmXwLbqox7dS3IRuzR1mYTlUhg6YgK4Txq00U,13355
|
|
55
56
|
label_studio_sdk/converter/exports/csv.py,sha256=F4t04tFsg5gBXTZNmkjw_NeEVsobRH_Y_vfFDi7R0Zw,2865
|
|
56
57
|
label_studio_sdk/converter/exports/csv2.py,sha256=9FxcPtIDcuztDF-y4Z7Mm0AgbYUR1oMitYT6BlcOFes,3125
|
|
57
58
|
label_studio_sdk/converter/funsd.py,sha256=QHoa8hzWQLkZQ87e9EgURit9kGGUCgDxoRONcSzmWlw,2544
|
|
@@ -61,11 +62,11 @@ label_studio_sdk/converter/imports/colors.py,sha256=F5_K4FIhOZl6LNEIVT2UU5L8HcmY
|
|
|
61
62
|
label_studio_sdk/converter/imports/label_config.py,sha256=8RT2Jppvi1-Sl3ZNDA1uFyHr2NoU4-gM26S9iAEuQh8,1218
|
|
62
63
|
label_studio_sdk/converter/imports/pathtrack.py,sha256=Xxxbw8fLLHTR57FEjVeeitjh35YbcIh_eVzuw2e5K9w,8096
|
|
63
64
|
label_studio_sdk/converter/imports/yolo.py,sha256=kAJhsUV4ZxOEJE8yk7CvMGf_3w6aslqrj7OUOqHIwbo,8888
|
|
64
|
-
label_studio_sdk/converter/main.py,sha256=
|
|
65
|
+
label_studio_sdk/converter/main.py,sha256=gfe5zPV2dnIk4ifG1AT95ExkzOSLzje0EOjnW0oC3q8,6442
|
|
65
66
|
label_studio_sdk/converter/utils.py,sha256=VshPBwZLu2VPIGVsShKAkZwB_zKz0VvMkNRCwWeEqWg,18702
|
|
66
67
|
label_studio_sdk/core/__init__.py,sha256=-t9txgeQZL_1FDw_08GEoj4ft1Cn9Dti6X0Drsadlr0,1519
|
|
67
68
|
label_studio_sdk/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
68
|
-
label_studio_sdk/core/client_wrapper.py,sha256=
|
|
69
|
+
label_studio_sdk/core/client_wrapper.py,sha256=fThAUV72_apQ4I2bS60iM84082lgXo4YMM6yvl07Kpg,2209
|
|
69
70
|
label_studio_sdk/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
70
71
|
label_studio_sdk/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
71
72
|
label_studio_sdk/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
|
|
@@ -78,9 +79,11 @@ label_studio_sdk/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBU
|
|
|
78
79
|
label_studio_sdk/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9601
|
|
79
80
|
label_studio_sdk/data_manager.py,sha256=IzmX9qokkVE51hrtX9IuXkLr80pVWSXq8Hp51-xDuHI,8309
|
|
80
81
|
label_studio_sdk/environment.py,sha256=f1MIpndh-RpLNXkkRNvyIWcCsC3hzMZ6y9VqHdhKH1k,158
|
|
81
|
-
label_studio_sdk/errors/__init__.py,sha256=
|
|
82
|
+
label_studio_sdk/errors/__init__.py,sha256=eS-2RID0VAXmu9g8dB9B0CHTeq_bxovRWS6ICqazkz0,352
|
|
82
83
|
label_studio_sdk/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
|
|
83
84
|
label_studio_sdk/errors/internal_server_error.py,sha256=K8Rm2Djj0ciGE0uDq3GHL-JTk8R23U2hBiH-84A4ZWY,230
|
|
85
|
+
label_studio_sdk/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
|
|
86
|
+
label_studio_sdk/errors/unauthorized_error.py,sha256=1ewNCqSG1P-uogB5yCNwreq4Bf3VRor0woSOXS4NjPU,266
|
|
84
87
|
label_studio_sdk/export_storage/__init__.py,sha256=ImlZEk1L3WI0vJf8xjDbHQsi8vL3cCGcE3vqj9ZfWGY,840
|
|
85
88
|
label_studio_sdk/export_storage/azure/__init__.py,sha256=WflFc5wcr-Pgvi8vGcNCTKOPaIKxy-_RgMx2qttAHYc,183
|
|
86
89
|
label_studio_sdk/export_storage/azure/client.py,sha256=BbVsbaddTtnrOgnN43yiJ_LP3FarjuxFFMqla63ziCE,35944
|
|
@@ -145,14 +148,16 @@ label_studio_sdk/import_storage/s3s/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRY
|
|
|
145
148
|
label_studio_sdk/import_storage/s3s/client.py,sha256=iqJJ8d-DZ35lj8KKKsR6emA1cixEBVQnAOzOZbYp3Rg,41589
|
|
146
149
|
label_studio_sdk/import_storage/types/__init__.py,sha256=LSPRtCZ04H1CRzFC6KQnse2KDh5Weeo9IPmRoluhvoc,203
|
|
147
150
|
label_studio_sdk/import_storage/types/import_storage_list_types_response_item.py,sha256=jfoSmhutkqNO9vGtz6Soku6wQ8UA9-cmfiYwGSoaj10,642
|
|
151
|
+
label_studio_sdk/jwt_settings/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
152
|
+
label_studio_sdk/jwt_settings/client.py,sha256=v7e5oxvMBcpkh_JF7A3qeg-AlZlHMS82pmiMM_RKj7k,8161
|
|
148
153
|
label_studio_sdk/label_interface/__init__.py,sha256=Eg6y3mAaYdKzJ5ZPhU_BTX2qoNPafthdxLD2I_rmXoU,38
|
|
149
154
|
label_studio_sdk/label_interface/base.py,sha256=NCgY7ntk0WSc9O9iXu3g37-CxbZgCx_WO2pvOEHK-cg,2786
|
|
150
|
-
label_studio_sdk/label_interface/control_tags.py,sha256=
|
|
155
|
+
label_studio_sdk/label_interface/control_tags.py,sha256=qLe4gsRxvppuNtrxfmgZHFX1ahM-XhePlrchZfnJiL0,30141
|
|
151
156
|
label_studio_sdk/label_interface/create.py,sha256=c3h5_FF4u5J62_mqq1oK2mjqXL-I1559C6MfoxkgO6s,6993
|
|
152
157
|
label_studio_sdk/label_interface/data_examples.json,sha256=uCYvCtMIxPi1-jLlFhwJPh01tLyMIRwTjINeAeW-JzE,8195
|
|
153
|
-
label_studio_sdk/label_interface/interface.py,sha256=
|
|
158
|
+
label_studio_sdk/label_interface/interface.py,sha256=U_2IkpQXxw8fBW_buwfWIOvgdk1z_xLHFdk8YPUC1eE,45519
|
|
154
159
|
label_studio_sdk/label_interface/label_tags.py,sha256=nWEo21Gd8IPzIO72UqraLrChIbvrSMCA_eEhzYGnGCc,2282
|
|
155
|
-
label_studio_sdk/label_interface/object_tags.py,sha256=
|
|
160
|
+
label_studio_sdk/label_interface/object_tags.py,sha256=EGe3bYTZr92SezzWka8grYnvOQNtyfEYa5-yoM4a7Es,8705
|
|
156
161
|
label_studio_sdk/label_interface/objects.py,sha256=V1Spp0S9qE7iA-5kPCi0QyHrJ80Du9BUuYMsQUAQqc0,1535
|
|
157
162
|
label_studio_sdk/label_interface/region.py,sha256=th39WeQk8ypi-4krEpsW0BZnoygu4XgvP4w7NkRQp2M,1755
|
|
158
163
|
label_studio_sdk/ml/__init__.py,sha256=J4ncAcAOU_qriOx_Im9eFmXyupKM19SXMcpMcXSmw-I,455
|
|
@@ -168,20 +173,22 @@ label_studio_sdk/model_providers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-
|
|
|
168
173
|
label_studio_sdk/model_providers/client.py,sha256=-9829DK8F2VG-Oh6H4cYfDzch9CFIwfK5ruEkRD4LL8,29619
|
|
169
174
|
label_studio_sdk/predictions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
170
175
|
label_studio_sdk/predictions/client.py,sha256=E-PsH5iTV84lqJcPccQ4ca0BCfRBqbi_WH5NKwW63r8,28614
|
|
171
|
-
label_studio_sdk/projects/__init__.py,sha256=
|
|
172
|
-
label_studio_sdk/projects/client.py,sha256=
|
|
176
|
+
label_studio_sdk/projects/__init__.py,sha256=9-gOfvS7ThvtyYQWBbW5GIEu2HkOtC5q2fOaKLc14RQ,523
|
|
177
|
+
label_studio_sdk/projects/client.py,sha256=hKhexHwjesEgNbbw2Tk5imLL38r7MeA6u3MfQLAWQTE,55934
|
|
173
178
|
label_studio_sdk/projects/client_ext.py,sha256=vZfH4Pk6nnBQyWSHOx-85Ld9i5BoWVZelBrzJRpcwW0,1847
|
|
174
179
|
label_studio_sdk/projects/exports/__init__.py,sha256=wG6u6ZnbKCZkFKWrP1SJ-z86aBMo1z-2Xa0-uEOA8AU,211
|
|
175
180
|
label_studio_sdk/projects/exports/client.py,sha256=dILZGzotL4VUO7OWQ_0gzZL763vVWSq1cKK-LYm_t20,45952
|
|
176
|
-
label_studio_sdk/projects/exports/client_ext.py,sha256=
|
|
181
|
+
label_studio_sdk/projects/exports/client_ext.py,sha256=PwpihGXiG0QoIV6ZOEm4Nr5tN-j50LwtW_A0NxCstU8,11433
|
|
177
182
|
label_studio_sdk/projects/exports/types/__init__.py,sha256=9VA__mPFYmGOafvVs2rs0zJRBCJP9BWjvEIu_nHowl4,277
|
|
178
183
|
label_studio_sdk/projects/exports/types/exports_convert_response.py,sha256=R2dglNXpebNnpAFzBr29h3BoobTSVpydMpZld-JMav8,779
|
|
179
184
|
label_studio_sdk/projects/exports/types/exports_list_formats_response_item.py,sha256=QivCKxhIGqD80uY_eh40pUIfNydtMSm-UCFE1ByU050,1257
|
|
185
|
+
label_studio_sdk/projects/pauses/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
186
|
+
label_studio_sdk/projects/pauses/client.py,sha256=Kh0F5FdibQJts07hIgdg2lsosi5yhQa8L-xwn47NqxI,19903
|
|
180
187
|
label_studio_sdk/projects/types/__init__.py,sha256=EPDPCMDXFQp96yNZph2lAnDHw54X7NOvGOQgY9513sA,435
|
|
181
188
|
label_studio_sdk/projects/types/projects_create_response.py,sha256=G8vfBeUtwt6H2v2742ofOL5_u2FUpbCieZtZeZ4r76Y,2904
|
|
182
189
|
label_studio_sdk/projects/types/projects_import_tasks_response.py,sha256=yOEpzLArXDWcoePtOAEYcquLcZ5yypoE9Vvi-E73nyg,1652
|
|
183
190
|
label_studio_sdk/projects/types/projects_list_response.py,sha256=r54zYRG45uQcFoQfD-AsJk76LtMbIQIMqeU_5L95Cpk,717
|
|
184
|
-
label_studio_sdk/projects/types/projects_update_response.py,sha256=
|
|
191
|
+
label_studio_sdk/projects/types/projects_update_response.py,sha256=k8qrfYVpEGmeQpoyYDtq_r-fcSDhK143J6er_KM5WRA,3110
|
|
185
192
|
label_studio_sdk/prompts/__init__.py,sha256=znKhqejZYbD2umWc9tuSD7pm0PyxMw9jmjGzNSUvius,661
|
|
186
193
|
label_studio_sdk/prompts/client.py,sha256=2uIDR7hcx6NHDnF9hSpf_c50FM3TnMKr8Ky2gxJpa0I,35617
|
|
187
194
|
label_studio_sdk/prompts/indicators/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -204,12 +211,18 @@ label_studio_sdk/tasks/client_ext.py,sha256=ZA0mE7DzgPWgUw4BKbtodyXJPCyG2Oe5BmMW
|
|
|
204
211
|
label_studio_sdk/tasks/types/__init__.py,sha256=F5n2075irgvO9TyLAXzp26Tybg_lxMC56UySZzHby8I,237
|
|
205
212
|
label_studio_sdk/tasks/types/tasks_list_request_fields.py,sha256=5YXxQgyzoaL0QjSE-aLs_fepCUuzj28iqUndh5NxGGg,166
|
|
206
213
|
label_studio_sdk/tasks/types/tasks_list_response.py,sha256=j1pNluAWQOQ8-d9YXQyRQAefnrl8uLQEB7_L55Z8DME,1136
|
|
207
|
-
label_studio_sdk/
|
|
208
|
-
label_studio_sdk/
|
|
214
|
+
label_studio_sdk/tokens/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
215
|
+
label_studio_sdk/tokens/client.py,sha256=SvBcKXIsrTihMJC72Ifxv0U1N3gtLGz3JxqdXYA_hD4,19101
|
|
216
|
+
label_studio_sdk/tokens/client_ext.py,sha256=chhzBuVYp0YeUrAnYVwDX5yJq5IJlomGhBQ1zvjZAkI,3976
|
|
217
|
+
label_studio_sdk/types/__init__.py,sha256=fQykjzHpX04ftslk5I_hWSJQ_H9Kd8XJAmSv18EVOIc,8905
|
|
218
|
+
label_studio_sdk/types/access_token_response.py,sha256=RV9FqkIiFR_9kmKueB-KiqjVyneiqUkMVueAlk5fUyc,624
|
|
219
|
+
label_studio_sdk/types/annotation.py,sha256=AnHm2VjMasWZsaNXVSUzLYbpYrmM4NPZgWQh7WGa6ZQ,3157
|
|
220
|
+
label_studio_sdk/types/annotation_completed_by.py,sha256=0JTdVQqtgsRhVLoYnA02vq2aUWsg1AWG4wfVKUd9-iw,170
|
|
209
221
|
label_studio_sdk/types/annotation_filter_options.py,sha256=84D7v0l8Gmn2sGyWh-3uQZy-mHc4qDWuwDTxqeou73E,929
|
|
210
222
|
label_studio_sdk/types/annotation_last_action.py,sha256=g1CU8ypFyneqqf_eWtNH-lC6Q_h1i_IporC-Fq6nkxs,392
|
|
211
223
|
label_studio_sdk/types/annotations_dm_field.py,sha256=v9wLW5vsM-j1-fvKVTBrfgqzhMAfM8O8HaoHbU39c6o,3245
|
|
212
224
|
label_studio_sdk/types/annotations_dm_field_last_action.py,sha256=H7_GwbcY0Gf-cPKHmyKuNq2xY3zf5IZ1Y9djzdluR2U,400
|
|
225
|
+
label_studio_sdk/types/api_token_response.py,sha256=wJ655Rz3HEul86ZVVqnd60otLsTXAlW1fKtOv_NRgpA,781
|
|
213
226
|
label_studio_sdk/types/azure_blob_export_storage.py,sha256=EZMn_bZhXd7w-EwQe40cq0LBfKqEtGzL9oXv26R6aLE,2777
|
|
214
227
|
label_studio_sdk/types/azure_blob_export_storage_status.py,sha256=rk2DtXXxbEwpUQPBgmwIr2Do3j3LbgwGSPk8yZeb8ow,221
|
|
215
228
|
label_studio_sdk/types/azure_blob_import_storage.py,sha256=gjmhAU_WQixhnJvKu3_oENIunKL1gkN8EdVWmLX0DIA,2813
|
|
@@ -244,6 +257,7 @@ label_studio_sdk/types/inference_run_created_by.py,sha256=D8KqI__ABtM-XIGykUtSdD
|
|
|
244
257
|
label_studio_sdk/types/inference_run_organization.py,sha256=t30lTwNpgqT1rsXfOH2mzHfPqhKCv1IbSZ9zbw6j-fk,172
|
|
245
258
|
label_studio_sdk/types/inference_run_project_subset.py,sha256=lX40egBgMaJgguByeFhcq7HB4OPO09uBPMb9Eh_18qg,175
|
|
246
259
|
label_studio_sdk/types/inference_run_status.py,sha256=ADkxM0bEN-YeOfD-0vLcrOTIYZRLEKWk4tQanqLCLRU,208
|
|
260
|
+
label_studio_sdk/types/jwt_settings_response.py,sha256=-pJD_EaZoXIEjUXuEp8LR6X4jST2CMh-6tkQ-amhPiw,873
|
|
247
261
|
label_studio_sdk/types/key_indicator_value.py,sha256=jdlevWFwUt--mk0GUq7jfpktiNlmQsqtaez4WI-M0LA,667
|
|
248
262
|
label_studio_sdk/types/key_indicators.py,sha256=cs55Vb3sVoVTOKCL9zNvUHWYTkBu1N-ClMwfg7YUZx8,178
|
|
249
263
|
label_studio_sdk/types/key_indicators_item.py,sha256=ATnnFCfUI1zMctgXaLgpipcFFxpzGZYqcXZ8DDwy91s,1406
|
|
@@ -260,10 +274,12 @@ label_studio_sdk/types/model_provider_connection.py,sha256=dm0sTiOxpdRot7oY5GLGw
|
|
|
260
274
|
label_studio_sdk/types/model_provider_connection_budget_reset_period.py,sha256=_2b6RPx-idAx75gbX3gDNQEynlBWJX6IZP1BbDCvono,193
|
|
261
275
|
label_studio_sdk/types/model_provider_connection_created_by.py,sha256=MTpJc9W1zWsbGKWT_22QM1onNXYIQ578xoy2Dr4J_sM,180
|
|
262
276
|
label_studio_sdk/types/model_provider_connection_organization.py,sha256=VONln3FXkqC4oWuHblX1Vn15FMIsPUrvpvrdYgNYXN8,183
|
|
263
|
-
label_studio_sdk/types/model_provider_connection_provider.py,sha256=
|
|
277
|
+
label_studio_sdk/types/model_provider_connection_provider.py,sha256=sBnmnTVnhuxwV9-T9egFMuI3aNux5MjLPp8a_38D98E,249
|
|
264
278
|
label_studio_sdk/types/model_provider_connection_scope.py,sha256=yi-uNxAvmpe7dvLX0d7wh92HyAHdwfsE22S1nKfpH_0,185
|
|
279
|
+
label_studio_sdk/types/pause.py,sha256=QTO1uADV2UXczHs2k0vAXCrPDBRC5Go1WKea89Vpd-Q,1103
|
|
280
|
+
label_studio_sdk/types/pause_paused_by.py,sha256=UvdmhKEDKZz2gyy27X8AKavtYn3Bn0bndMWOkBmg0nE,161
|
|
265
281
|
label_studio_sdk/types/prediction.py,sha256=Uv6aT8SKEUebN19LPGAJEuAbXJZkOGjKxsszONKYH4s,2096
|
|
266
|
-
label_studio_sdk/types/project.py,sha256=
|
|
282
|
+
label_studio_sdk/types/project.py,sha256=giwR4kcLyB3RvDkj614vHFEGpNgz0Aj0SIxP4h0YTL8,7149
|
|
267
283
|
label_studio_sdk/types/project_import.py,sha256=VjYbzgov3ni878Suj7zn1K26NU7N5jGEyMzaRaGGwIk,2087
|
|
268
284
|
label_studio_sdk/types/project_import_status.py,sha256=FEFdU3D0_Ga9dDv-yNjcr3ATm8VhmBg5xKYm6DXP_e0,192
|
|
269
285
|
label_studio_sdk/types/project_label_config.py,sha256=-Xp-mJLV0RtVo2PfUs9qv6pDRQiIOBQhzRMCHntYWUo,671
|
|
@@ -277,13 +293,14 @@ label_studio_sdk/types/prompt_organization.py,sha256=ddVMQdRqB0SYOCpS20jlZsK9Uvn
|
|
|
277
293
|
label_studio_sdk/types/prompt_version.py,sha256=TvyhPMtuxvwmO0b5yESflKFoEFFOaemt6uV5kbsIvWs,1282
|
|
278
294
|
label_studio_sdk/types/prompt_version_created_by.py,sha256=Jam2KIktPp36qlGlAxeSKIplWrK059K7BpemdYoOXOE,170
|
|
279
295
|
label_studio_sdk/types/prompt_version_organization.py,sha256=1ck3ErfyflaQEzcSY61QLkWmxpZDk_LptgAkD9usZFw,173
|
|
280
|
-
label_studio_sdk/types/prompt_version_provider.py,sha256=
|
|
296
|
+
label_studio_sdk/types/prompt_version_provider.py,sha256=4N417eSvMCT4BsrOGn1ncpSaftWeSclz1Xym84adBJc,239
|
|
281
297
|
label_studio_sdk/types/redis_export_storage.py,sha256=zCvcPfyjni2sae-RMVQLOK1a4LzwC74ONWI0CmZsw_0,2850
|
|
282
298
|
label_studio_sdk/types/redis_export_storage_status.py,sha256=yOqhEQ2CSOJP3mQr6bPfARVROGi9YZwnM9bBM1CZCZM,217
|
|
283
299
|
label_studio_sdk/types/redis_import_storage.py,sha256=00CCOr8BS3luBBZjJx6buJbpjMrcj7eQN_O9yyBHxE0,2722
|
|
284
300
|
label_studio_sdk/types/redis_import_storage_status.py,sha256=KmGl0_RWK20owkGdLZ2Tx19v7fZrSSBDhN-SScYh5hM,217
|
|
285
301
|
label_studio_sdk/types/refined_prompt_response.py,sha256=CTFWlzKKisUroQfeLsawgFuuy-Njzm5hTyUxOJr0i90,1559
|
|
286
302
|
label_studio_sdk/types/refined_prompt_response_refinement_status.py,sha256=k2VmjpYtv4E19KV0pjcgUmC_UEn3TOWUI0S3MbllaG4,215
|
|
303
|
+
label_studio_sdk/types/rotate_token_response.py,sha256=ZoHAfsN50MDLDiED75-So_wzPWLamUKkNXnqkuhjsBY,626
|
|
287
304
|
label_studio_sdk/types/s3export_storage.py,sha256=TDHfvEljtCfuXBuMTc-gERvXcM6TIuIuy4QMWhjFCvg,3323
|
|
288
305
|
label_studio_sdk/types/s3export_storage_status.py,sha256=HYCH0ZH90Oi-_1WgOo6d19rFm5JJ9M7tn5tVPL71P70,214
|
|
289
306
|
label_studio_sdk/types/s3import_storage.py,sha256=2mLWZ0DlLPREqyH2OF0F1bExFmUzbDGan7UB4wDlPzg,3500
|
|
@@ -345,7 +362,7 @@ label_studio_sdk/workspaces/members/client.py,sha256=IVM52Yq_9zMQ3TUHT0AkZ5BTQ9a
|
|
|
345
362
|
label_studio_sdk/workspaces/members/types/__init__.py,sha256=ZIa_rd7d6K9ZITjTU6fptyGgvjNDySksJ7Rbn4wyhD4,252
|
|
346
363
|
label_studio_sdk/workspaces/members/types/members_create_response.py,sha256=7Hp5FSWm4xR5ZOEmEIglq5HYtM9KWZZBDp87jw7jYFg,668
|
|
347
364
|
label_studio_sdk/workspaces/members/types/members_list_response_item.py,sha256=DIc5DJoVahI9olBis_iFgOJrAf05m2fCE8g4R5ZeDko,712
|
|
348
|
-
label_studio_sdk-1.0.
|
|
349
|
-
label_studio_sdk-1.0.
|
|
350
|
-
label_studio_sdk-1.0.
|
|
351
|
-
label_studio_sdk-1.0.
|
|
365
|
+
label_studio_sdk-1.0.12.dist-info/LICENSE,sha256=ymVrFcHiJGjHeY30NWZgdV-xzNEtfuC63oK9ZeMDjhs,11341
|
|
366
|
+
label_studio_sdk-1.0.12.dist-info/METADATA,sha256=Wn4jvmJgSE1RkJyMXNV0RjrjMcmzk33Mn7jN_2STUWE,5987
|
|
367
|
+
label_studio_sdk-1.0.12.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
368
|
+
label_studio_sdk-1.0.12.dist-info/RECORD,,
|
|
File without changes
|