label-studio-sdk 2.0.10__py3-none-any.whl → 2.0.11__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/activity_logs/client.py +12 -0
- label_studio_sdk/annotation_history/client.py +36 -0
- label_studio_sdk/annotation_reviews/client.py +60 -0
- label_studio_sdk/billing/client.py +12 -0
- label_studio_sdk/comments/client.py +72 -0
- label_studio_sdk/export_storage/azure_spi/client.py +84 -0
- label_studio_sdk/export_storage/databricks/client.py +84 -0
- label_studio_sdk/export_storage/gcswif/client.py +84 -0
- label_studio_sdk/export_storage/s3s/client.py +84 -0
- label_studio_sdk/import_storage/azure_spi/client.py +84 -0
- label_studio_sdk/import_storage/databricks/client.py +84 -0
- label_studio_sdk/import_storage/gcswif/client.py +84 -0
- label_studio_sdk/import_storage/s3s/client.py +84 -0
- label_studio_sdk/label_interface/control_tags.py +12 -7
- label_studio_sdk/ml/client.py +14 -2
- label_studio_sdk/model_providers/client.py +72 -0
- label_studio_sdk/organizations/client.py +30 -6
- label_studio_sdk/organizations/invites/client.py +24 -0
- label_studio_sdk/organizations/members/client.py +24 -0
- label_studio_sdk/organizations/permissions/client.py +60 -0
- label_studio_sdk/project_templates/client.py +76 -4
- label_studio_sdk/projects/__init__.py +6 -0
- label_studio_sdk/projects/assignments/client.py +60 -0
- label_studio_sdk/projects/client.py +12 -0
- label_studio_sdk/projects/members/bulk/client.py +24 -0
- label_studio_sdk/projects/members/client.py +12 -0
- label_studio_sdk/projects/members/paginated/client.py +12 -0
- label_studio_sdk/projects/metrics/client.py +24 -0
- label_studio_sdk/projects/pauses/client.py +60 -0
- label_studio_sdk/projects/stats/__init__.py +6 -0
- label_studio_sdk/projects/stats/client.py +486 -1
- label_studio_sdk/projects/stats/types/__init__.py +6 -0
- label_studio_sdk/projects/stats/types/stats_model_version_annotator_agreement_response.py +19 -0
- label_studio_sdk/projects/stats/types/stats_model_version_ground_truth_agreement_response.py +19 -0
- label_studio_sdk/projects/stats/types/stats_model_version_prediction_agreement_response.py +19 -0
- label_studio_sdk/prompts/client.py +96 -0
- label_studio_sdk/prompts/indicators/client.py +24 -0
- label_studio_sdk/prompts/runs/client.py +36 -0
- label_studio_sdk/prompts/versions/client.py +84 -0
- label_studio_sdk/sso/saml/client.py +24 -0
- label_studio_sdk/sso/scim/client.py +24 -0
- label_studio_sdk/types/default_role.py +2 -2
- label_studio_sdk/types/lse_organization.py +1 -1
- label_studio_sdk/types/project_template.py +1 -1
- label_studio_sdk/types/project_template_request.py +1 -1
- label_studio_sdk/users/client.py +24 -0
- label_studio_sdk/versions/client.py +12 -0
- {label_studio_sdk-2.0.10.dist-info → label_studio_sdk-2.0.11.dist-info}/METADATA +1 -1
- {label_studio_sdk-2.0.10.dist-info → label_studio_sdk-2.0.11.dist-info}/RECORD +51 -48
- {label_studio_sdk-2.0.10.dist-info → label_studio_sdk-2.0.11.dist-info}/LICENSE +0 -0
- {label_studio_sdk-2.0.10.dist-info → label_studio_sdk-2.0.11.dist-info}/WHEEL +0 -0
|
@@ -13,7 +13,7 @@ class ProjectTemplate(UncheckedBaseModel):
|
|
|
13
13
|
created_by: typing.Optional[int] = None
|
|
14
14
|
custom_script: typing.Optional[str] = pydantic.Field(default=None)
|
|
15
15
|
"""
|
|
16
|
-
custom script for projects created from this template
|
|
16
|
+
custom script (Plugin) for projects created from this template
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
description: typing.Optional[str] = None
|
|
@@ -11,7 +11,7 @@ class ProjectTemplateRequest(UncheckedBaseModel):
|
|
|
11
11
|
created_by: typing.Optional[int] = None
|
|
12
12
|
custom_script: typing.Optional[str] = pydantic.Field(default=None)
|
|
13
13
|
"""
|
|
14
|
-
custom script for projects created from this template
|
|
14
|
+
custom script (Plugin) for projects created from this template
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
description: typing.Optional[str] = None
|
label_studio_sdk/users/client.py
CHANGED
|
@@ -26,6 +26,12 @@ class UsersClient:
|
|
|
26
26
|
|
|
27
27
|
def get_current_user(self, *, request_options: typing.Optional[RequestOptions] = None) -> LseUserApi:
|
|
28
28
|
"""
|
|
29
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
30
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
31
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
32
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
33
|
+
</p>
|
|
34
|
+
</Card>
|
|
29
35
|
Get info about the currently authenticated user.
|
|
30
36
|
|
|
31
37
|
Parameters
|
|
@@ -84,6 +90,12 @@ class UsersClient:
|
|
|
84
90
|
request_options: typing.Optional[RequestOptions] = None,
|
|
85
91
|
) -> LseUserApi:
|
|
86
92
|
"""
|
|
93
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
94
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
95
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
96
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
97
|
+
</p>
|
|
98
|
+
</Card>
|
|
87
99
|
Update details for the currently authenticated user.
|
|
88
100
|
|
|
89
101
|
Parameters
|
|
@@ -739,6 +751,12 @@ class AsyncUsersClient:
|
|
|
739
751
|
|
|
740
752
|
async def get_current_user(self, *, request_options: typing.Optional[RequestOptions] = None) -> LseUserApi:
|
|
741
753
|
"""
|
|
754
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
755
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
756
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
757
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
758
|
+
</p>
|
|
759
|
+
</Card>
|
|
742
760
|
Get info about the currently authenticated user.
|
|
743
761
|
|
|
744
762
|
Parameters
|
|
@@ -805,6 +823,12 @@ class AsyncUsersClient:
|
|
|
805
823
|
request_options: typing.Optional[RequestOptions] = None,
|
|
806
824
|
) -> LseUserApi:
|
|
807
825
|
"""
|
|
826
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
827
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
828
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
829
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
830
|
+
</p>
|
|
831
|
+
</Card>
|
|
808
832
|
Update details for the currently authenticated user.
|
|
809
833
|
|
|
810
834
|
Parameters
|
|
@@ -16,6 +16,12 @@ class VersionsClient:
|
|
|
16
16
|
|
|
17
17
|
def get(self, *, request_options: typing.Optional[RequestOptions] = None) -> VersionResponse:
|
|
18
18
|
"""
|
|
19
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
20
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
21
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
22
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
23
|
+
</p>
|
|
24
|
+
</Card>
|
|
19
25
|
Get version information about the Label Studio instance.
|
|
20
26
|
|
|
21
27
|
Parameters
|
|
@@ -63,6 +69,12 @@ class AsyncVersionsClient:
|
|
|
63
69
|
|
|
64
70
|
async def get(self, *, request_options: typing.Optional[RequestOptions] = None) -> VersionResponse:
|
|
65
71
|
"""
|
|
72
|
+
<Card href="https://humansignal.com/goenterprise">
|
|
73
|
+
<img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
|
|
74
|
+
<p style="margin-top: 10px; font-size: 14px;">
|
|
75
|
+
This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
|
|
76
|
+
</p>
|
|
77
|
+
</Card>
|
|
66
78
|
Get version information about the Label Studio instance.
|
|
67
79
|
|
|
68
80
|
Parameters
|
|
@@ -41,15 +41,15 @@ label_studio_sdk/actions/types/actions_create_request_selected_items_included.py
|
|
|
41
41
|
label_studio_sdk/actions/types/actions_list_response_item.py,sha256=ETwtiyW5_q-wI3PU0a5MwVS8h7o9r74_WHsU4Pc5INU,904
|
|
42
42
|
label_studio_sdk/actions/types/actions_list_response_item_dialog.py,sha256=nhaowUWkHdJ5JfUsNf4blwGezPDjYL4XwbFaFV7--zY,770
|
|
43
43
|
label_studio_sdk/activity_logs/__init__.py,sha256=AeLFtN6yzW4f6i1yUTEuMcA961RLWuP2PoTWz2xSN9M,159
|
|
44
|
-
label_studio_sdk/activity_logs/client.py,sha256=
|
|
44
|
+
label_studio_sdk/activity_logs/client.py,sha256=CIIYicxpgeuibOXqndmPyOB3Tf-IpfM-rZ_T-sM1OyY,9508
|
|
45
45
|
label_studio_sdk/activity_logs/types/__init__.py,sha256=jim5zgH3SbEIX92tkQzrsEkg4qNwCEDDfoyliilmasM,187
|
|
46
46
|
label_studio_sdk/activity_logs/types/activity_logs_list_request_method.py,sha256=rhB0Z5rU5cZXMtojXAYaV6pTmd0IJ2h7uwx2woObmIY,201
|
|
47
47
|
label_studio_sdk/annotation_history/__init__.py,sha256=zyb4TzC36_UGiIE6wAb6reRHKFiMVkDvNTXzwpkoTUE,163
|
|
48
|
-
label_studio_sdk/annotation_history/client.py,sha256=
|
|
48
|
+
label_studio_sdk/annotation_history/client.py,sha256=bjVgXfGYxwE6IOqTimRFZnhMxCowQEKdp_PQgj_-UZ0,16719
|
|
49
49
|
label_studio_sdk/annotation_history/types/__init__.py,sha256=JMZRD8KvvAgTRe6m437U8XFP1GN5_skqX04aKfh9-Xc,192
|
|
50
50
|
label_studio_sdk/annotation_history/types/annotation_history_delete_response.py,sha256=tKUosWudZw24GQaGInkTmva9a4FHYIvWpOXt09_tTKI,673
|
|
51
51
|
label_studio_sdk/annotation_reviews/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
52
|
-
label_studio_sdk/annotation_reviews/client.py,sha256=
|
|
52
|
+
label_studio_sdk/annotation_reviews/client.py,sha256=C8xdIe8tHc_jgio7yiOqVfx0odVvaclAAdFJ47q2We4,27117
|
|
53
53
|
label_studio_sdk/annotations/__init__.py,sha256=u4CxVEhwQbKSWkrjkxLWcDiP6gXajpbAh9eJ2BndFR8,289
|
|
54
54
|
label_studio_sdk/annotations/client.py,sha256=5WwgsMNydsGq4hOZkw9bNgfYFqnB6e1Zc8Da7JehiiY,39894
|
|
55
55
|
label_studio_sdk/annotations/types/__init__.py,sha256=fFJUpZiJV7q7otQJVzsz9wJ1R8j_5qnm59z6ktmhWhE,409
|
|
@@ -57,10 +57,10 @@ label_studio_sdk/annotations/types/annotation_bulk_serializer_with_selected_item
|
|
|
57
57
|
label_studio_sdk/annotations/types/annotations_create_bulk_response_item.py,sha256=I-yNfeAGxx1sSeG2QQd_EHFo2m2xHOI7PEfZFWQAWMU,631
|
|
58
58
|
label_studio_sdk/base_client.py,sha256=g60CEVYG-tsos7eKV9vwEe3Qyos_neoNgFVGcN0pDlE,12810
|
|
59
59
|
label_studio_sdk/billing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
60
|
-
label_studio_sdk/billing/client.py,sha256=
|
|
60
|
+
label_studio_sdk/billing/client.py,sha256=sxin4WXkYle7nSQaiGv5oKq68tERfQJQXgBoe8fpyHE,4658
|
|
61
61
|
label_studio_sdk/client.py,sha256=g5YFI-U6OxGiGJ2aMqeREF1tGt-7LA5NSDl2CvW0wNA,916
|
|
62
62
|
label_studio_sdk/comments/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
63
|
-
label_studio_sdk/comments/client.py,sha256=
|
|
63
|
+
label_studio_sdk/comments/client.py,sha256=hpJgZJWMVA3IsqDvM3tqmjOg61kutIy82UNLqWz8ung,33818
|
|
64
64
|
label_studio_sdk/converter/README.md,sha256=uzujsmSJSGxd3XcWx4pQ1Hw87w6Smq6T4LhS0Eb-jU4,22317
|
|
65
65
|
label_studio_sdk/converter/__init__.py,sha256=qppSJed16HAiZbGons0yVrPRjszuWFia025Rm477q1c,201
|
|
66
66
|
label_studio_sdk/converter/audio.py,sha256=U9oTULkeimodZhIkB16Gl3eJD8YzsbADWxW_r2tPcxw,1905
|
|
@@ -108,14 +108,14 @@ label_studio_sdk/export_storage/__init__.py,sha256=wV8vx94m27R37JSlTLqPXdmp0Yv1Z
|
|
|
108
108
|
label_studio_sdk/export_storage/azure/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
109
109
|
label_studio_sdk/export_storage/azure/client.py,sha256=IWs16aePljaO_k9OFCK46TaWXRx-bZ98MhJEhcAS6Wg,30760
|
|
110
110
|
label_studio_sdk/export_storage/azure_spi/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
111
|
-
label_studio_sdk/export_storage/azure_spi/client.py,sha256=
|
|
111
|
+
label_studio_sdk/export_storage/azure_spi/client.py,sha256=oaqfJmvRlsXQMEisdRxIpYALyQFkzU2rF-qknC02NAg,51796
|
|
112
112
|
label_studio_sdk/export_storage/client.py,sha256=MKuL7B6CMCJEn8l5hPEeR4QkWCTUSWulMkHcfSHurqc,5960
|
|
113
113
|
label_studio_sdk/export_storage/databricks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
114
|
-
label_studio_sdk/export_storage/databricks/client.py,sha256=
|
|
114
|
+
label_studio_sdk/export_storage/databricks/client.py,sha256=0oa337Bn4GOpSY0DIR6EYXWvCXfeSJujqRg26Xkz-Bw,51288
|
|
115
115
|
label_studio_sdk/export_storage/gcs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
116
116
|
label_studio_sdk/export_storage/gcs/client.py,sha256=kccAvVrTrYIKqhB8DDAoUTeMrxusBf5p2t9wTuXTQSw,31487
|
|
117
117
|
label_studio_sdk/export_storage/gcswif/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
118
|
-
label_studio_sdk/export_storage/gcswif/client.py,sha256=
|
|
118
|
+
label_studio_sdk/export_storage/gcswif/client.py,sha256=mjs2qJZ3IcaVkHkQre6H6FMzxTDI6NUeu4eYqqOMwGw,53194
|
|
119
119
|
label_studio_sdk/export_storage/local/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
120
120
|
label_studio_sdk/export_storage/local/client.py,sha256=W1xgRvC117QdTtkjsPz0wlbaR8iiemFvEOo-bBxlvaw,30048
|
|
121
121
|
label_studio_sdk/export_storage/redis/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -123,7 +123,7 @@ label_studio_sdk/export_storage/redis/client.py,sha256=orZ3iAuPU9zyLS2o_LY26A__2
|
|
|
123
123
|
label_studio_sdk/export_storage/s3/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
124
124
|
label_studio_sdk/export_storage/s3/client.py,sha256=4td-zgf2rbBjYq6vGwM9sgXjvNOcVZrsVa2_6ixnos4,34766
|
|
125
125
|
label_studio_sdk/export_storage/s3s/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
126
|
-
label_studio_sdk/export_storage/s3s/client.py,sha256=
|
|
126
|
+
label_studio_sdk/export_storage/s3s/client.py,sha256=TGVTrvysOLntVBo8k1PpC2zNw40fiFTPN8rpDB_UtvQ,54294
|
|
127
127
|
label_studio_sdk/export_storage/types/__init__.py,sha256=G7iAfiRBL1WTYsluefJV4ZFUaBmK4mMp9sAMPJ7NZbw,203
|
|
128
128
|
label_studio_sdk/export_storage/types/export_storage_list_types_response_item.py,sha256=g-yiiSzRPKOgjN_fiOmGnrL3C92JYBUZMAQSHlXjf14,644
|
|
129
129
|
label_studio_sdk/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -132,14 +132,14 @@ label_studio_sdk/import_storage/__init__.py,sha256=_h-ZnZ_TUsugME8zE3F_aeAkbbIU5
|
|
|
132
132
|
label_studio_sdk/import_storage/azure/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
133
133
|
label_studio_sdk/import_storage/azure/client.py,sha256=8SFzqUcy3H-fqtK3MVeOTCZAEcXssI2GonQf-Dj3a4o,35336
|
|
134
134
|
label_studio_sdk/import_storage/azure_spi/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
135
|
-
label_studio_sdk/import_storage/azure_spi/client.py,sha256=
|
|
135
|
+
label_studio_sdk/import_storage/azure_spi/client.py,sha256=pjA5kbt3m35gD5qae_h4vweZ5BTccavqKkX8rbtx9GU,53428
|
|
136
136
|
label_studio_sdk/import_storage/client.py,sha256=O41W9ohoc2IjUlr7DZpE5tAcGM_yHlaIQIpLBycKg4I,5946
|
|
137
137
|
label_studio_sdk/import_storage/databricks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
138
|
-
label_studio_sdk/import_storage/databricks/client.py,sha256=
|
|
138
|
+
label_studio_sdk/import_storage/databricks/client.py,sha256=2WUB25e8lEwejZHwAnBaGOgG2Uc7THLN1QkT7vfkbRM,53190
|
|
139
139
|
label_studio_sdk/import_storage/gcs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
140
140
|
label_studio_sdk/import_storage/gcs/client.py,sha256=i7YSqj_akheMLPgOC14Tc4NDc8fIdpQYVxh8ipWWiiM,36087
|
|
141
141
|
label_studio_sdk/import_storage/gcswif/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
142
|
-
label_studio_sdk/import_storage/gcswif/client.py,sha256=
|
|
142
|
+
label_studio_sdk/import_storage/gcswif/client.py,sha256=6y34HkEruOQ0d3gtAx26TnopdTGGEWqe-3JBnTlKmeA,54882
|
|
143
143
|
label_studio_sdk/import_storage/local/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
144
144
|
label_studio_sdk/import_storage/local/client.py,sha256=vhTRYk4DklYlNbgd5vqwbys96yb5vlrUAHaJHfXQ-wg,29958
|
|
145
145
|
label_studio_sdk/import_storage/redis/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -147,14 +147,14 @@ label_studio_sdk/import_storage/redis/client.py,sha256=G1_ocD4lee1WkwybSfECaVOUM
|
|
|
147
147
|
label_studio_sdk/import_storage/s3/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
148
148
|
label_studio_sdk/import_storage/s3/client.py,sha256=_r3GxCkjf6r2QsJ32ll89dsI4EdrLW-4kEwYvA2M49c,40384
|
|
149
149
|
label_studio_sdk/import_storage/s3s/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
150
|
-
label_studio_sdk/import_storage/s3s/client.py,sha256=
|
|
150
|
+
label_studio_sdk/import_storage/s3s/client.py,sha256=s4br83RdT8p3IuzVQjU2YybSbCgv6I-9PPTGiBS1U-8,56044
|
|
151
151
|
label_studio_sdk/import_storage/types/__init__.py,sha256=LSPRtCZ04H1CRzFC6KQnse2KDh5Weeo9IPmRoluhvoc,203
|
|
152
152
|
label_studio_sdk/import_storage/types/import_storage_list_types_response_item.py,sha256=H-F-2nMIlP5v6mdPbR0mDSOd1ApwZfhh3MIyqj9iyXk,644
|
|
153
153
|
label_studio_sdk/jwt_settings/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
154
154
|
label_studio_sdk/jwt_settings/client.py,sha256=ts6-0r8XY-KH8nBdZnKkIDSPZDMdle0JsIX3xOVOaYo,8058
|
|
155
155
|
label_studio_sdk/label_interface/__init__.py,sha256=Eg6y3mAaYdKzJ5ZPhU_BTX2qoNPafthdxLD2I_rmXoU,38
|
|
156
156
|
label_studio_sdk/label_interface/base.py,sha256=NCgY7ntk0WSc9O9iXu3g37-CxbZgCx_WO2pvOEHK-cg,2786
|
|
157
|
-
label_studio_sdk/label_interface/control_tags.py,sha256=
|
|
157
|
+
label_studio_sdk/label_interface/control_tags.py,sha256=Rxl0AX0U_3pl5h60aUOc3JqTj94nemULDHp21ak-ll0,33110
|
|
158
158
|
label_studio_sdk/label_interface/create.py,sha256=c3h5_FF4u5J62_mqq1oK2mjqXL-I1559C6MfoxkgO6s,6993
|
|
159
159
|
label_studio_sdk/label_interface/data_examples.json,sha256=CU2rhDG0946a2ImMcA4V2R2OYTBCMtU8l_Y4vljHHA8,8860
|
|
160
160
|
label_studio_sdk/label_interface/interface.py,sha256=3wAn9fPzgy9vync5JTN0XbBBafjZBBcV31SeCCei1YU,56217
|
|
@@ -163,32 +163,32 @@ label_studio_sdk/label_interface/object_tags.py,sha256=AUHP3YOnoa7RJloha1_N1-aPd
|
|
|
163
163
|
label_studio_sdk/label_interface/objects.py,sha256=V1Spp0S9qE7iA-5kPCi0QyHrJ80Du9BUuYMsQUAQqc0,1535
|
|
164
164
|
label_studio_sdk/label_interface/region.py,sha256=th39WeQk8ypi-4krEpsW0BZnoygu4XgvP4w7NkRQp2M,1755
|
|
165
165
|
label_studio_sdk/ml/__init__.py,sha256=fTUzBUIsUwvsymtq9NhvNW3MUKpzQqGfke4PBTcImQU,267
|
|
166
|
-
label_studio_sdk/ml/client.py,sha256=
|
|
166
|
+
label_studio_sdk/ml/client.py,sha256=WmUMpSyy9pbtAekY4lGBkubI33wq61Y2-btabr7faZQ,42785
|
|
167
167
|
label_studio_sdk/ml/types/__init__.py,sha256=qXv2q70PJ-xUPTaWx0W9UQTn0s_uL9__jEFuQgE7Sik,377
|
|
168
168
|
label_studio_sdk/ml/types/ml_create_request_auth_method.py,sha256=2toHmZJAOMq_r_r-kHCscI5R73j0hvSflVFc_xS6zm8,171
|
|
169
169
|
label_studio_sdk/ml/types/ml_list_model_versions_response.py,sha256=2I9n8izbtLK-TRchvzNjHq5CYH6mvRecFkWqiUR83g4,656
|
|
170
170
|
label_studio_sdk/ml/types/ml_update_request_auth_method.py,sha256=IfZm_tgqLZ9LaRZvOm_1_SGqx0kXtkxOfCeomLF0SZk,171
|
|
171
171
|
label_studio_sdk/model_providers/__init__.py,sha256=qJwxSM8nhdwwUWeqFW7pKaTBktB3Jqabh_oDWPcddfk,193
|
|
172
|
-
label_studio_sdk/model_providers/client.py,sha256=
|
|
172
|
+
label_studio_sdk/model_providers/client.py,sha256=R7VJ4MbIGcz8QD0rRoF3M9OUumRmIR4tb7MmMTbwp6E,35097
|
|
173
173
|
label_studio_sdk/model_providers/types/__init__.py,sha256=vSsm_DCgvoiD0sK3R6xoI3GInGJjavtc5bNtSAnTLMI,240
|
|
174
174
|
label_studio_sdk/model_providers/types/model_providers_list_model_provider_choices_response.py,sha256=8K2r1Zwh1XwV2uK3F2PpLcuozsQkuqtCtEzWYvbP6M0,642
|
|
175
175
|
label_studio_sdk/organizations/__init__.py,sha256=zaatz_dOveQ-LLlIhPykE9zB2lhnbLenklYdPgdYsgk,278
|
|
176
|
-
label_studio_sdk/organizations/client.py,sha256=
|
|
176
|
+
label_studio_sdk/organizations/client.py,sha256=P4DGiceglG-m8e6tarF9uT5c3R6ELYo6Si2L4QbPwLs,34052
|
|
177
177
|
label_studio_sdk/organizations/invites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
178
|
-
label_studio_sdk/organizations/invites/client.py,sha256=
|
|
178
|
+
label_studio_sdk/organizations/invites/client.py,sha256=pQWATv5l0tjGHAtEucRkuCDATUmElnH51lk3-9-G8c0,13930
|
|
179
179
|
label_studio_sdk/organizations/members/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
180
|
-
label_studio_sdk/organizations/members/client.py,sha256=
|
|
180
|
+
label_studio_sdk/organizations/members/client.py,sha256=EApDVbdTT7R_jZH-j5r19u9oZmK9axS6jfM2dhZoKOo,24709
|
|
181
181
|
label_studio_sdk/organizations/permissions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
182
|
-
label_studio_sdk/organizations/permissions/client.py,sha256=
|
|
182
|
+
label_studio_sdk/organizations/permissions/client.py,sha256=nMC8BhizdS8AGCsGsPLG3GSBDOTc_b9Yi-q2wg96U7A,42547
|
|
183
183
|
label_studio_sdk/organizations/types/__init__.py,sha256=9akBrG6IHZY0u-MRdMAN8ce6QXzyoy3dx2_F6vmzZAI,247
|
|
184
184
|
label_studio_sdk/organizations/types/patched_default_role_request_custom_scripts_editable_by.py,sha256=MvH5EGQ7Hk6q0ZFJvl8HtswlEPUOJ156g02Vr3DDbo4,304
|
|
185
185
|
label_studio_sdk/predictions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
186
186
|
label_studio_sdk/predictions/client.py,sha256=byZeW8GKDcQybZtF7JypVSuDkAOynDZ7B3m9zOcKns0,23930
|
|
187
187
|
label_studio_sdk/project_templates/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
188
|
-
label_studio_sdk/project_templates/client.py,sha256=
|
|
189
|
-
label_studio_sdk/projects/__init__.py,sha256=
|
|
188
|
+
label_studio_sdk/project_templates/client.py,sha256=ty8J3PrZUR1mN4d8lyb6KMfl5EHjQiDaur4qA3EXOAg,35346
|
|
189
|
+
label_studio_sdk/projects/__init__.py,sha256=g2hR-jX-HkZK7qZfZT0nYmpImN7JNNVA1DHmUCC3Tyw,4226
|
|
190
190
|
label_studio_sdk/projects/assignments/__init__.py,sha256=bllP6i4AeZvmw72dM7ZUC3yV6jo7T_xs6ygkFpi0BcY,1419
|
|
191
|
-
label_studio_sdk/projects/assignments/client.py,sha256=
|
|
191
|
+
label_studio_sdk/projects/assignments/client.py,sha256=aCM5S_EmijY0UTYqlqaRi2rnbezMN6IkzHtdvQ3nDDM,31772
|
|
192
192
|
label_studio_sdk/projects/assignments/types/__init__.py,sha256=0qltWGWdInAPW5mvPcOHdhNjgGSoR-bgr5gPa6Ctql8,2169
|
|
193
193
|
label_studio_sdk/projects/assignments/types/assignments_assign_request_type.py,sha256=fl4F1-BoZ1Bs433vlfQSxZ5EeEyvyft_wfoL-5rpnTU,164
|
|
194
194
|
label_studio_sdk/projects/assignments/types/assignments_bulk_assign_request_filters.py,sha256=GSGJG2lJWhsdfv2ylokYI9SEMFlRSu9T93TVxKJCfFc,1656
|
|
@@ -204,7 +204,7 @@ label_studio_sdk/projects/assignments/types/assignments_bulk_assign_request_type
|
|
|
204
204
|
label_studio_sdk/projects/assignments/types/assignments_bulk_assign_response.py,sha256=ufd6CtcQZa7g3qX6IYoI_iTa5XdPK_Gj3qXt0Ox0djE,783
|
|
205
205
|
label_studio_sdk/projects/assignments/types/assignments_delete_request_type.py,sha256=v8TJIzwbZMxDx4OqODX3jwlrYnAeDE5W3jJFYaTe7WE,164
|
|
206
206
|
label_studio_sdk/projects/assignments/types/assignments_update_request_type.py,sha256=bq1LYqiRIF4HQIzswN70myDCpgRWNWCzS2Y65-gtEQ8,164
|
|
207
|
-
label_studio_sdk/projects/client.py,sha256=
|
|
207
|
+
label_studio_sdk/projects/client.py,sha256=pPvF-j8QnGoMtUQ6UVvosXS6rETtJM2c5kYA9DCssh0,96128
|
|
208
208
|
label_studio_sdk/projects/client_ext.py,sha256=evGy81u0Ek6Q3GV1DfxPAq3iibNVLOM768pqF4EO4ZY,2242
|
|
209
209
|
label_studio_sdk/projects/exports/__init__.py,sha256=d-VUTRrtssGHCzxO7Hb4sUA8dcvfiQhlW1Z6x_KtvHQ,145
|
|
210
210
|
label_studio_sdk/projects/exports/client.py,sha256=fn7cWuPfgq5Qlc2fx2wevMVryviFOoLo46WjTx9D0jQ,39806
|
|
@@ -213,24 +213,24 @@ label_studio_sdk/projects/exports/types/__init__.py,sha256=EZglhKUTrJVx67LR9c3cj
|
|
|
213
213
|
label_studio_sdk/projects/exports/types/exports_convert_response.py,sha256=TIAw4XZWbNxmoTZB4xNjkEBBSdAzKx9qE-J3COAoukU,652
|
|
214
214
|
label_studio_sdk/projects/members/__init__.py,sha256=5TumCIWOTZDOZa5pJd-sg4BooYoPm9hqO0N3frUCGlo,225
|
|
215
215
|
label_studio_sdk/projects/members/bulk/__init__.py,sha256=a9iYfTwhgtS3l_5HLym31_5xHD4G3jWA_T-ZLvoz2Qc,175
|
|
216
|
-
label_studio_sdk/projects/members/bulk/client.py,sha256=
|
|
216
|
+
label_studio_sdk/projects/members/bulk/client.py,sha256=g9-AbfoQj7Ue0F4cu2YIH57pjdMYTCYOErIGVk7OPx4,12084
|
|
217
217
|
label_studio_sdk/projects/members/bulk/types/__init__.py,sha256=mIdGHkaAbK1Mq6tVM0QA8IqefxknjU3zLZgbIaIOdhY,221
|
|
218
218
|
label_studio_sdk/projects/members/bulk/types/bulk_delete_response.py,sha256=sUNqoGRnpxGxxx1i0lYuK5F_L0RzxlQ3rPDhxqih1hA,602
|
|
219
219
|
label_studio_sdk/projects/members/bulk/types/bulk_post_response.py,sha256=LV0qxT81BaKqMdG4__k_tN3NmMCjMFIpjIsE5FJBuBk,598
|
|
220
|
-
label_studio_sdk/projects/members/client.py,sha256=
|
|
220
|
+
label_studio_sdk/projects/members/client.py,sha256=sp9xTvFhEmg4ohqsFX8Bi2W-i3CHoibswu_bbZQ5aH4,5897
|
|
221
221
|
label_studio_sdk/projects/members/paginated/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
222
|
-
label_studio_sdk/projects/members/paginated/client.py,sha256=
|
|
222
|
+
label_studio_sdk/projects/members/paginated/client.py,sha256=GPPI6h1EfokQ4gMjo5c5qqx3dXcm474Uw8EC36G0lfg,9651
|
|
223
223
|
label_studio_sdk/projects/metrics/__init__.py,sha256=m9tH0fLuScfYi_pGIPNCGE_fRvt0FzmjCGUmPyUZ1SA,179
|
|
224
|
-
label_studio_sdk/projects/metrics/client.py,sha256=
|
|
224
|
+
label_studio_sdk/projects/metrics/client.py,sha256=Zj_lz-gIqfExcVGU9PW-sLbTG_jCDX06V96nN8B6Di0,11082
|
|
225
225
|
label_studio_sdk/projects/metrics/custom/__init__.py,sha256=MixEL4qUn7vOlK7SihoQXx_25y3MZAPlXFkgH1vTI4o,147
|
|
226
226
|
label_studio_sdk/projects/metrics/custom/client.py,sha256=FLXwLccyHFopfsyIFtjqScS--MFacLFiEKU-N6cz5Jw,16161
|
|
227
227
|
label_studio_sdk/projects/metrics/custom/types/__init__.py,sha256=UvVnkSwi8HUB06tvLrlomGQQ_0ysMj4LjYK7W8zn0e4,168
|
|
228
228
|
label_studio_sdk/projects/metrics/custom/types/custom_get_lambda_response.py,sha256=2j442w02YZulagDMpp6Cy1gcHuZzxy7eziRWsTg4bJ0,574
|
|
229
229
|
label_studio_sdk/projects/pauses/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
230
|
-
label_studio_sdk/projects/pauses/client.py,sha256=
|
|
231
|
-
label_studio_sdk/projects/stats/__init__.py,sha256=
|
|
232
|
-
label_studio_sdk/projects/stats/client.py,sha256=
|
|
233
|
-
label_studio_sdk/projects/stats/types/__init__.py,sha256=
|
|
230
|
+
label_studio_sdk/projects/pauses/client.py,sha256=akgtJOPUdnk5_rEvnyZythglrg3b3U196bWhkvU6ju4,25669
|
|
231
|
+
label_studio_sdk/projects/stats/__init__.py,sha256=1E9MMIVsuMwxeI5SAI6y15vzTo82TgjCx5WU51ZOGoQ,2077
|
|
232
|
+
label_studio_sdk/projects/stats/client.py,sha256=t9cJTGvUIOyK1nhegTrVUlyNJqRMNIsxFgOn5hLxAUA,61457
|
|
233
|
+
label_studio_sdk/projects/stats/types/__init__.py,sha256=nIUhMDRQL0NOYCOZZDV5cYgI-K-QDUyY3xstIa4bR3g,3208
|
|
234
234
|
label_studio_sdk/projects/stats/types/stats_agreement_annotator_response.py,sha256=j_0I66TIKwBjNgHzT9Bcw1RALVefHif5ASuhzhR5xro,874
|
|
235
235
|
label_studio_sdk/projects/stats/types/stats_data_filters_response.py,sha256=vowYJDKsc0VnKp3RUknIFF21R5wYtoI8hgi_WzIo-ew,812
|
|
236
236
|
label_studio_sdk/projects/stats/types/stats_data_filters_response_user_filters.py,sha256=2kzo1b6s8lzDAmdOwUqG_oAvu68Sm6tN-BdLX6cvDLU,1133
|
|
@@ -242,6 +242,9 @@ label_studio_sdk/projects/stats/types/stats_iaa_response_iaa.py,sha256=xUQN36WYX
|
|
|
242
242
|
label_studio_sdk/projects/stats/types/stats_iaa_response_std.py,sha256=uwjLK1PqcKAV_YE88TFCJ_ZY6YGSHUIMJzUMsDh2BXY,147
|
|
243
243
|
label_studio_sdk/projects/stats/types/stats_lead_time_response.py,sha256=1KBMugKHch7C178ht1vJO0V60xBWMe4oaySkRJqTHNo,857
|
|
244
244
|
label_studio_sdk/projects/stats/types/stats_lead_time_response_lead_time_stats_item.py,sha256=znB3jHBJyY_-zm0ZfuHGnq4w7fy7SlYEpT91g47Ydfo,1032
|
|
245
|
+
label_studio_sdk/projects/stats/types/stats_model_version_annotator_agreement_response.py,sha256=QCnXvbgeFeZ52IVFRqNDHynrK9pUv7Zs3z78CcD3R3Y,623
|
|
246
|
+
label_studio_sdk/projects/stats/types/stats_model_version_ground_truth_agreement_response.py,sha256=HcGmX_ikU9esGelrEc3Z_Rh5xQ2pWhoDqyjwEj-wMBE,625
|
|
247
|
+
label_studio_sdk/projects/stats/types/stats_model_version_prediction_agreement_response.py,sha256=yzFeCQnt2gztCaj6zPeUPJ_kDRO9FVevuWb-ZMbThXw,653
|
|
245
248
|
label_studio_sdk/projects/stats/types/stats_total_agreement_response.py,sha256=4BHA48StBh-xB3raIXug5iUwBzw1kFUafAxedw1E7j8,348
|
|
246
249
|
label_studio_sdk/projects/stats/types/stats_total_agreement_response_one.py,sha256=NxRT9FbRISJsvLd4d3MY-HN0CS-Dgurbc2V5jqaEte8,634
|
|
247
250
|
label_studio_sdk/projects/stats/types/stats_total_agreement_response_zero.py,sha256=HWpWKHL9D2lS1PhaO8ORJelNKVBb3IZjk_QO3-dycEc,617
|
|
@@ -261,28 +264,28 @@ label_studio_sdk/projects/types/projects_duplicate_response.py,sha256=ZccLAQbnPI
|
|
|
261
264
|
label_studio_sdk/projects/types/projects_import_predictions_response.py,sha256=WB1IWMWFyQrDIRbnnwfakbHxShgjkpemdtxWqFWpbHg,716
|
|
262
265
|
label_studio_sdk/projects/types/projects_import_tasks_response.py,sha256=xCvl5LaPy0pnhaSxgXRhHOZfjCmhZyD1hfcBuqOXFNs,1654
|
|
263
266
|
label_studio_sdk/prompts/__init__.py,sha256=1iFVHCib0Oh9NY5V3pdQdThh3rK-jzbKp7fBTP7e8MU,449
|
|
264
|
-
label_studio_sdk/prompts/client.py,sha256=
|
|
267
|
+
label_studio_sdk/prompts/client.py,sha256=X85jNk-JlsWe_a-i3eqbiZKwgIjjxOREBnj5EirFjNQ,56393
|
|
265
268
|
label_studio_sdk/prompts/indicators/__init__.py,sha256=yoGwST9VAiG8VK9wMY3lg8sxjE66JpLOdOLexA7ao-Q,153
|
|
266
|
-
label_studio_sdk/prompts/indicators/client.py,sha256=
|
|
269
|
+
label_studio_sdk/prompts/indicators/client.py,sha256=FihIO95KtAFmgXAOmTKhAsmREmlmERNleO7Pz1Zq0_c,9447
|
|
267
270
|
label_studio_sdk/prompts/indicators/types/__init__.py,sha256=db20VVHX4XQIVSpTgzTKERxmOL8s9ccath9TOClQc5I,177
|
|
268
271
|
label_studio_sdk/prompts/indicators/types/indicators_list_response_item.py,sha256=k9Dmk1zVUjnodE1ngddiQ7pV-dB8r1_NqufD24x7qOQ,682
|
|
269
272
|
label_studio_sdk/prompts/runs/__init__.py,sha256=o6GLzKNZevVPlSvNx_Tdf8xNX51s6gA4SvNL2rUF7bk,157
|
|
270
|
-
label_studio_sdk/prompts/runs/client.py,sha256=
|
|
273
|
+
label_studio_sdk/prompts/runs/client.py,sha256=BvEjtCjla78HQQAo__ouKqstuiqh3V3_TQQls5_QsmY,19244
|
|
271
274
|
label_studio_sdk/prompts/runs/types/__init__.py,sha256=iAA-b05WePpMQ5Q7DejSb-vD38ET-cNNXBMlHU3i46Q,184
|
|
272
275
|
label_studio_sdk/prompts/runs/types/runs_list_request_project_subset.py,sha256=F3H-dbfdJpe5hD_V_buW2_ZtpMTgum7Pcgb1pLYecBo,178
|
|
273
276
|
label_studio_sdk/prompts/types/__init__.py,sha256=KkzGrUqIlFu-9GqtQtICgJl0qCIylKVtC5b1-Ocqzsc,230
|
|
274
277
|
label_studio_sdk/prompts/types/prompts_compatible_projects_request_project_type.py,sha256=vCvrgDI-pgSplbpDdi09I5d92jnPrLJtL-idng6xrD8,221
|
|
275
278
|
label_studio_sdk/prompts/versions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
276
|
-
label_studio_sdk/prompts/versions/client.py,sha256=
|
|
279
|
+
label_studio_sdk/prompts/versions/client.py,sha256=L5rOw-mFv8ysjAVHqUHut3etbS3H0Ln8L_hDb25Vzo0,46473
|
|
277
280
|
label_studio_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
278
281
|
label_studio_sdk/session_policy/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
279
282
|
label_studio_sdk/session_policy/client.py,sha256=7ORw472c-1RfXzIIC0dVz_2kyV3fiX3Tpv5XcfRt1so,7901
|
|
280
283
|
label_studio_sdk/sso/__init__.py,sha256=UNbZ_G5raB1cCERsDDsMQZHpKbQ1ZTVofRlwF_S0Yyc,118
|
|
281
284
|
label_studio_sdk/sso/client.py,sha256=k7ReNoT-oHec9rn1iOSF-yFejOujrOERyOvEaKy_jRk,866
|
|
282
285
|
label_studio_sdk/sso/saml/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
283
|
-
label_studio_sdk/sso/saml/client.py,sha256=
|
|
286
|
+
label_studio_sdk/sso/saml/client.py,sha256=8CArdlACF_2Q8-ZTxgytc09SdJ0v2W-QBTJ7pyF-sIA,11346
|
|
284
287
|
label_studio_sdk/sso/scim/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
285
|
-
label_studio_sdk/sso/scim/client.py,sha256=
|
|
288
|
+
label_studio_sdk/sso/scim/client.py,sha256=8N55KDeojAcjjM6RHCgxZvvQim6Km-i9OSH5vOh5elA,11342
|
|
286
289
|
label_studio_sdk/tasks/__init__.py,sha256=S7ezO_rgM2LjAdKINXt5BFDFHUgyr0DTIaDKN8COFaQ,145
|
|
287
290
|
label_studio_sdk/tasks/client.py,sha256=lwdS--4C1l8uf6gkkA24wYknp8hJvXwVyheL-cVPWaQ,59807
|
|
288
291
|
label_studio_sdk/tasks/client_ext.py,sha256=ZA0mE7DzgPWgUw4BKbtodyXJPCyG2Oe5BmMWWKuvn3M,786
|
|
@@ -343,7 +346,7 @@ label_studio_sdk/types/databricks_export_storage_request.py,sha256=uVLpa6z1QrSJ4
|
|
|
343
346
|
label_studio_sdk/types/databricks_import_storage.py,sha256=5Wkeff0ViMYd_acNKGhTvAIWgUZOxArlRSPXO8ffeL0,3086
|
|
344
347
|
label_studio_sdk/types/databricks_import_storage_request.py,sha256=vcNaEEV2LVJ7iETOc8a0NTq2QN1Iu2ls7YQpPmrLK9Y,3024
|
|
345
348
|
label_studio_sdk/types/default165enum.py,sha256=V1ZZVslQl1_FSPJhTQgdYchE38HcR8oyTqOEHYgOwVk,180
|
|
346
|
-
label_studio_sdk/types/default_role.py,sha256=
|
|
349
|
+
label_studio_sdk/types/default_role.py,sha256=ixBRsGje823e8LUZqvMZWHk0wslIMxyDrztMs2AdF30,3084
|
|
347
350
|
label_studio_sdk/types/default_role_custom_scripts_editable_by.py,sha256=5YdtFSNWL363z6C6IuucAVEFyxeztxd0ZgwHj3YZJv4,274
|
|
348
351
|
label_studio_sdk/types/edition_enum.py,sha256=ve-LU0FMQIY3RcCdQ3iEPjscCz-kft8hZ77oYRX_MZ8,162
|
|
349
352
|
label_studio_sdk/types/export.py,sha256=f8bjg023PNyBNlboaga1jypdW_NL0DKCqQTMdbmk3GU,1216
|
|
@@ -373,7 +376,7 @@ label_studio_sdk/types/lse_fields.py,sha256=_Ze25YVRDmPhlT2_h0KMYMxEgCL5FB-TsVEf
|
|
|
373
376
|
label_studio_sdk/types/lse_fields_onboarding_state.py,sha256=5Q4bueFKIHoiEnwhIjwKbn2SGz7LCSicZFyC4gneoNM,283
|
|
374
377
|
label_studio_sdk/types/lse_fields_trial_role.py,sha256=YVR9g-_xW2DNmlnGoxHf1QizyQFy4coHtY4GWuGwLDM,259
|
|
375
378
|
label_studio_sdk/types/lse_key_indicator_value.py,sha256=UT2AcLLzJkzXroiRHqOILwfDDEwIKB7EU7XttyVcIqk,1041
|
|
376
|
-
label_studio_sdk/types/lse_organization.py,sha256=
|
|
379
|
+
label_studio_sdk/types/lse_organization.py,sha256=Khg4ZoEHRqYlvFanbBanbWgcLKtUOz1ONr_KxkbMRXI,1790
|
|
377
380
|
label_studio_sdk/types/lse_organization_custom_scripts_editable_by.py,sha256=y-IxR7V6xr6n_z934BXzg4pEjZ06FF-lcT6YiYjLMaM,278
|
|
378
381
|
label_studio_sdk/types/lse_organization_member_list.py,sha256=NIkPnczq9KrowYJTtLGvGNQtSUejgrMnB7k-k5kuQ_Y,912
|
|
379
382
|
label_studio_sdk/types/lse_project.py,sha256=2wUkVY-6DClokcXCxRFHBO743XFXzj6VSc1Z_Su-Mus,7161
|
|
@@ -464,8 +467,8 @@ label_studio_sdk/types/project_subset_enum.py,sha256=KuppmnQZwBtl3WD1g6B7Cosyf-S
|
|
|
464
467
|
label_studio_sdk/types/project_subset_item.py,sha256=E0BmDYH_meV5UUfghhjWzsTgpnT-fZ0CZw_wZMptTmQ,682
|
|
465
468
|
label_studio_sdk/types/project_subset_task_item.py,sha256=-m_OjzZ5lTpC2ynO8zjKkeAkA7bwsQ8lYokUCVDb_yQ,940
|
|
466
469
|
label_studio_sdk/types/project_subset_tasks_response.py,sha256=H9UTzMq0UtFPX97C6IbgZN6_pCWO984gX94KSpu-IHc,894
|
|
467
|
-
label_studio_sdk/types/project_template.py,sha256=
|
|
468
|
-
label_studio_sdk/types/project_template_request.py,sha256=
|
|
470
|
+
label_studio_sdk/types/project_template.py,sha256=SzFdSCrUIcbAZHXTqPxVa3kQOdV2XQBhvY8rcVATGtA,1434
|
|
471
|
+
label_studio_sdk/types/project_template_request.py,sha256=SNd8HRmoyHoS9aICyx-41OYRtTFBH8BWFhuQpCWMLIU,1371
|
|
469
472
|
label_studio_sdk/types/prompts_status_enum.py,sha256=g0EHGa6fJav2Xq7_eNowijMX_q9bzZkjoImOf_-KuXE,391
|
|
470
473
|
label_studio_sdk/types/provider_enum.py,sha256=5WdjjsVnR3G2SCLsqYwRsCpgrNr96RuNiNMwiK5CNSc,230
|
|
471
474
|
label_studio_sdk/types/reason_enum.py,sha256=WYuK-HZBEaq6Ta_83YbXi40eYrzmOQVBAMxDgsztZZ8,229
|
|
@@ -528,13 +531,13 @@ label_studio_sdk/types/workspace.py,sha256=6To6WDvZWejhm1vAdIehlq6h9vpPN8UpMc92Y
|
|
|
528
531
|
label_studio_sdk/types/workspace_member_create.py,sha256=vPsS7IC6hPz9eDgr6TN2xIP7U40Eb1Tv7Ly8Zvn44iI,714
|
|
529
532
|
label_studio_sdk/types/workspace_member_list.py,sha256=TSP6g33n3OGtMV-Uz7rmME4oR_4bb42vG9ne8I4UEJQ,698
|
|
530
533
|
label_studio_sdk/users/__init__.py,sha256=UKVMXjtKsr9fAtH1ipr6YPmY5tdrJjELYN4Cb3l56-I,195
|
|
531
|
-
label_studio_sdk/users/client.py,sha256=
|
|
534
|
+
label_studio_sdk/users/client.py,sha256=cgYN3KQKDAkeTKf9TF_950J9dJ-n-Y_94y-0rIIC4bA,49030
|
|
532
535
|
label_studio_sdk/users/types/__init__.py,sha256=piwIvEOYFNLlEeWae92M9zoJ-LX6-7C-agJXUtnSgNY,253
|
|
533
536
|
label_studio_sdk/users/types/users_get_token_response.py,sha256=HiWpBI0Xjuld7SV9STV5uSt-9Qd3lccL1N6GutiC7PI,594
|
|
534
537
|
label_studio_sdk/users/types/users_reset_token_response.py,sha256=xQf9LrnzVZF00us26FcVDB_Z0iKZIWAc33q6_i8kcdo,595
|
|
535
538
|
label_studio_sdk/version.py,sha256=0Bp01N-o7ZPwshojeBywhQ3-OqkaMcHG2tQdC7Xzy0s,83
|
|
536
539
|
label_studio_sdk/versions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
537
|
-
label_studio_sdk/versions/client.py,sha256=
|
|
540
|
+
label_studio_sdk/versions/client.py,sha256=jFHVlhOzelKhGuLPC0trjZNnZzUnUYZ_y4kreteRcAk,4463
|
|
538
541
|
label_studio_sdk/views/__init__.py,sha256=9NHVhlCYpt15V28_9bbrFIsoHy6R-JMXOKPn_EN-7Zs,1511
|
|
539
542
|
label_studio_sdk/views/client.py,sha256=cZpNcINPRAJ3utU99kEWFE3_Nmd6hF8Ex8rZAu0UU5g,23325
|
|
540
543
|
label_studio_sdk/views/types/__init__.py,sha256=t92IO3Lva_n_LmODFE7FK4VBaFTgtJJdf5pPVa3YTLs,2312
|
|
@@ -584,7 +587,7 @@ label_studio_sdk/workspaces/members/bulk/types/bulk_post_response.py,sha256=LV0q
|
|
|
584
587
|
label_studio_sdk/workspaces/members/client.py,sha256=gOsdSU94L4H0yt5iJL9MHiFBfsfBZZ6BV-MTL1k0dew,14116
|
|
585
588
|
label_studio_sdk/workspaces/members/paginated/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
586
589
|
label_studio_sdk/workspaces/members/paginated/client.py,sha256=vTyjdS30Mr09OAT06MgCeiXvVCKxJYtJFtb0odMgnZE,7831
|
|
587
|
-
label_studio_sdk-2.0.
|
|
588
|
-
label_studio_sdk-2.0.
|
|
589
|
-
label_studio_sdk-2.0.
|
|
590
|
-
label_studio_sdk-2.0.
|
|
590
|
+
label_studio_sdk-2.0.11.dist-info/LICENSE,sha256=ymVrFcHiJGjHeY30NWZgdV-xzNEtfuC63oK9ZeMDjhs,11341
|
|
591
|
+
label_studio_sdk-2.0.11.dist-info/METADATA,sha256=w_WdKsI0ukU100FQLVOYZoS810aM1gGfXSI6n7fSSio,6982
|
|
592
|
+
label_studio_sdk-2.0.11.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
593
|
+
label_studio_sdk-2.0.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|