label-studio-sdk 1.0.5__py3-none-any.whl → 1.0.8__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 +76 -0
- label_studio_sdk/_extensions/eval/categorical.py +83 -0
- label_studio_sdk/_extensions/label_studio_tools/core/label_config.py +13 -4
- label_studio_sdk/_extensions/label_studio_tools/core/utils/io.py +35 -17
- label_studio_sdk/_extensions/label_studio_tools/core/utils/json_schema.py +86 -0
- label_studio_sdk/_legacy/schema/label_config_schema.json +42 -11
- label_studio_sdk/annotations/__init__.py +3 -0
- label_studio_sdk/annotations/client.py +109 -0
- label_studio_sdk/annotations/types/__init__.py +5 -0
- label_studio_sdk/annotations/types/annotations_create_bulk_response_item.py +29 -0
- label_studio_sdk/base_client.py +9 -0
- label_studio_sdk/comments/__init__.py +2 -0
- label_studio_sdk/comments/client.py +512 -0
- label_studio_sdk/converter/converter.py +11 -4
- label_studio_sdk/converter/imports/coco.py +14 -13
- label_studio_sdk/converter/utils.py +72 -3
- label_studio_sdk/core/client_wrapper.py +1 -1
- label_studio_sdk/files/client.py +26 -16
- label_studio_sdk/label_interface/control_tags.py +205 -10
- label_studio_sdk/label_interface/interface.py +117 -10
- label_studio_sdk/label_interface/region.py +1 -10
- label_studio_sdk/model_providers/__init__.py +2 -0
- label_studio_sdk/model_providers/client.py +708 -0
- label_studio_sdk/projects/client.py +32 -16
- label_studio_sdk/projects/exports/client.py +133 -40
- label_studio_sdk/prompts/__init__.py +21 -0
- label_studio_sdk/prompts/client.py +862 -0
- label_studio_sdk/prompts/indicators/__init__.py +2 -0
- label_studio_sdk/prompts/indicators/client.py +194 -0
- label_studio_sdk/prompts/runs/__init__.py +5 -0
- label_studio_sdk/prompts/runs/client.py +354 -0
- label_studio_sdk/prompts/runs/types/__init__.py +5 -0
- label_studio_sdk/prompts/runs/types/runs_list_request_project_subset.py +5 -0
- label_studio_sdk/prompts/types/__init__.py +15 -0
- label_studio_sdk/prompts/types/prompts_batch_failed_predictions_request_failed_predictions_item.py +42 -0
- label_studio_sdk/prompts/types/prompts_batch_failed_predictions_response.py +29 -0
- label_studio_sdk/prompts/types/prompts_batch_predictions_request_results_item.py +62 -0
- label_studio_sdk/prompts/types/prompts_batch_predictions_response.py +29 -0
- label_studio_sdk/prompts/versions/__init__.py +2 -0
- label_studio_sdk/prompts/versions/client.py +1046 -0
- label_studio_sdk/types/__init__.py +58 -0
- label_studio_sdk/types/comment.py +39 -0
- label_studio_sdk/types/comment_created_by.py +5 -0
- label_studio_sdk/types/inference_run.py +43 -0
- label_studio_sdk/types/inference_run_cost_estimate.py +57 -0
- label_studio_sdk/types/inference_run_created_by.py +5 -0
- label_studio_sdk/types/inference_run_organization.py +5 -0
- label_studio_sdk/types/inference_run_project_subset.py +5 -0
- label_studio_sdk/types/inference_run_status.py +7 -0
- label_studio_sdk/types/key_indicator_value.py +30 -0
- label_studio_sdk/types/key_indicators.py +7 -0
- label_studio_sdk/types/key_indicators_item.py +51 -0
- label_studio_sdk/types/key_indicators_item_additional_kpis_item.py +37 -0
- label_studio_sdk/types/key_indicators_item_extra_kpis_item.py +37 -0
- label_studio_sdk/types/model_provider_connection.py +71 -0
- label_studio_sdk/types/model_provider_connection_budget_reset_period.py +5 -0
- label_studio_sdk/types/model_provider_connection_created_by.py +5 -0
- label_studio_sdk/types/model_provider_connection_organization.py +5 -0
- label_studio_sdk/types/model_provider_connection_provider.py +5 -0
- label_studio_sdk/types/model_provider_connection_scope.py +5 -0
- label_studio_sdk/types/prompt.py +79 -0
- label_studio_sdk/types/prompt_created_by.py +5 -0
- label_studio_sdk/types/prompt_organization.py +5 -0
- label_studio_sdk/types/prompt_version.py +41 -0
- label_studio_sdk/types/prompt_version_created_by.py +5 -0
- label_studio_sdk/types/prompt_version_organization.py +5 -0
- label_studio_sdk/types/prompt_version_provider.py +5 -0
- label_studio_sdk/types/refined_prompt_response.py +64 -0
- label_studio_sdk/types/refined_prompt_response_refinement_status.py +7 -0
- label_studio_sdk/types/task.py +3 -2
- label_studio_sdk/types/task_comment_authors_item.py +5 -0
- label_studio_sdk/webhooks/client.py +245 -36
- label_studio_sdk/workspaces/client.py +20 -20
- label_studio_sdk-1.0.8.dist-info/LICENSE +201 -0
- {label_studio_sdk-1.0.5.dist-info → label_studio_sdk-1.0.8.dist-info}/METADATA +19 -3
- {label_studio_sdk-1.0.5.dist-info → label_studio_sdk-1.0.8.dist-info}/RECORD +77 -24
- {label_studio_sdk-1.0.5.dist-info → label_studio_sdk-1.0.8.dist-info}/WHEEL +1 -1
|
@@ -65,8 +65,8 @@ class WorkspacesClient:
|
|
|
65
65
|
description: typing.Optional[str] = OMIT,
|
|
66
66
|
is_public: typing.Optional[bool] = OMIT,
|
|
67
67
|
is_personal: typing.Optional[bool] = OMIT,
|
|
68
|
-
is_archived: typing.Optional[bool] = OMIT,
|
|
69
68
|
color: typing.Optional[str] = OMIT,
|
|
69
|
+
is_archived: typing.Optional[bool] = OMIT,
|
|
70
70
|
request_options: typing.Optional[RequestOptions] = None,
|
|
71
71
|
) -> Workspace:
|
|
72
72
|
"""
|
|
@@ -90,12 +90,12 @@ class WorkspacesClient:
|
|
|
90
90
|
is_personal : typing.Optional[bool]
|
|
91
91
|
Is workspace personal
|
|
92
92
|
|
|
93
|
-
is_archived : typing.Optional[bool]
|
|
94
|
-
Is workspace archived
|
|
95
|
-
|
|
96
93
|
color : typing.Optional[str]
|
|
97
94
|
Workspace color in HEX format
|
|
98
95
|
|
|
96
|
+
is_archived : typing.Optional[bool]
|
|
97
|
+
Is workspace archived
|
|
98
|
+
|
|
99
99
|
request_options : typing.Optional[RequestOptions]
|
|
100
100
|
Request-specific configuration.
|
|
101
101
|
|
|
@@ -121,8 +121,8 @@ class WorkspacesClient:
|
|
|
121
121
|
"description": description,
|
|
122
122
|
"is_public": is_public,
|
|
123
123
|
"is_personal": is_personal,
|
|
124
|
-
"is_archived": is_archived,
|
|
125
124
|
"color": color,
|
|
125
|
+
"is_archived": is_archived,
|
|
126
126
|
},
|
|
127
127
|
request_options=request_options,
|
|
128
128
|
omit=OMIT,
|
|
@@ -220,8 +220,8 @@ class WorkspacesClient:
|
|
|
220
220
|
description: typing.Optional[str] = OMIT,
|
|
221
221
|
is_public: typing.Optional[bool] = OMIT,
|
|
222
222
|
is_personal: typing.Optional[bool] = OMIT,
|
|
223
|
-
is_archived: typing.Optional[bool] = OMIT,
|
|
224
223
|
color: typing.Optional[str] = OMIT,
|
|
224
|
+
is_archived: typing.Optional[bool] = OMIT,
|
|
225
225
|
request_options: typing.Optional[RequestOptions] = None,
|
|
226
226
|
) -> Workspace:
|
|
227
227
|
"""
|
|
@@ -244,12 +244,12 @@ class WorkspacesClient:
|
|
|
244
244
|
is_personal : typing.Optional[bool]
|
|
245
245
|
Is workspace personal
|
|
246
246
|
|
|
247
|
-
is_archived : typing.Optional[bool]
|
|
248
|
-
Is workspace archived
|
|
249
|
-
|
|
250
247
|
color : typing.Optional[str]
|
|
251
248
|
Workspace color in HEX format
|
|
252
249
|
|
|
250
|
+
is_archived : typing.Optional[bool]
|
|
251
|
+
Is workspace archived
|
|
252
|
+
|
|
253
253
|
request_options : typing.Optional[RequestOptions]
|
|
254
254
|
Request-specific configuration.
|
|
255
255
|
|
|
@@ -277,8 +277,8 @@ class WorkspacesClient:
|
|
|
277
277
|
"description": description,
|
|
278
278
|
"is_public": is_public,
|
|
279
279
|
"is_personal": is_personal,
|
|
280
|
-
"is_archived": is_archived,
|
|
281
280
|
"color": color,
|
|
281
|
+
"is_archived": is_archived,
|
|
282
282
|
},
|
|
283
283
|
request_options=request_options,
|
|
284
284
|
omit=OMIT,
|
|
@@ -342,8 +342,8 @@ class AsyncWorkspacesClient:
|
|
|
342
342
|
description: typing.Optional[str] = OMIT,
|
|
343
343
|
is_public: typing.Optional[bool] = OMIT,
|
|
344
344
|
is_personal: typing.Optional[bool] = OMIT,
|
|
345
|
-
is_archived: typing.Optional[bool] = OMIT,
|
|
346
345
|
color: typing.Optional[str] = OMIT,
|
|
346
|
+
is_archived: typing.Optional[bool] = OMIT,
|
|
347
347
|
request_options: typing.Optional[RequestOptions] = None,
|
|
348
348
|
) -> Workspace:
|
|
349
349
|
"""
|
|
@@ -367,12 +367,12 @@ class AsyncWorkspacesClient:
|
|
|
367
367
|
is_personal : typing.Optional[bool]
|
|
368
368
|
Is workspace personal
|
|
369
369
|
|
|
370
|
-
is_archived : typing.Optional[bool]
|
|
371
|
-
Is workspace archived
|
|
372
|
-
|
|
373
370
|
color : typing.Optional[str]
|
|
374
371
|
Workspace color in HEX format
|
|
375
372
|
|
|
373
|
+
is_archived : typing.Optional[bool]
|
|
374
|
+
Is workspace archived
|
|
375
|
+
|
|
376
376
|
request_options : typing.Optional[RequestOptions]
|
|
377
377
|
Request-specific configuration.
|
|
378
378
|
|
|
@@ -398,8 +398,8 @@ class AsyncWorkspacesClient:
|
|
|
398
398
|
"description": description,
|
|
399
399
|
"is_public": is_public,
|
|
400
400
|
"is_personal": is_personal,
|
|
401
|
-
"is_archived": is_archived,
|
|
402
401
|
"color": color,
|
|
402
|
+
"is_archived": is_archived,
|
|
403
403
|
},
|
|
404
404
|
request_options=request_options,
|
|
405
405
|
omit=OMIT,
|
|
@@ -497,8 +497,8 @@ class AsyncWorkspacesClient:
|
|
|
497
497
|
description: typing.Optional[str] = OMIT,
|
|
498
498
|
is_public: typing.Optional[bool] = OMIT,
|
|
499
499
|
is_personal: typing.Optional[bool] = OMIT,
|
|
500
|
-
is_archived: typing.Optional[bool] = OMIT,
|
|
501
500
|
color: typing.Optional[str] = OMIT,
|
|
501
|
+
is_archived: typing.Optional[bool] = OMIT,
|
|
502
502
|
request_options: typing.Optional[RequestOptions] = None,
|
|
503
503
|
) -> Workspace:
|
|
504
504
|
"""
|
|
@@ -521,12 +521,12 @@ class AsyncWorkspacesClient:
|
|
|
521
521
|
is_personal : typing.Optional[bool]
|
|
522
522
|
Is workspace personal
|
|
523
523
|
|
|
524
|
-
is_archived : typing.Optional[bool]
|
|
525
|
-
Is workspace archived
|
|
526
|
-
|
|
527
524
|
color : typing.Optional[str]
|
|
528
525
|
Workspace color in HEX format
|
|
529
526
|
|
|
527
|
+
is_archived : typing.Optional[bool]
|
|
528
|
+
Is workspace archived
|
|
529
|
+
|
|
530
530
|
request_options : typing.Optional[RequestOptions]
|
|
531
531
|
Request-specific configuration.
|
|
532
532
|
|
|
@@ -554,8 +554,8 @@ class AsyncWorkspacesClient:
|
|
|
554
554
|
"description": description,
|
|
555
555
|
"is_public": is_public,
|
|
556
556
|
"is_personal": is_personal,
|
|
557
|
-
"is_archived": is_archived,
|
|
558
557
|
"color": color,
|
|
558
|
+
"is_archived": is_archived,
|
|
559
559
|
},
|
|
560
560
|
request_options=request_options,
|
|
561
561
|
omit=OMIT,
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2019 Heartex, Inc
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: label-studio-sdk
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.8
|
|
4
4
|
Summary:
|
|
5
5
|
Requires-Python: >=3.8,<4.0
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -16,15 +16,19 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
20
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
21
|
Classifier: Typing :: Typed
|
|
21
22
|
Requires-Dist: Pillow (>=10.0.1)
|
|
22
23
|
Requires-Dist: appdirs (>=1.4.3)
|
|
24
|
+
Requires-Dist: datamodel-code-generator (==0.26.1)
|
|
23
25
|
Requires-Dist: httpx (>=0.21.2)
|
|
24
26
|
Requires-Dist: ijson (>=3.2.3)
|
|
25
|
-
Requires-Dist:
|
|
27
|
+
Requires-Dist: jsf (>=0.11.2,<0.12.0)
|
|
28
|
+
Requires-Dist: jsonschema (>=4.23.0)
|
|
26
29
|
Requires-Dist: lxml (>=4.2.5)
|
|
27
|
-
Requires-Dist: nltk (>=3.
|
|
30
|
+
Requires-Dist: nltk (>=3.9.1,<4.0.0)
|
|
31
|
+
Requires-Dist: numpy (<2.0.0)
|
|
28
32
|
Requires-Dist: pandas (>=0.24.0)
|
|
29
33
|
Requires-Dist: pydantic (>=1.9.2)
|
|
30
34
|
Requires-Dist: requests (>=2.22.0)
|
|
@@ -179,6 +183,18 @@ ls = LabelStudio(
|
|
|
179
183
|
)
|
|
180
184
|
```
|
|
181
185
|
|
|
186
|
+
## Enterprise features
|
|
187
|
+
|
|
188
|
+
### Create comments
|
|
189
|
+
|
|
190
|
+
```python
|
|
191
|
+
comment = ls.comments.create(
|
|
192
|
+
project=project.id,
|
|
193
|
+
annotation=annotation.id,
|
|
194
|
+
text="Comment text"
|
|
195
|
+
)
|
|
196
|
+
```
|
|
197
|
+
|
|
182
198
|
<!-- Begin Contributing, generated by Fern -->
|
|
183
199
|
# Contributing
|
|
184
200
|
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
label_studio_sdk/__init__.py,sha256=
|
|
1
|
+
label_studio_sdk/__init__.py,sha256=BgtReTTLTt0cMD1xHMd3bUf8TPxLHfM27-DdMXL3RiU,10091
|
|
2
2
|
label_studio_sdk/_extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
label_studio_sdk/_extensions/eval/categorical.py,sha256=MxH2Jl8Mc6HS2byBnlRgABZgwMutSQdH3tgspwCkxqk,2703
|
|
3
4
|
label_studio_sdk/_extensions/label_studio_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
5
|
label_studio_sdk/_extensions/label_studio_tools/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
label_studio_sdk/_extensions/label_studio_tools/core/label_config.py,sha256=
|
|
6
|
+
label_studio_sdk/_extensions/label_studio_tools/core/label_config.py,sha256=P1S7dPjFkqF2zIQzk11iljhharrUc9qQRM_rUN38iJQ,6406
|
|
6
7
|
label_studio_sdk/_extensions/label_studio_tools/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
8
|
label_studio_sdk/_extensions/label_studio_tools/core/utils/exceptions.py,sha256=JxaXUMghUp1YvL--s8KFC4mCHVbV39giE3kSBHCmuFU,66
|
|
8
|
-
label_studio_sdk/_extensions/label_studio_tools/core/utils/io.py,sha256=
|
|
9
|
+
label_studio_sdk/_extensions/label_studio_tools/core/utils/io.py,sha256=fGnVo--KkiNRjswnoJgIapUN7ao26P0X61X88zM8Ws8,9129
|
|
10
|
+
label_studio_sdk/_extensions/label_studio_tools/core/utils/json_schema.py,sha256=uLlly2XvUvRL9tyaUQ0J4MFR83L7rTeIpCpoVCu5eJg,3172
|
|
9
11
|
label_studio_sdk/_extensions/label_studio_tools/core/utils/params.py,sha256=ZSUb-IXG5OcPQ7pJ8NDRLon-cMxnjVq6XtinxvTuJso,1244
|
|
10
12
|
label_studio_sdk/_extensions/label_studio_tools/etl/__init__.py,sha256=SdN7JGLJ1araqbx-nL2fVdhm6E6CNyru-vWVs6sMswI,31
|
|
11
13
|
label_studio_sdk/_extensions/label_studio_tools/etl/beam.py,sha256=aGWS-LgU6du2Fm0HE_3mDWeQ5dcwMWWMeuS-0xjEcVE,833
|
|
@@ -18,7 +20,7 @@ label_studio_sdk/_legacy/__init__.py,sha256=e1C8VJ0l6EKmQwvzOnkKvy5Cu6uNi2dboNno
|
|
|
18
20
|
label_studio_sdk/_legacy/client.py,sha256=7lZeuQNw39C_Iqb6O-LSY8dOYbrE7hhA8qrc0SH3Qw0,14052
|
|
19
21
|
label_studio_sdk/_legacy/exceptions.py,sha256=Xpx6phdRD_dTWlA-nq0v0Feta0RVDltPUjRXSiXJ0Yk,196
|
|
20
22
|
label_studio_sdk/_legacy/project.py,sha256=4sO4kZQECmDmFZRNo502PpDcRX68la0FO0WDePOyVxI,93567
|
|
21
|
-
label_studio_sdk/_legacy/schema/label_config_schema.json,sha256=
|
|
23
|
+
label_studio_sdk/_legacy/schema/label_config_schema.json,sha256=5wCJPCUxxgG7YLGogaHfr2Aw_XhlrbJfakEZO0DhxBc,6897
|
|
22
24
|
label_studio_sdk/_legacy/users.py,sha256=G5wxBf7sGpZlN_0sR2NDovESIw1v2RfXWveCLHTgvN4,1402
|
|
23
25
|
label_studio_sdk/_legacy/utils.py,sha256=ZeBEwUmHyK_GdUjAEOdIqkbKRT7SviO4Db0Uj6tMNfI,4518
|
|
24
26
|
label_studio_sdk/_legacy/workspaces.py,sha256=9SrmZyWqj_0etCyTWzeC6v30jAIDnjerx4cNBlP3MGg,1913
|
|
@@ -36,29 +38,33 @@ label_studio_sdk/actions/types/actions_create_request_ordering_item.py,sha256=dE
|
|
|
36
38
|
label_studio_sdk/actions/types/actions_create_request_selected_items.py,sha256=9ylitQl78Mrl2ffeYoaXL0JPyFPFriRDQtgvqJOuvRY,426
|
|
37
39
|
label_studio_sdk/actions/types/actions_create_request_selected_items_excluded.py,sha256=V_UqVg8HP3REL9HxoqfadtGkK9M8q7gGXELxjLpZ2E0,1427
|
|
38
40
|
label_studio_sdk/actions/types/actions_create_request_selected_items_included.py,sha256=Pd57blUopvSWgdR9fIEbEcTXk5yQXg25R4aT0TUtPN0,1426
|
|
39
|
-
label_studio_sdk/annotations/__init__.py,sha256=
|
|
40
|
-
label_studio_sdk/annotations/client.py,sha256=
|
|
41
|
-
label_studio_sdk/
|
|
41
|
+
label_studio_sdk/annotations/__init__.py,sha256=jxvZmtwQDFWWc06XHVrESuNVf6EmDEwWweU5iwHYqAc,167
|
|
42
|
+
label_studio_sdk/annotations/client.py,sha256=ZHdxf3m1GUxfBQCIYy65ot-fU7Cril-T13HD_WnFSN0,31330
|
|
43
|
+
label_studio_sdk/annotations/types/__init__.py,sha256=XKS7Iz44bxth5k8-dYFU8RiFskAR2nwrEFMFjg8J1LE,199
|
|
44
|
+
label_studio_sdk/annotations/types/annotations_create_bulk_response_item.py,sha256=0QEUOTV750_uIzcl8SKVbO9xrgpPD-AlYpsBak2GE0M,1157
|
|
45
|
+
label_studio_sdk/base_client.py,sha256=1F0g-F7XREx_z7E3aY6Px0LLU-OEpXd993MKplcv0ak,9283
|
|
42
46
|
label_studio_sdk/client.py,sha256=FwX1wETMKX43ra3-ePztaZA37MlmuY12PJ1mqZp5OHI,879
|
|
47
|
+
label_studio_sdk/comments/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
48
|
+
label_studio_sdk/comments/client.py,sha256=qUX31qgUWfyJa1qS_R_FehvpZRFAWWFQyyFdf0C13Fs,15655
|
|
43
49
|
label_studio_sdk/converter/__init__.py,sha256=qppSJed16HAiZbGons0yVrPRjszuWFia025Rm477q1c,201
|
|
44
50
|
label_studio_sdk/converter/audio.py,sha256=U9oTULkeimodZhIkB16Gl3eJD8YzsbADWxW_r2tPcxw,1905
|
|
45
51
|
label_studio_sdk/converter/brush.py,sha256=jRL3fLl_J06fVEX7Uat31ru0uUZ71C4zrXnX2qOcrIo,13370
|
|
46
|
-
label_studio_sdk/converter/converter.py,sha256=
|
|
52
|
+
label_studio_sdk/converter/converter.py,sha256=YdnSUk12snOlC3FyD0J98ntAWJKGO5XbaXvyDdqgY4o,48111
|
|
47
53
|
label_studio_sdk/converter/exports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
54
|
label_studio_sdk/converter/exports/csv.py,sha256=F4t04tFsg5gBXTZNmkjw_NeEVsobRH_Y_vfFDi7R0Zw,2865
|
|
49
55
|
label_studio_sdk/converter/exports/csv2.py,sha256=9FxcPtIDcuztDF-y4Z7Mm0AgbYUR1oMitYT6BlcOFes,3125
|
|
50
56
|
label_studio_sdk/converter/funsd.py,sha256=QHoa8hzWQLkZQ87e9EgURit9kGGUCgDxoRONcSzmWlw,2544
|
|
51
57
|
label_studio_sdk/converter/imports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
-
label_studio_sdk/converter/imports/coco.py,sha256=
|
|
58
|
+
label_studio_sdk/converter/imports/coco.py,sha256=FDUij8i329XRs3RFZEo-hKWseieyfE7vbQUtHYHpQs8,10312
|
|
53
59
|
label_studio_sdk/converter/imports/colors.py,sha256=F5_K4FIhOZl6LNEIVT2UU5L8HcmY8VwAg1tOFpjJINI,3827
|
|
54
60
|
label_studio_sdk/converter/imports/label_config.py,sha256=8RT2Jppvi1-Sl3ZNDA1uFyHr2NoU4-gM26S9iAEuQh8,1218
|
|
55
61
|
label_studio_sdk/converter/imports/pathtrack.py,sha256=Xxxbw8fLLHTR57FEjVeeitjh35YbcIh_eVzuw2e5K9w,8096
|
|
56
62
|
label_studio_sdk/converter/imports/yolo.py,sha256=iu-8ay-QF6nT8Hy1rIzPpww1Y-9HnskgDk6yJ0q7YmI,8878
|
|
57
63
|
label_studio_sdk/converter/main.py,sha256=tB1HbxV_prR67tEjk-YLk4pLJ5isxQAsyChxaktEIaQ,6004
|
|
58
|
-
label_studio_sdk/converter/utils.py,sha256=
|
|
64
|
+
label_studio_sdk/converter/utils.py,sha256=_UmT7S9lQgd_xb_hi9JyCQMYqvRIWW0L7zth1iFX9yU,18606
|
|
59
65
|
label_studio_sdk/core/__init__.py,sha256=Io96G1IY5muGWXsxPKOkzYv3We4OJlBKMkUFvEYfVEQ,1054
|
|
60
66
|
label_studio_sdk/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
61
|
-
label_studio_sdk/core/client_wrapper.py,sha256=
|
|
67
|
+
label_studio_sdk/core/client_wrapper.py,sha256=KQdZNzU7fdwvmoT0WQY8vaGECy0LRkJBqEgcoDweO3k,1817
|
|
62
68
|
label_studio_sdk/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
63
69
|
label_studio_sdk/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
|
|
64
70
|
label_studio_sdk/core/http_client.py,sha256=boOEXUeA9zpitlEfyqa-A2_gnEYSYU9VNB3MmzwYS7U,18717
|
|
@@ -105,7 +111,7 @@ label_studio_sdk/export_storage/s3s/client.py,sha256=0Fe2tcEPr4AJF7oTQGK0nojnOkm
|
|
|
105
111
|
label_studio_sdk/export_storage/types/__init__.py,sha256=G7iAfiRBL1WTYsluefJV4ZFUaBmK4mMp9sAMPJ7NZbw,203
|
|
106
112
|
label_studio_sdk/export_storage/types/export_storage_list_types_response_item.py,sha256=3iRzkMqLe_ohc-XWg0h9s9jzgXx-omXsyGUZNY7R04U,1199
|
|
107
113
|
label_studio_sdk/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
108
|
-
label_studio_sdk/files/client.py,sha256=
|
|
114
|
+
label_studio_sdk/files/client.py,sha256=cTxnAX0pwpw8M6I6eec_mym5G_21DD1K7goWKVg9Gjc,19250
|
|
109
115
|
label_studio_sdk/import_storage/__init__.py,sha256=uJTTAcQ0OaeBxYNkKf7T4x7fbyL-JqtB_o64M_OF1mk,840
|
|
110
116
|
label_studio_sdk/import_storage/azure/__init__.py,sha256=WflFc5wcr-Pgvi8vGcNCTKOPaIKxy-_RgMx2qttAHYc,183
|
|
111
117
|
label_studio_sdk/import_storage/azure/client.py,sha256=zOiXXOH0m8pgZOHmrfEildrlZ-Ys9RM6QK8aGztFVXU,38340
|
|
@@ -139,14 +145,14 @@ label_studio_sdk/import_storage/types/__init__.py,sha256=LSPRtCZ04H1CRzFC6KQnse2
|
|
|
139
145
|
label_studio_sdk/import_storage/types/import_storage_list_types_response_item.py,sha256=dXfZjNrSliDu9nDP3jrNfxPOUAyILN7vJ6_uArkMiY0,1199
|
|
140
146
|
label_studio_sdk/label_interface/__init__.py,sha256=Eg6y3mAaYdKzJ5ZPhU_BTX2qoNPafthdxLD2I_rmXoU,38
|
|
141
147
|
label_studio_sdk/label_interface/base.py,sha256=NCgY7ntk0WSc9O9iXu3g37-CxbZgCx_WO2pvOEHK-cg,2786
|
|
142
|
-
label_studio_sdk/label_interface/control_tags.py,sha256=
|
|
148
|
+
label_studio_sdk/label_interface/control_tags.py,sha256=Wq4_LLztCLCp3aaxXuR3GSy6YMAXcJve23LaplU7QjI,29571
|
|
143
149
|
label_studio_sdk/label_interface/create.py,sha256=c3h5_FF4u5J62_mqq1oK2mjqXL-I1559C6MfoxkgO6s,6993
|
|
144
150
|
label_studio_sdk/label_interface/data_examples.json,sha256=uCYvCtMIxPi1-jLlFhwJPh01tLyMIRwTjINeAeW-JzE,8195
|
|
145
|
-
label_studio_sdk/label_interface/interface.py,sha256=
|
|
151
|
+
label_studio_sdk/label_interface/interface.py,sha256=Cq6HcTIhZhaWwB5rcVAvdj90lGzshCkc9ypm_igGzC8,42186
|
|
146
152
|
label_studio_sdk/label_interface/label_tags.py,sha256=nWEo21Gd8IPzIO72UqraLrChIbvrSMCA_eEhzYGnGCc,2282
|
|
147
153
|
label_studio_sdk/label_interface/object_tags.py,sha256=haw-LbP4wRr6c--mKON5XiYufB8ubkZsU1WAFW0dbwg,8639
|
|
148
154
|
label_studio_sdk/label_interface/objects.py,sha256=V1Spp0S9qE7iA-5kPCi0QyHrJ80Du9BUuYMsQUAQqc0,1535
|
|
149
|
-
label_studio_sdk/label_interface/region.py,sha256=
|
|
155
|
+
label_studio_sdk/label_interface/region.py,sha256=th39WeQk8ypi-4krEpsW0BZnoygu4XgvP4w7NkRQp2M,1755
|
|
150
156
|
label_studio_sdk/ml/__init__.py,sha256=J4ncAcAOU_qriOx_Im9eFmXyupKM19SXMcpMcXSmw-I,455
|
|
151
157
|
label_studio_sdk/ml/client.py,sha256=zXfBvR8dBngBp6tLk_yUf0XWxz6IcmYTzpr8BBW55hs,35735
|
|
152
158
|
label_studio_sdk/ml/types/__init__.py,sha256=P6nY1akoIWZ95wDY3iQJGvp9VdM9Kifj7fTCVrdf6qw,640
|
|
@@ -156,18 +162,35 @@ label_studio_sdk/ml/types/ml_create_response_auth_method.py,sha256=rvp28YgqeQY9U
|
|
|
156
162
|
label_studio_sdk/ml/types/ml_update_request_auth_method.py,sha256=IfZm_tgqLZ9LaRZvOm_1_SGqx0kXtkxOfCeomLF0SZk,171
|
|
157
163
|
label_studio_sdk/ml/types/ml_update_response.py,sha256=GhueuUxG0eAqBCQO0KzS2X0hBil6UdR_6-5GS-7b5sE,2290
|
|
158
164
|
label_studio_sdk/ml/types/ml_update_response_auth_method.py,sha256=1AhvSHg_qDNKx0bV_vaBdqioaSnbC6wNCIPdFbr9Czg,172
|
|
165
|
+
label_studio_sdk/model_providers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
166
|
+
label_studio_sdk/model_providers/client.py,sha256=-bMAtFBNLm8S3OIDc6OJKB5-OMoQV1tVPVi5WqybRfs,26321
|
|
159
167
|
label_studio_sdk/predictions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
160
168
|
label_studio_sdk/predictions/client.py,sha256=09_XwZudOdqlYAPoxr8Vl60t8eLZuLnrFp-y3H7i1Mc,25629
|
|
161
169
|
label_studio_sdk/projects/__init__.py,sha256=_iq7sdPqGIwoq8VJqZV5fWU3ziLshGrZDKVe7F8_fbk,357
|
|
162
|
-
label_studio_sdk/projects/client.py,sha256=
|
|
170
|
+
label_studio_sdk/projects/client.py,sha256=TR0rMI2gFBY3D_xvhbGht_hN0HVelQoQqH4qQm7-7mg,51113
|
|
163
171
|
label_studio_sdk/projects/client_ext.py,sha256=3maQuCHs4MhYdD_K69tcsBMDp2IG2oIls_VvF7BchGI,1140
|
|
164
172
|
label_studio_sdk/projects/exports/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
165
|
-
label_studio_sdk/projects/exports/client.py,sha256=
|
|
173
|
+
label_studio_sdk/projects/exports/client.py,sha256=IgG5s8UPzpoaZy3UYszXrG7IPEg6LtLS04-E666brbU,39936
|
|
166
174
|
label_studio_sdk/projects/types/__init__.py,sha256=EPDPCMDXFQp96yNZph2lAnDHw54X7NOvGOQgY9513sA,435
|
|
167
175
|
label_studio_sdk/projects/types/projects_create_response.py,sha256=fgIEN2_u1EG7CH9VCPNdxRn6ekwXy5Cawf5_2VXeLGk,3391
|
|
168
176
|
label_studio_sdk/projects/types/projects_import_tasks_response.py,sha256=QleGWz6JFzesJzf8cOCwQ-RbfM5Ig8dmGJXgkkxeUgU,2233
|
|
169
177
|
label_studio_sdk/projects/types/projects_list_response.py,sha256=6iZSgnw8O5FRizmgobiVKqWJC1UjcXQLWduhJs-9CzU,1274
|
|
170
178
|
label_studio_sdk/projects/types/projects_update_response.py,sha256=46rd7JoE80OT-_PaasWPeKC-h4aRtJ4vq0GkurnD6Bg,3391
|
|
179
|
+
label_studio_sdk/prompts/__init__.py,sha256=znKhqejZYbD2umWc9tuSD7pm0PyxMw9jmjGzNSUvius,661
|
|
180
|
+
label_studio_sdk/prompts/client.py,sha256=5w3mDAp6maWOX7XL9enEMf-YQL60AMzrTiqhaQAD-bo,29016
|
|
181
|
+
label_studio_sdk/prompts/indicators/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
182
|
+
label_studio_sdk/prompts/indicators/client.py,sha256=Xj5jdjnAi0xIFDL28TKbMua9bON0FQhbTgk8C_QmAHY,6276
|
|
183
|
+
label_studio_sdk/prompts/runs/__init__.py,sha256=o6GLzKNZevVPlSvNx_Tdf8xNX51s6gA4SvNL2rUF7bk,157
|
|
184
|
+
label_studio_sdk/prompts/runs/client.py,sha256=OLshXfCMzmcd45kugpk43njjwntjxF5UZs4xzyhEG1E,11669
|
|
185
|
+
label_studio_sdk/prompts/runs/types/__init__.py,sha256=iAA-b05WePpMQ5Q7DejSb-vD38ET-cNNXBMlHU3i46Q,184
|
|
186
|
+
label_studio_sdk/prompts/runs/types/runs_list_request_project_subset.py,sha256=F3H-dbfdJpe5hD_V_buW2_ZtpMTgum7Pcgb1pLYecBo,178
|
|
187
|
+
label_studio_sdk/prompts/types/__init__.py,sha256=nXbeawUxrwCapzjdTJkMSG7Xk9moU8DeBS3I4PU7UHU,698
|
|
188
|
+
label_studio_sdk/prompts/types/prompts_batch_failed_predictions_request_failed_predictions_item.py,sha256=vi2HaBH6NmpXVm5XVv8WAhw3d7nWCqjcAY6ohJGpR04,1527
|
|
189
|
+
label_studio_sdk/prompts/types/prompts_batch_failed_predictions_response.py,sha256=Pi-W8ZmwR5N_6qOJcQuR6dGhROY0Xf6q9lgq0cCkUnE,1165
|
|
190
|
+
label_studio_sdk/prompts/types/prompts_batch_predictions_request_results_item.py,sha256=Ecbstryh3pdkZbmfDVFzn2n27xxEmbtgPFXZ15oopj8,2370
|
|
191
|
+
label_studio_sdk/prompts/types/prompts_batch_predictions_response.py,sha256=7KlD1Q_MaAH8cqifVxjrsOG1SjqCy08P77xMhPEWn8w,1159
|
|
192
|
+
label_studio_sdk/prompts/versions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
193
|
+
label_studio_sdk/prompts/versions/client.py,sha256=0PhnSzloG74pgCLtAeyXlL3B_g_11b6jyc7tl0zWfjs,33831
|
|
171
194
|
label_studio_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
195
|
label_studio_sdk/tasks/__init__.py,sha256=a30krVHgQie5L6dCoFHY2FinuDWikj_gQUCGalFhVa8,185
|
|
173
196
|
label_studio_sdk/tasks/client.py,sha256=6dzFwQOUOrmNemWNuOv4Ci12ZXymqsJ5e3XiNVRWPRc,31764
|
|
@@ -175,7 +198,7 @@ label_studio_sdk/tasks/client_ext.py,sha256=ZA0mE7DzgPWgUw4BKbtodyXJPCyG2Oe5BmMW
|
|
|
175
198
|
label_studio_sdk/tasks/types/__init__.py,sha256=F5n2075irgvO9TyLAXzp26Tybg_lxMC56UySZzHby8I,237
|
|
176
199
|
label_studio_sdk/tasks/types/tasks_list_request_fields.py,sha256=5YXxQgyzoaL0QjSE-aLs_fepCUuzj28iqUndh5NxGGg,166
|
|
177
200
|
label_studio_sdk/tasks/types/tasks_list_response.py,sha256=Jc-ncfOVi6b9fFVspOdosE0AKlLto6w7bcURr4F72_E,1705
|
|
178
|
-
label_studio_sdk/types/__init__.py,sha256=
|
|
201
|
+
label_studio_sdk/types/__init__.py,sha256=I9qDMtul2cE8sAwvu_Wfe6F0fcVJxSVd797P74_lnjg,8160
|
|
179
202
|
label_studio_sdk/types/annotation.py,sha256=EJaFw_Lo5aFNCk4hw4AfR9iobADkJjTNKzRxOdJFYS0,3649
|
|
180
203
|
label_studio_sdk/types/annotation_filter_options.py,sha256=_MjVVtTtQCb7hq7g9HnfFPktp4mb5n_ut7TL05mL7JQ,1495
|
|
181
204
|
label_studio_sdk/types/annotation_last_action.py,sha256=g1CU8ypFyneqqf_eWtNH-lC6Q_h1i_IporC-Fq6nkxs,392
|
|
@@ -189,6 +212,8 @@ label_studio_sdk/types/base_task.py,sha256=5WTHfQYGQTvqjypnEZiZO3owbox18u8bbQWHh
|
|
|
189
212
|
label_studio_sdk/types/base_task_file_upload.py,sha256=PdWBe3w8CFB1ytNkuTHOIn8K0HqQVxIdgWjTtYwRmtQ,158
|
|
190
213
|
label_studio_sdk/types/base_task_updated_by.py,sha256=1MZr_m96ZlLhWoYgURrQmgAuc15kQ_vOCZPO-DKaZSU,195
|
|
191
214
|
label_studio_sdk/types/base_user.py,sha256=vpeAF07_xu5wpZRDagVilzvajzXqOH4em47PH12BuCI,1636
|
|
215
|
+
label_studio_sdk/types/comment.py,sha256=dyfXk3jXIgU6ChAPTUIn9GIQzsi768Dg1hXXL6fqvSg,1407
|
|
216
|
+
label_studio_sdk/types/comment_created_by.py,sha256=K2LWpFYPIV1BpXvMPY4DJTHoQ8meu1DFhOzZB5DE8k8,147
|
|
192
217
|
label_studio_sdk/types/converted_format.py,sha256=isfQtXCd_IQUJvefLdhAD4sXgH_hYTq3zOFILml372k,1400
|
|
193
218
|
label_studio_sdk/types/converted_format_status.py,sha256=27Ty_98TvKo1ENlvy10HH6HWXKifB2AYIb_NeTY4D7E,194
|
|
194
219
|
label_studio_sdk/types/data_manager_task_serializer.py,sha256=ya-FboTs16qTgBQFiO1UTkJMA3P9Tc0Yd_bPgsH6l90,4873
|
|
@@ -207,6 +232,17 @@ label_studio_sdk/types/gcs_export_storage.py,sha256=P3mSgrFaU3IEeC31WObpF-hjlC7Y
|
|
|
207
232
|
label_studio_sdk/types/gcs_export_storage_status.py,sha256=RvUZ-3_sF7GgkgsC_N48r8bELZbM_tXZvEqcNSyxZQ4,215
|
|
208
233
|
label_studio_sdk/types/gcs_import_storage.py,sha256=Dp8Kmx_OkDz24fm800WQ5coCM67N-7RZYbUA34isUEk,3392
|
|
209
234
|
label_studio_sdk/types/gcs_import_storage_status.py,sha256=5ZZBCd9tZEwbfi5pTV5t_MLndYkUlRrHK99r2SWb8oo,215
|
|
235
|
+
label_studio_sdk/types/inference_run.py,sha256=0LomJ0yYd4z7heRpRPRnTNt2Z9RM19emvB5nqm_V1kA,1902
|
|
236
|
+
label_studio_sdk/types/inference_run_cost_estimate.py,sha256=8F_FaZXwZnQmuGXmibS8fLZNVjcestCNjVq1qm3do8o,1883
|
|
237
|
+
label_studio_sdk/types/inference_run_created_by.py,sha256=r3gejo--DJRowaVn-jCrCBmZT3Cf7sie-fPyyLToPc0,152
|
|
238
|
+
label_studio_sdk/types/inference_run_organization.py,sha256=zeRnAqncnYQswrVLzwApaaqm3b0snAyNoIlOmuObGRQ,155
|
|
239
|
+
label_studio_sdk/types/inference_run_project_subset.py,sha256=lX40egBgMaJgguByeFhcq7HB4OPO09uBPMb9Eh_18qg,175
|
|
240
|
+
label_studio_sdk/types/inference_run_status.py,sha256=ADkxM0bEN-YeOfD-0vLcrOTIYZRLEKWk4tQanqLCLRU,208
|
|
241
|
+
label_studio_sdk/types/key_indicator_value.py,sha256=UzHpijJTZPESWPUYSdVr_43TF9Si9ghWsJQix7SMxpE,1207
|
|
242
|
+
label_studio_sdk/types/key_indicators.py,sha256=rB7gySc5mqKjdM1vTStQIU7nJd0KLrTmaVDoAEwxLuA,179
|
|
243
|
+
label_studio_sdk/types/key_indicators_item.py,sha256=1pLOU76FxPIB-lVN8Viymt_SMmB66xX5HtiuVewY4Is,1975
|
|
244
|
+
label_studio_sdk/types/key_indicators_item_additional_kpis_item.py,sha256=vVcJfECNEuXkqns30zg16wuwJ_ttP4RT5R2zGF7HrOo,1416
|
|
245
|
+
label_studio_sdk/types/key_indicators_item_extra_kpis_item.py,sha256=5ZMGLhVJA2nqufhzfN2cV-CRIV-qR559ZoIqrfqWYkw,1411
|
|
210
246
|
label_studio_sdk/types/local_files_export_storage.py,sha256=-ffbPW5-IvnlbavSEfp25rl1M1mVq-kitl0txbTR858,2973
|
|
211
247
|
label_studio_sdk/types/local_files_export_storage_status.py,sha256=zgBmQ0v7w8O061lIZoymrX-CdTR3m8ZDjEUh6XWBP8U,222
|
|
212
248
|
label_studio_sdk/types/local_files_import_storage.py,sha256=9iAyCAPSvyRmvJ0cwYnp5DppQio7UQZONUEqlPsd5wk,2842
|
|
@@ -214,6 +250,12 @@ label_studio_sdk/types/local_files_import_storage_status.py,sha256=eFkyIxGzPrHN_
|
|
|
214
250
|
label_studio_sdk/types/ml_backend.py,sha256=Q6VSYnG4Tq9EtA71ufP0iKjml7-G6rvmolLolH0tYNg,3043
|
|
215
251
|
label_studio_sdk/types/ml_backend_auth_method.py,sha256=T5dI6mk4xn2RnBL3rRqEf3sXFMcj1PzmQcMO_EMH_1s,165
|
|
216
252
|
label_studio_sdk/types/ml_backend_state.py,sha256=yIwkALw4EERwbjtpKXqggx-DDLuJthc84LQ_KcVmyfQ,168
|
|
253
|
+
label_studio_sdk/types/model_provider_connection.py,sha256=3b-mJE6WHK3YUS4mw_mL-9yp57qvysj2YTafiiCXWPk,3086
|
|
254
|
+
label_studio_sdk/types/model_provider_connection_budget_reset_period.py,sha256=_2b6RPx-idAx75gbX3gDNQEynlBWJX6IZP1BbDCvono,193
|
|
255
|
+
label_studio_sdk/types/model_provider_connection_created_by.py,sha256=mV5ZRAG5xEE6Z1Ewu4FMOSMZKqnjdc6gpRVp5ppB8is,163
|
|
256
|
+
label_studio_sdk/types/model_provider_connection_organization.py,sha256=4wXH1LCCKh73XT-btdJLX4LPkcnu-CGjDzrXCubRVWo,166
|
|
257
|
+
label_studio_sdk/types/model_provider_connection_provider.py,sha256=DBnbwEpuWLInLjC6uh-yownXjzveF4twQSday0HJzro,190
|
|
258
|
+
label_studio_sdk/types/model_provider_connection_scope.py,sha256=yi-uNxAvmpe7dvLX0d7wh92HyAHdwfsE22S1nKfpH_0,185
|
|
217
259
|
label_studio_sdk/types/prediction.py,sha256=h75ydes7dMEtGeug6r1VE41vy2yWmvD0m8Qo5hWxliA,2624
|
|
218
260
|
label_studio_sdk/types/project.py,sha256=3oHQ9eWJy5D16zYmzD6onffPSrJA7vhsdPvLS7jSJlY,7273
|
|
219
261
|
label_studio_sdk/types/project_import.py,sha256=u-ts8lF3fykKMkWEu9Y2fbCxjkwqpEhX-B0Ex4JqhbM,2529
|
|
@@ -221,10 +263,19 @@ label_studio_sdk/types/project_import_status.py,sha256=FEFdU3D0_Ga9dDv-yNjcr3ATm
|
|
|
221
263
|
label_studio_sdk/types/project_label_config.py,sha256=46u55A8H4i9noIfwWIUQEFMoI8150mQ0GovPoA-o7bk,1231
|
|
222
264
|
label_studio_sdk/types/project_sampling.py,sha256=m5ui0EJ-KbUgyx3d92JtI8tVaRKGqP2YHrvX3yGXIFU,212
|
|
223
265
|
label_studio_sdk/types/project_skip_queue.py,sha256=9DE5IpEBmm6QCIVqG0deISOCo_vHpfaEmHXGpf17UeA,198
|
|
266
|
+
label_studio_sdk/types/prompt.py,sha256=jcO8gvK2RUyaKBrna5GCJCq9AUqY9oCz0izQ5vNJyPk,2404
|
|
267
|
+
label_studio_sdk/types/prompt_created_by.py,sha256=nHQVl68taZMr6gYNRveX6DlSq98ElvPeTRtvEqbGQ0U,146
|
|
268
|
+
label_studio_sdk/types/prompt_organization.py,sha256=7CJzAsQ8AqC9WmgI8wb9vdnjOu6LsAEQZXrMalTm2QQ,149
|
|
269
|
+
label_studio_sdk/types/prompt_version.py,sha256=4yG2z4aYRyGsbmGHTA2mznVlIcdmmaSIcTZMf_gpmJk,1817
|
|
270
|
+
label_studio_sdk/types/prompt_version_created_by.py,sha256=rlD6BuedfUgS75lLJBq7RAk4Sa1qTQs8MlJajAzqOkk,153
|
|
271
|
+
label_studio_sdk/types/prompt_version_organization.py,sha256=8F0AflJWt8HzMBmcgnx2Rwk7IfngACDBeckG_4QZRyY,156
|
|
272
|
+
label_studio_sdk/types/prompt_version_provider.py,sha256=Zh2xGnOcnwQ7-s4uSaKXbAvxz-OLir0nDXncrUJ5v6E,170
|
|
224
273
|
label_studio_sdk/types/redis_export_storage.py,sha256=v6rjzqJnA3cSevwgr3Q-hjF5EYnJLkX1RSTTRNxH3EA,3419
|
|
225
274
|
label_studio_sdk/types/redis_export_storage_status.py,sha256=yOqhEQ2CSOJP3mQr6bPfARVROGi9YZwnM9bBM1CZCZM,217
|
|
226
275
|
label_studio_sdk/types/redis_import_storage.py,sha256=aIVNdfD9_6yfyicgPF15v08-552pbAAYDbeZJoAY8a0,3288
|
|
227
276
|
label_studio_sdk/types/redis_import_storage_status.py,sha256=KmGl0_RWK20owkGdLZ2Tx19v7fZrSSBDhN-SScYh5hM,217
|
|
277
|
+
label_studio_sdk/types/refined_prompt_response.py,sha256=ZX54WLX9BrSdr-M88X4GOA7hP9VPFVtZcLhZb39m70c,2137
|
|
278
|
+
label_studio_sdk/types/refined_prompt_response_refinement_status.py,sha256=k2VmjpYtv4E19KV0pjcgUmC_UEn3TOWUI0S3MbllaG4,215
|
|
228
279
|
label_studio_sdk/types/s3export_storage.py,sha256=YdsbJuUIhy9aUtIT2ExPtjM4C4K_WDTUsCGw2563s9Y,3849
|
|
229
280
|
label_studio_sdk/types/s3export_storage_status.py,sha256=HYCH0ZH90Oi-_1WgOo6d19rFm5JJ9M7tn5tVPL71P70,214
|
|
230
281
|
label_studio_sdk/types/s3import_storage.py,sha256=ztrH-qqQnpZvgZSSE_l06ZK9GvS6vKE1W1HEUeVHwxA,4029
|
|
@@ -234,8 +285,9 @@ label_studio_sdk/types/s3s_import_storage.py,sha256=gMz9IeahX9_jfK_UXy3fKPy5rTgG
|
|
|
234
285
|
label_studio_sdk/types/s3s_import_storage_status.py,sha256=5yn9Sh82CP0TLjPlUgd9FJ6M2-XHC0cTnXg3N9bPsGs,215
|
|
235
286
|
label_studio_sdk/types/serialization_option.py,sha256=WQqHZTqXTERA_83fkPsjxq1yTMj9DsOnfDJy76Xh3xo,1278
|
|
236
287
|
label_studio_sdk/types/serialization_options.py,sha256=FKubgrOGtD3t6Xi7N81zJxWV6WkWmu0WOrq1WD289TA,1774
|
|
237
|
-
label_studio_sdk/types/task.py,sha256=
|
|
288
|
+
label_studio_sdk/types/task.py,sha256=WizmeTxvdvQokN9oflv4SmjAqF-J08tJx2B_1WhStOE,4776
|
|
238
289
|
label_studio_sdk/types/task_annotators_item.py,sha256=ZACM_u0ogzO7VmzJmml7EaaqdLiVLrwE-lxlkdZvuRM,149
|
|
290
|
+
label_studio_sdk/types/task_comment_authors_item.py,sha256=u0N3iH5uBtDJZush9ufRDEoHYmREY1lLBokyrAwgn6w,153
|
|
239
291
|
label_studio_sdk/types/task_filter_options.py,sha256=ECmGUKl-lGXEr5BLkh2enPJMpnHkA3P-Niof_i6AB0A,1926
|
|
240
292
|
label_studio_sdk/types/user_simple.py,sha256=KfBGAEKWcJfoevRTCsrK1zYa81MXJcUf1IQ9p95nqVA,1333
|
|
241
293
|
label_studio_sdk/types/view.py,sha256=zIlUL8kgko-Gjdijjzz9L_zgHJfRFSSHJUQIUaX6D4Y,1797
|
|
@@ -270,16 +322,17 @@ label_studio_sdk/views/types/views_update_request_data_filters_items_item_operat
|
|
|
270
322
|
label_studio_sdk/views/types/views_update_request_data_filters_items_item_value.py,sha256=HGgu8yUBw08tkUuahsGOrCkdZYIjRfz3B_Hn-I53Tps,192
|
|
271
323
|
label_studio_sdk/views/types/views_update_request_data_ordering_item.py,sha256=6TjHuKVqsCJ2SHWncUTVue182zx8a2ADu0_JOBSFaj4,873
|
|
272
324
|
label_studio_sdk/webhooks/__init__.py,sha256=0DSbAQyqXqt6PKwuuIVD7omuduXEibruIm5h0_68EKk,165
|
|
273
|
-
label_studio_sdk/webhooks/client.py,sha256=
|
|
325
|
+
label_studio_sdk/webhooks/client.py,sha256=YhYQyfAaHW6Z1LrniIoMLXG5GNAeac-i46rzADog6zg,31276
|
|
274
326
|
label_studio_sdk/webhooks/types/__init__.py,sha256=NAHGRDDJqPr2fve8K4XwAV8Dr-OfLPhGmamY_VCzSvk,196
|
|
275
327
|
label_studio_sdk/webhooks/types/webhooks_update_request_actions_item.py,sha256=qBGwoU6G5uRwDGdJCXgqjJ2TzVLcak3sNObxMCgOjJg,517
|
|
276
328
|
label_studio_sdk/workspaces/__init__.py,sha256=Tpg_Lo37vDQtY28j4YmIAXHCfRV1Sz3L4gkgZyHWi5U,230
|
|
277
|
-
label_studio_sdk/workspaces/client.py,sha256=
|
|
329
|
+
label_studio_sdk/workspaces/client.py,sha256=1gP52EW70RMJQAmpWJsHi287kzxlufPXWQoFZe6oeVY,18890
|
|
278
330
|
label_studio_sdk/workspaces/members/__init__.py,sha256=YUnb3NvL5D5BdeUpL5gMjGqCWN_dJQ14pjUV6aOSJYg,195
|
|
279
331
|
label_studio_sdk/workspaces/members/client.py,sha256=OQBgiVK2Rf9fQZ3ogAprZ2bJhpBTnfHq9jNaSx27DTQ,9945
|
|
280
332
|
label_studio_sdk/workspaces/members/types/__init__.py,sha256=ZIa_rd7d6K9ZITjTU6fptyGgvjNDySksJ7Rbn4wyhD4,252
|
|
281
333
|
label_studio_sdk/workspaces/members/types/members_create_response.py,sha256=_HhJVRMwE_7ZQHfqpuWXgV57tWSk07y0grqQAIlZGUY,1228
|
|
282
334
|
label_studio_sdk/workspaces/members/types/members_list_response_item.py,sha256=RlTUR1z2hNP1DYDmixjafUS34A7RmOYMsyQLXZrb9Dw,1255
|
|
283
|
-
label_studio_sdk-1.0.
|
|
284
|
-
label_studio_sdk-1.0.
|
|
285
|
-
label_studio_sdk-1.0.
|
|
335
|
+
label_studio_sdk-1.0.8.dist-info/LICENSE,sha256=ymVrFcHiJGjHeY30NWZgdV-xzNEtfuC63oK9ZeMDjhs,11341
|
|
336
|
+
label_studio_sdk-1.0.8.dist-info/METADATA,sha256=FMPemaod6ZroTR2fy-f8Fp8kxHxVzda25RwRbWSKBFw,5820
|
|
337
|
+
label_studio_sdk-1.0.8.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
338
|
+
label_studio_sdk-1.0.8.dist-info/RECORD,,
|