label-studio-sdk 2.0.6__py3-none-any.whl → 2.0.7__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 +18 -0
- label_studio_sdk/base_client.py +4 -0
- label_studio_sdk/core/client_wrapper.py +1 -1
- label_studio_sdk/label_interface/control_tags.py +38 -0
- label_studio_sdk/label_interface/data_examples.json +10 -0
- label_studio_sdk/label_interface/interface.py +13 -0
- label_studio_sdk/label_interface/object_tags.py +9 -0
- label_studio_sdk/ml/client.py +124 -0
- label_studio_sdk/organizations/__init__.py +3 -2
- label_studio_sdk/organizations/client.py +536 -1
- label_studio_sdk/organizations/invites/__init__.py +2 -0
- label_studio_sdk/organizations/invites/client.py +368 -0
- label_studio_sdk/organizations/types/__init__.py +5 -0
- label_studio_sdk/organizations/types/patched_default_role_request_custom_scripts_editable_by.py +7 -0
- label_studio_sdk/project_templates/__init__.py +2 -0
- label_studio_sdk/project_templates/client.py +909 -0
- label_studio_sdk/types/__init__.py +14 -0
- label_studio_sdk/types/default_role.py +75 -0
- label_studio_sdk/types/default_role_custom_scripts_editable_by.py +7 -0
- label_studio_sdk/types/lse_project.py +223 -0
- label_studio_sdk/types/lse_project_sampling.py +7 -0
- label_studio_sdk/types/lse_project_skip_queue.py +7 -0
- label_studio_sdk/types/lse_task.py +1 -1
- label_studio_sdk/types/lse_task_serializer_for_reviewers.py +1 -1
- label_studio_sdk/types/project_template.py +41 -0
- label_studio_sdk/types/project_template_request.py +38 -0
- {label_studio_sdk-2.0.6.dist-info → label_studio_sdk-2.0.7.dist-info}/METADATA +1 -1
- {label_studio_sdk-2.0.6.dist-info → label_studio_sdk-2.0.7.dist-info}/RECORD +30 -17
- {label_studio_sdk-2.0.6.dist-info → label_studio_sdk-2.0.7.dist-info}/LICENSE +0 -0
- {label_studio_sdk-2.0.6.dist-info → label_studio_sdk-2.0.7.dist-info}/WHEEL +0 -0
|
@@ -47,6 +47,8 @@ from .converted_format import ConvertedFormat
|
|
|
47
47
|
from .converted_format_request import ConvertedFormatRequest
|
|
48
48
|
from .count_limit import CountLimit
|
|
49
49
|
from .custom_scripts_editable_by_enum import CustomScriptsEditableByEnum
|
|
50
|
+
from .default_role import DefaultRole
|
|
51
|
+
from .default_role_custom_scripts_editable_by import DefaultRoleCustomScriptsEditableBy
|
|
50
52
|
from .default_role_enum import DefaultRoleEnum
|
|
51
53
|
from .edition_enum import EditionEnum
|
|
52
54
|
from .export import Export
|
|
@@ -79,9 +81,12 @@ from .lse_key_indicator_value import LseKeyIndicatorValue
|
|
|
79
81
|
from .lse_organization import LseOrganization
|
|
80
82
|
from .lse_organization_custom_scripts_editable_by import LseOrganizationCustomScriptsEditableBy
|
|
81
83
|
from .lse_organization_member_list import LseOrganizationMemberList
|
|
84
|
+
from .lse_project import LseProject
|
|
82
85
|
from .lse_project_create import LseProjectCreate
|
|
83
86
|
from .lse_project_create_sampling import LseProjectCreateSampling
|
|
84
87
|
from .lse_project_create_skip_queue import LseProjectCreateSkipQueue
|
|
88
|
+
from .lse_project_sampling import LseProjectSampling
|
|
89
|
+
from .lse_project_skip_queue import LseProjectSkipQueue
|
|
85
90
|
from .lse_project_update import LseProjectUpdate
|
|
86
91
|
from .lse_project_update_sampling import LseProjectUpdateSampling
|
|
87
92
|
from .lse_project_update_skip_queue import LseProjectUpdateSkipQueue
|
|
@@ -155,6 +160,8 @@ from .project_member_bulk_assign_roles_request import ProjectMemberBulkAssignRol
|
|
|
155
160
|
from .project_sampling import ProjectSampling
|
|
156
161
|
from .project_skip_queue import ProjectSkipQueue
|
|
157
162
|
from .project_subset_enum import ProjectSubsetEnum
|
|
163
|
+
from .project_template import ProjectTemplate
|
|
164
|
+
from .project_template_request import ProjectTemplateRequest
|
|
158
165
|
from .prompts_status_enum import PromptsStatusEnum
|
|
159
166
|
from .provider_enum import ProviderEnum
|
|
160
167
|
from .reason_enum import ReasonEnum
|
|
@@ -260,6 +267,8 @@ __all__ = [
|
|
|
260
267
|
"ConvertedFormatRequest",
|
|
261
268
|
"CountLimit",
|
|
262
269
|
"CustomScriptsEditableByEnum",
|
|
270
|
+
"DefaultRole",
|
|
271
|
+
"DefaultRoleCustomScriptsEditableBy",
|
|
263
272
|
"DefaultRoleEnum",
|
|
264
273
|
"EditionEnum",
|
|
265
274
|
"Export",
|
|
@@ -292,9 +301,12 @@ __all__ = [
|
|
|
292
301
|
"LseOrganization",
|
|
293
302
|
"LseOrganizationCustomScriptsEditableBy",
|
|
294
303
|
"LseOrganizationMemberList",
|
|
304
|
+
"LseProject",
|
|
295
305
|
"LseProjectCreate",
|
|
296
306
|
"LseProjectCreateSampling",
|
|
297
307
|
"LseProjectCreateSkipQueue",
|
|
308
|
+
"LseProjectSampling",
|
|
309
|
+
"LseProjectSkipQueue",
|
|
298
310
|
"LseProjectUpdate",
|
|
299
311
|
"LseProjectUpdateSampling",
|
|
300
312
|
"LseProjectUpdateSkipQueue",
|
|
@@ -368,6 +380,8 @@ __all__ = [
|
|
|
368
380
|
"ProjectSampling",
|
|
369
381
|
"ProjectSkipQueue",
|
|
370
382
|
"ProjectSubsetEnum",
|
|
383
|
+
"ProjectTemplate",
|
|
384
|
+
"ProjectTemplateRequest",
|
|
371
385
|
"PromptsStatusEnum",
|
|
372
386
|
"ProviderEnum",
|
|
373
387
|
"ReasonEnum",
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
import datetime as dt
|
|
6
|
+
import pydantic
|
|
7
|
+
from .default_role_custom_scripts_editable_by import DefaultRoleCustomScriptsEditableBy
|
|
8
|
+
from .default_role_enum import DefaultRoleEnum
|
|
9
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class DefaultRole(UncheckedBaseModel):
|
|
13
|
+
annotator_reviewer_firewall_enabled_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
14
|
+
"""
|
|
15
|
+
Set to current time to restrict data sharing between annotators and reviewers in the label stream, review stream, and notifications (which will be disabled). In these settings, information about annotator and reviewer identity is suppressed in the UI.
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
custom_scripts_editable_by: typing.Optional[DefaultRoleCustomScriptsEditableBy] = pydantic.Field(default=None)
|
|
19
|
+
"""
|
|
20
|
+
Set the minimum user role that can edit custom scripts in the UI.
|
|
21
|
+
|
|
22
|
+
* `AD` - Administrator
|
|
23
|
+
* `MA` - Manager
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
custom_scripts_enabled_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
27
|
+
"""
|
|
28
|
+
Set to current time to enabled custom scripts for this organization. Can only be enabled if no organization members are active members of any other organizations; otherwise an error will be raised. If this occurs, contact the LEAP team for assistance with enabling custom scripts.
|
|
29
|
+
"""
|
|
30
|
+
|
|
31
|
+
default_role: typing.Optional[DefaultRoleEnum] = pydantic.Field(default=None)
|
|
32
|
+
"""
|
|
33
|
+
Default membership role for invited users
|
|
34
|
+
|
|
35
|
+
* `OW` - Owner
|
|
36
|
+
* `AD` - Administrator
|
|
37
|
+
* `MA` - Manager
|
|
38
|
+
* `RE` - Reviewer
|
|
39
|
+
* `AN` - Annotator
|
|
40
|
+
* `DI` - Deactivated
|
|
41
|
+
* `NO` - Not Activated
|
|
42
|
+
"""
|
|
43
|
+
|
|
44
|
+
email_notification_settings: typing.Optional[typing.Optional[typing.Any]] = None
|
|
45
|
+
embed_domains: typing.Optional[typing.Optional[typing.Any]] = None
|
|
46
|
+
embed_settings: typing.Optional[typing.Optional[typing.Any]] = None
|
|
47
|
+
external_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
48
|
+
"""
|
|
49
|
+
External ID to uniquely identify this organization
|
|
50
|
+
"""
|
|
51
|
+
|
|
52
|
+
extra_data_on_activity_logs: typing.Optional[bool] = None
|
|
53
|
+
label_stream_navigation_disabled_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
54
|
+
"""
|
|
55
|
+
Set to current time to disable the label stream navigation for this organization. This will prevent users from going back in the label stream to view previous labels.
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
organization: int = pydantic.Field()
|
|
59
|
+
"""
|
|
60
|
+
A unique integer value identifying this organization.
|
|
61
|
+
"""
|
|
62
|
+
|
|
63
|
+
read_only_quick_view_enabled_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
64
|
+
"""
|
|
65
|
+
Set to current time to prevent creating or editing annotations in quick view.
|
|
66
|
+
"""
|
|
67
|
+
|
|
68
|
+
if IS_PYDANTIC_V2:
|
|
69
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
70
|
+
else:
|
|
71
|
+
|
|
72
|
+
class Config:
|
|
73
|
+
frozen = True
|
|
74
|
+
smart_union = True
|
|
75
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
from .custom_scripts_editable_by_enum import CustomScriptsEditableByEnum
|
|
5
|
+
from .null_enum import NullEnum
|
|
6
|
+
|
|
7
|
+
DefaultRoleCustomScriptsEditableBy = typing.Union[CustomScriptsEditableByEnum, NullEnum]
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
from .assignment_settings import AssignmentSettings
|
|
6
|
+
import pydantic
|
|
7
|
+
import datetime as dt
|
|
8
|
+
from .user_simple import UserSimple
|
|
9
|
+
from .review_settings import ReviewSettings
|
|
10
|
+
from .lse_project_sampling import LseProjectSampling
|
|
11
|
+
from .lse_project_skip_queue import LseProjectSkipQueue
|
|
12
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class LseProject(UncheckedBaseModel):
|
|
16
|
+
"""
|
|
17
|
+
Serializer get numbers from project queryset annotation,
|
|
18
|
+
make sure, that you use correct one(Project.objects.with_counts())
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
annotation_limit_count: typing.Optional[int] = None
|
|
22
|
+
annotation_limit_percent: typing.Optional[str] = None
|
|
23
|
+
annotator_evaluation_minimum_score: typing.Optional[str] = None
|
|
24
|
+
annotator_evaluation_minimum_tasks: typing.Optional[int] = None
|
|
25
|
+
assignment_settings: AssignmentSettings
|
|
26
|
+
color: typing.Optional[str] = None
|
|
27
|
+
comment_classification_config: typing.Optional[str] = None
|
|
28
|
+
config_has_control_tags: bool = pydantic.Field()
|
|
29
|
+
"""
|
|
30
|
+
Flag to detect is project ready for labeling
|
|
31
|
+
"""
|
|
32
|
+
|
|
33
|
+
config_suitable_for_bulk_annotation: bool = pydantic.Field()
|
|
34
|
+
"""
|
|
35
|
+
Flag to detect is project ready for bulk annotation
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
control_weights: typing.Optional[typing.Optional[typing.Any]] = None
|
|
39
|
+
created_at: dt.datetime
|
|
40
|
+
created_by: typing.Optional[UserSimple] = pydantic.Field(default=None)
|
|
41
|
+
"""
|
|
42
|
+
Project owner
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
custom_script: typing.Optional[str] = None
|
|
46
|
+
custom_task_lock_ttl: typing.Optional[int] = pydantic.Field(default=None)
|
|
47
|
+
"""
|
|
48
|
+
TTL in seconds for task reservations, on new and existing tasks
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
data_types: typing.Optional[typing.Any] = None
|
|
52
|
+
description: typing.Optional[str] = pydantic.Field(default=None)
|
|
53
|
+
"""
|
|
54
|
+
Project description
|
|
55
|
+
"""
|
|
56
|
+
|
|
57
|
+
duplication_done: typing.Optional[bool] = None
|
|
58
|
+
duplication_status: typing.Optional[str] = None
|
|
59
|
+
enable_empty_annotation: typing.Optional[bool] = pydantic.Field(default=None)
|
|
60
|
+
"""
|
|
61
|
+
Allow annotators to submit empty annotations
|
|
62
|
+
"""
|
|
63
|
+
|
|
64
|
+
evaluate_predictions_automatically: typing.Optional[bool] = pydantic.Field(default=None)
|
|
65
|
+
"""
|
|
66
|
+
Retrieve and display predictions when loading a task
|
|
67
|
+
"""
|
|
68
|
+
|
|
69
|
+
expert_instruction: typing.Optional[str] = pydantic.Field(default=None)
|
|
70
|
+
"""
|
|
71
|
+
Labeling instructions in HTML format
|
|
72
|
+
"""
|
|
73
|
+
|
|
74
|
+
finished_task_number: int = pydantic.Field()
|
|
75
|
+
"""
|
|
76
|
+
Finished tasks
|
|
77
|
+
"""
|
|
78
|
+
|
|
79
|
+
ground_truth_number: int = pydantic.Field()
|
|
80
|
+
"""
|
|
81
|
+
Honeypot annotation number in project
|
|
82
|
+
"""
|
|
83
|
+
|
|
84
|
+
id: int
|
|
85
|
+
is_draft: typing.Optional[bool] = pydantic.Field(default=None)
|
|
86
|
+
"""
|
|
87
|
+
Whether or not the project is in the middle of being created
|
|
88
|
+
"""
|
|
89
|
+
|
|
90
|
+
is_published: typing.Optional[bool] = pydantic.Field(default=None)
|
|
91
|
+
"""
|
|
92
|
+
Whether or not the project is published to annotators
|
|
93
|
+
"""
|
|
94
|
+
|
|
95
|
+
label_config: typing.Optional[str] = pydantic.Field(default=None)
|
|
96
|
+
"""
|
|
97
|
+
Label config in XML format. See more about it in documentation
|
|
98
|
+
"""
|
|
99
|
+
|
|
100
|
+
maximum_annotations: typing.Optional[int] = pydantic.Field(default=None)
|
|
101
|
+
"""
|
|
102
|
+
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)
|
|
103
|
+
"""
|
|
104
|
+
|
|
105
|
+
members: str
|
|
106
|
+
members_count: int
|
|
107
|
+
min_annotations_to_start_training: typing.Optional[int] = pydantic.Field(default=None)
|
|
108
|
+
"""
|
|
109
|
+
Minimum number of completed tasks after which model training is started
|
|
110
|
+
"""
|
|
111
|
+
|
|
112
|
+
model_version: typing.Optional[str] = pydantic.Field(default=None)
|
|
113
|
+
"""
|
|
114
|
+
Machine learning model version
|
|
115
|
+
"""
|
|
116
|
+
|
|
117
|
+
num_tasks_with_annotations: int = pydantic.Field()
|
|
118
|
+
"""
|
|
119
|
+
Tasks with annotations count
|
|
120
|
+
"""
|
|
121
|
+
|
|
122
|
+
organization: typing.Optional[int] = None
|
|
123
|
+
overlap_cohort_percentage: typing.Optional[int] = None
|
|
124
|
+
parsed_label_config: typing.Optional[typing.Any] = None
|
|
125
|
+
pause_on_failed_annotator_evaluation: typing.Optional[bool] = None
|
|
126
|
+
pinned_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
127
|
+
"""
|
|
128
|
+
Pinned date and time
|
|
129
|
+
"""
|
|
130
|
+
|
|
131
|
+
prompts: str
|
|
132
|
+
queue_done: str
|
|
133
|
+
queue_left: str
|
|
134
|
+
queue_total: str
|
|
135
|
+
require_comment_on_skip: typing.Optional[bool] = None
|
|
136
|
+
reveal_preannotations_interactively: typing.Optional[bool] = pydantic.Field(default=None)
|
|
137
|
+
"""
|
|
138
|
+
Reveal pre-annotations interactively
|
|
139
|
+
"""
|
|
140
|
+
|
|
141
|
+
review_settings: ReviewSettings
|
|
142
|
+
reviewer_queue_total: str
|
|
143
|
+
sampling: typing.Optional[LseProjectSampling] = None
|
|
144
|
+
show_annotation_history: typing.Optional[bool] = pydantic.Field(default=None)
|
|
145
|
+
"""
|
|
146
|
+
Show annotation history to annotator
|
|
147
|
+
"""
|
|
148
|
+
|
|
149
|
+
show_collab_predictions: typing.Optional[bool] = pydantic.Field(default=None)
|
|
150
|
+
"""
|
|
151
|
+
If set, the annotator can view model predictions
|
|
152
|
+
"""
|
|
153
|
+
|
|
154
|
+
show_ground_truth_first: typing.Optional[bool] = None
|
|
155
|
+
show_instruction: typing.Optional[bool] = pydantic.Field(default=None)
|
|
156
|
+
"""
|
|
157
|
+
Show instructions to the annotator before they start
|
|
158
|
+
"""
|
|
159
|
+
|
|
160
|
+
show_overlap_first: typing.Optional[bool] = None
|
|
161
|
+
show_skip_button: typing.Optional[bool] = pydantic.Field(default=None)
|
|
162
|
+
"""
|
|
163
|
+
Show a skip button in interface and allow annotators to skip the task
|
|
164
|
+
"""
|
|
165
|
+
|
|
166
|
+
show_unused_data_columns_to_annotators: typing.Optional[bool] = None
|
|
167
|
+
skip_queue: typing.Optional[LseProjectSkipQueue] = None
|
|
168
|
+
skipped_annotations_number: int = pydantic.Field()
|
|
169
|
+
"""
|
|
170
|
+
Skipped by collaborators annotation number in project
|
|
171
|
+
"""
|
|
172
|
+
|
|
173
|
+
start_training_on_annotation_update: bool = pydantic.Field()
|
|
174
|
+
"""
|
|
175
|
+
Start model training after any annotations are submitted or updated
|
|
176
|
+
"""
|
|
177
|
+
|
|
178
|
+
task_data_login: typing.Optional[str] = pydantic.Field(default=None)
|
|
179
|
+
"""
|
|
180
|
+
Task data credentials: login
|
|
181
|
+
"""
|
|
182
|
+
|
|
183
|
+
task_data_password: typing.Optional[str] = pydantic.Field(default=None)
|
|
184
|
+
"""
|
|
185
|
+
Task data credentials: password
|
|
186
|
+
"""
|
|
187
|
+
|
|
188
|
+
task_number: int = pydantic.Field()
|
|
189
|
+
"""
|
|
190
|
+
Total task number in project
|
|
191
|
+
"""
|
|
192
|
+
|
|
193
|
+
title: typing.Optional[str] = pydantic.Field(default=None)
|
|
194
|
+
"""
|
|
195
|
+
Project name. Must be between 3 and 50 characters long.
|
|
196
|
+
"""
|
|
197
|
+
|
|
198
|
+
total_annotations_number: int = pydantic.Field()
|
|
199
|
+
"""
|
|
200
|
+
Total annotations number in project including skipped_annotations_number and ground_truth_number.
|
|
201
|
+
"""
|
|
202
|
+
|
|
203
|
+
total_predictions_number: int = pydantic.Field()
|
|
204
|
+
"""
|
|
205
|
+
Total predictions number in project including skipped_annotations_number, ground_truth_number, and useful_annotation_number.
|
|
206
|
+
"""
|
|
207
|
+
|
|
208
|
+
useful_annotation_number: int = pydantic.Field()
|
|
209
|
+
"""
|
|
210
|
+
Useful annotation number in project not including skipped_annotations_number and ground_truth_number. Total annotations = annotation_number + skipped_annotations_number + ground_truth_number
|
|
211
|
+
"""
|
|
212
|
+
|
|
213
|
+
workspace: str
|
|
214
|
+
workspace_title: str
|
|
215
|
+
|
|
216
|
+
if IS_PYDANTIC_V2:
|
|
217
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
218
|
+
else:
|
|
219
|
+
|
|
220
|
+
class Config:
|
|
221
|
+
frozen = True
|
|
222
|
+
smart_union = True
|
|
223
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
import datetime as dt
|
|
6
|
+
import pydantic
|
|
7
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class ProjectTemplate(UncheckedBaseModel):
|
|
11
|
+
assignment_settings: typing.Optional[typing.Optional[typing.Any]] = None
|
|
12
|
+
created_at: dt.datetime
|
|
13
|
+
created_by: typing.Optional[int] = None
|
|
14
|
+
custom_script: typing.Optional[str] = pydantic.Field(default=None)
|
|
15
|
+
"""
|
|
16
|
+
custom script for projects created from this template
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
description: typing.Optional[str] = None
|
|
20
|
+
id: int
|
|
21
|
+
name: str
|
|
22
|
+
organization: typing.Optional[int] = None
|
|
23
|
+
project_settings: typing.Optional[typing.Optional[typing.Any]] = None
|
|
24
|
+
require_comment_on_skip: typing.Optional[bool] = pydantic.Field(default=None)
|
|
25
|
+
"""
|
|
26
|
+
flag to require comment on skip
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
review_settings: typing.Optional[typing.Optional[typing.Any]] = None
|
|
30
|
+
show_unused_data_columns_to_annotators: typing.Optional[bool] = None
|
|
31
|
+
tags: typing.Optional[typing.Optional[typing.Any]] = None
|
|
32
|
+
updated_at: dt.datetime
|
|
33
|
+
|
|
34
|
+
if IS_PYDANTIC_V2:
|
|
35
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
36
|
+
else:
|
|
37
|
+
|
|
38
|
+
class Config:
|
|
39
|
+
frozen = True
|
|
40
|
+
smart_union = True
|
|
41
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
import pydantic
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class ProjectTemplateRequest(UncheckedBaseModel):
|
|
10
|
+
assignment_settings: typing.Optional[typing.Optional[typing.Any]] = None
|
|
11
|
+
created_by: typing.Optional[int] = None
|
|
12
|
+
custom_script: typing.Optional[str] = pydantic.Field(default=None)
|
|
13
|
+
"""
|
|
14
|
+
custom script for projects created from this template
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
description: typing.Optional[str] = None
|
|
18
|
+
name: str
|
|
19
|
+
organization: typing.Optional[int] = None
|
|
20
|
+
project_id: int
|
|
21
|
+
project_settings: typing.Optional[typing.Optional[typing.Any]] = None
|
|
22
|
+
require_comment_on_skip: typing.Optional[bool] = pydantic.Field(default=None)
|
|
23
|
+
"""
|
|
24
|
+
flag to require comment on skip
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
review_settings: typing.Optional[typing.Optional[typing.Any]] = None
|
|
28
|
+
show_unused_data_columns_to_annotators: typing.Optional[bool] = None
|
|
29
|
+
tags: typing.Optional[typing.Optional[typing.Any]] = None
|
|
30
|
+
|
|
31
|
+
if IS_PYDANTIC_V2:
|
|
32
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
33
|
+
else:
|
|
34
|
+
|
|
35
|
+
class Config:
|
|
36
|
+
frozen = True
|
|
37
|
+
smart_union = True
|
|
38
|
+
extra = pydantic.Extra.allow
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
label_studio_sdk/__init__.py,sha256=
|
|
1
|
+
label_studio_sdk/__init__.py,sha256=6_hPou1jeH0h09GYoSmh5PSWYVW_O_OY2wi2JUhpea0,19270
|
|
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
|
|
@@ -55,7 +55,7 @@ label_studio_sdk/annotations/client.py,sha256=5WwgsMNydsGq4hOZkw9bNgfYFqnB6e1Zc8
|
|
|
55
55
|
label_studio_sdk/annotations/types/__init__.py,sha256=fFJUpZiJV7q7otQJVzsz9wJ1R8j_5qnm59z6ktmhWhE,409
|
|
56
56
|
label_studio_sdk/annotations/types/annotation_bulk_serializer_with_selected_items_request_last_action.py,sha256=bY82sf_78SmtUjwpSLEmL6UfSFcXjpPCc9sRDqNUEDs,273
|
|
57
57
|
label_studio_sdk/annotations/types/annotations_create_bulk_response_item.py,sha256=I-yNfeAGxx1sSeG2QQd_EHFo2m2xHOI7PEfZFWQAWMU,631
|
|
58
|
-
label_studio_sdk/base_client.py,sha256=
|
|
58
|
+
label_studio_sdk/base_client.py,sha256=Jfm0ycwPIL9ZcRsNjzG6zt3L9aBXq5ixvc2vdRPxJ70,13076
|
|
59
59
|
label_studio_sdk/billing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
60
60
|
label_studio_sdk/billing/client.py,sha256=EvXxch0d-6DRnh1fSIqOr51VQcM1EDGPUN-TVNCgdGs,3642
|
|
61
61
|
label_studio_sdk/blueprints/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -85,7 +85,7 @@ label_studio_sdk/converter/main.py,sha256=gfe5zPV2dnIk4ifG1AT95ExkzOSLzje0EOjnW0
|
|
|
85
85
|
label_studio_sdk/converter/utils.py,sha256=VshPBwZLu2VPIGVsShKAkZwB_zKz0VvMkNRCwWeEqWg,18702
|
|
86
86
|
label_studio_sdk/core/__init__.py,sha256=ce_PzO3KeABqvV_Tz7cF_EnMf_mjAGZw9sp2q4XfFvY,1672
|
|
87
87
|
label_studio_sdk/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
88
|
-
label_studio_sdk/core/client_wrapper.py,sha256=
|
|
88
|
+
label_studio_sdk/core/client_wrapper.py,sha256=f7TdPTOSJ_EE_NESC4Ch8qxBaFJ8zPO-ejvPHyHVJBo,2247
|
|
89
89
|
label_studio_sdk/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
90
90
|
label_studio_sdk/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
91
91
|
label_studio_sdk/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
|
|
@@ -152,16 +152,16 @@ label_studio_sdk/jwt_settings/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1
|
|
|
152
152
|
label_studio_sdk/jwt_settings/client.py,sha256=ts6-0r8XY-KH8nBdZnKkIDSPZDMdle0JsIX3xOVOaYo,8058
|
|
153
153
|
label_studio_sdk/label_interface/__init__.py,sha256=Eg6y3mAaYdKzJ5ZPhU_BTX2qoNPafthdxLD2I_rmXoU,38
|
|
154
154
|
label_studio_sdk/label_interface/base.py,sha256=NCgY7ntk0WSc9O9iXu3g37-CxbZgCx_WO2pvOEHK-cg,2786
|
|
155
|
-
label_studio_sdk/label_interface/control_tags.py,sha256=
|
|
155
|
+
label_studio_sdk/label_interface/control_tags.py,sha256=xMZxDYvbrfYic9n9B2tED4LjktW1537lkjEtbtwurPQ,32882
|
|
156
156
|
label_studio_sdk/label_interface/create.py,sha256=c3h5_FF4u5J62_mqq1oK2mjqXL-I1559C6MfoxkgO6s,6993
|
|
157
|
-
label_studio_sdk/label_interface/data_examples.json,sha256=
|
|
158
|
-
label_studio_sdk/label_interface/interface.py,sha256=
|
|
157
|
+
label_studio_sdk/label_interface/data_examples.json,sha256=CU2rhDG0946a2ImMcA4V2R2OYTBCMtU8l_Y4vljHHA8,8860
|
|
158
|
+
label_studio_sdk/label_interface/interface.py,sha256=3wAn9fPzgy9vync5JTN0XbBBafjZBBcV31SeCCei1YU,56217
|
|
159
159
|
label_studio_sdk/label_interface/label_tags.py,sha256=nWEo21Gd8IPzIO72UqraLrChIbvrSMCA_eEhzYGnGCc,2282
|
|
160
|
-
label_studio_sdk/label_interface/object_tags.py,sha256=
|
|
160
|
+
label_studio_sdk/label_interface/object_tags.py,sha256=AUHP3YOnoa7RJloha1_N1-aPdjB4_uJlyMHwbVUWG1Y,9140
|
|
161
161
|
label_studio_sdk/label_interface/objects.py,sha256=V1Spp0S9qE7iA-5kPCi0QyHrJ80Du9BUuYMsQUAQqc0,1535
|
|
162
162
|
label_studio_sdk/label_interface/region.py,sha256=th39WeQk8ypi-4krEpsW0BZnoygu4XgvP4w7NkRQp2M,1755
|
|
163
163
|
label_studio_sdk/ml/__init__.py,sha256=fTUzBUIsUwvsymtq9NhvNW3MUKpzQqGfke4PBTcImQU,267
|
|
164
|
-
label_studio_sdk/ml/client.py,sha256=
|
|
164
|
+
label_studio_sdk/ml/client.py,sha256=MzTolsq9XlgkFjqwYIs9zUZBZ485U2CgHDYo3tmKk88,41907
|
|
165
165
|
label_studio_sdk/ml/types/__init__.py,sha256=qXv2q70PJ-xUPTaWx0W9UQTn0s_uL9__jEFuQgE7Sik,377
|
|
166
166
|
label_studio_sdk/ml/types/ml_create_request_auth_method.py,sha256=2toHmZJAOMq_r_r-kHCscI5R73j0hvSflVFc_xS6zm8,171
|
|
167
167
|
label_studio_sdk/ml/types/ml_list_model_versions_response.py,sha256=2I9n8izbtLK-TRchvzNjHq5CYH6mvRecFkWqiUR83g4,656
|
|
@@ -170,12 +170,18 @@ label_studio_sdk/model_providers/__init__.py,sha256=qJwxSM8nhdwwUWeqFW7pKaTBktB3
|
|
|
170
170
|
label_studio_sdk/model_providers/client.py,sha256=tvOWXS33cfF4Gr54qzLdrFKfAcRD8rbo3q5__bb02W0,29001
|
|
171
171
|
label_studio_sdk/model_providers/types/__init__.py,sha256=vSsm_DCgvoiD0sK3R6xoI3GInGJjavtc5bNtSAnTLMI,240
|
|
172
172
|
label_studio_sdk/model_providers/types/model_providers_list_model_provider_choices_response.py,sha256=8K2r1Zwh1XwV2uK3F2PpLcuozsQkuqtCtEzWYvbP6M0,642
|
|
173
|
-
label_studio_sdk/organizations/__init__.py,sha256=
|
|
174
|
-
label_studio_sdk/organizations/client.py,sha256=
|
|
173
|
+
label_studio_sdk/organizations/__init__.py,sha256=ibgGlGJ29AOe9RnW_nvXSXbQxlMuUaGaTSWTmgJ0_7U,250
|
|
174
|
+
label_studio_sdk/organizations/client.py,sha256=fYzG9Y4LFqhBsxwCsusAEKp7mH2t41-R25jOgIplc8U,31728
|
|
175
|
+
label_studio_sdk/organizations/invites/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
176
|
+
label_studio_sdk/organizations/invites/client.py,sha256=BasHE22RFIpTnnCFRKGrpezyQg_YxzNDCOZhyDC35Mo,11103
|
|
175
177
|
label_studio_sdk/organizations/members/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
176
178
|
label_studio_sdk/organizations/members/client.py,sha256=P7U1tmgOY_T1FfPQ5i4pDD8j_A3vNcwyfSZeAq2ZL8s,22677
|
|
179
|
+
label_studio_sdk/organizations/types/__init__.py,sha256=9akBrG6IHZY0u-MRdMAN8ce6QXzyoy3dx2_F6vmzZAI,247
|
|
180
|
+
label_studio_sdk/organizations/types/patched_default_role_request_custom_scripts_editable_by.py,sha256=MvH5EGQ7Hk6q0ZFJvl8HtswlEPUOJ156g02Vr3DDbo4,304
|
|
177
181
|
label_studio_sdk/predictions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
178
182
|
label_studio_sdk/predictions/client.py,sha256=byZeW8GKDcQybZtF7JypVSuDkAOynDZ7B3m9zOcKns0,23930
|
|
183
|
+
label_studio_sdk/project_templates/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
184
|
+
label_studio_sdk/project_templates/client.py,sha256=nSVskzXekK0kZlFwz0InJmX-JsYAorH83y429gX5UyU,29214
|
|
179
185
|
label_studio_sdk/projects/__init__.py,sha256=9WbmOrY3FX98kO1C-wJwODa54_lmWhRWSGn_kOryyLE,2672
|
|
180
186
|
label_studio_sdk/projects/assignments/__init__.py,sha256=bllP6i4AeZvmw72dM7ZUC3yV6jo7T_xs6ygkFpi0BcY,1419
|
|
181
187
|
label_studio_sdk/projects/assignments/client.py,sha256=7_N3Sfok8fafM8g7XUek8quRdIi9Ryy0ZYs0VkUtewU,26692
|
|
@@ -267,7 +273,7 @@ label_studio_sdk/tasks/types/tasks_list_request_fields.py,sha256=5YXxQgyzoaL0QjS
|
|
|
267
273
|
label_studio_sdk/tokens/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
268
274
|
label_studio_sdk/tokens/client.py,sha256=xcGl2ZA6Ojc9fZAbZQrqZ-yfBfllCUvvD4gzDM2HvW4,19125
|
|
269
275
|
label_studio_sdk/tokens/client_ext.py,sha256=DJ4vEslU0BKragW51LjJW-AG1uogPiCeEGB3o6qtAK4,6030
|
|
270
|
-
label_studio_sdk/types/__init__.py,sha256=
|
|
276
|
+
label_studio_sdk/types/__init__.py,sha256=3-4DHfapBC2QUji0n0k2le06SJgl0J4pmO502wxg-Qo,18728
|
|
271
277
|
label_studio_sdk/types/action_enum.py,sha256=5dJlg23VHWVcFR1NvsKyUPTFuORMtiIsA887EpCzvTU,382
|
|
272
278
|
label_studio_sdk/types/actions_enum.py,sha256=h2lpUstX459SfopuhWzpUONFhMYNkeWsddTxmTIx54k,575
|
|
273
279
|
label_studio_sdk/types/activity_log.py,sha256=nU1OMVtFgH1mrgYAFpDd9lnIr-4aAuFyo7ZhgGtXF_4,1398
|
|
@@ -313,6 +319,8 @@ label_studio_sdk/types/converted_format.py,sha256=0vdOAQRfccS1aI75df3z5v-ujBacYG
|
|
|
313
319
|
label_studio_sdk/types/converted_format_request.py,sha256=4hoaY0SlMtGCDmfAYCw-3_1e1YPxatumTohApCk_QvE,788
|
|
314
320
|
label_studio_sdk/types/count_limit.py,sha256=Gj_e9ajx9CFWV2PfEePnh7xy38kkQxlhE4MA9D6Hz5Y,628
|
|
315
321
|
label_studio_sdk/types/custom_scripts_editable_by_enum.py,sha256=D6cvF_3KZd5SHfG5mZ4ymCw58tbjK_rNUBegjMchklw,163
|
|
322
|
+
label_studio_sdk/types/default_role.py,sha256=sgjtHVG7i3uCErB9l4OJ6eIbdpN9v1E_qAcQS272S4A,3069
|
|
323
|
+
label_studio_sdk/types/default_role_custom_scripts_editable_by.py,sha256=5YdtFSNWL363z6C6IuucAVEFyxeztxd0ZgwHj3YZJv4,274
|
|
316
324
|
label_studio_sdk/types/default_role_enum.py,sha256=jgeievuDBcZDHc6aGlEUt0E4CybFWNr04vqAEuaBwNY,181
|
|
317
325
|
label_studio_sdk/types/edition_enum.py,sha256=ve-LU0FMQIY3RcCdQ3iEPjscCz-kft8hZ77oYRX_MZ8,162
|
|
318
326
|
label_studio_sdk/types/export.py,sha256=f8bjg023PNyBNlboaga1jypdW_NL0DKCqQTMdbmk3GU,1216
|
|
@@ -345,9 +353,12 @@ label_studio_sdk/types/lse_key_indicator_value.py,sha256=UT2AcLLzJkzXroiRHqOILwf
|
|
|
345
353
|
label_studio_sdk/types/lse_organization.py,sha256=ulF5pSBm61FEb5WPm28TPG3AlXpWSjYsx06uzJExTTM,1794
|
|
346
354
|
label_studio_sdk/types/lse_organization_custom_scripts_editable_by.py,sha256=y-IxR7V6xr6n_z934BXzg4pEjZ06FF-lcT6YiYjLMaM,278
|
|
347
355
|
label_studio_sdk/types/lse_organization_member_list.py,sha256=NIkPnczq9KrowYJTtLGvGNQtSUejgrMnB7k-k5kuQ_Y,912
|
|
356
|
+
label_studio_sdk/types/lse_project.py,sha256=2wUkVY-6DClokcXCxRFHBO743XFXzj6VSc1Z_Su-Mus,7161
|
|
348
357
|
label_studio_sdk/types/lse_project_create.py,sha256=pnGL13P9xT0_KqPgs_Ha3Rao9b6yB5s4sumWS_dONdA,6042
|
|
349
358
|
label_studio_sdk/types/lse_project_create_sampling.py,sha256=IgKHAT26PDcAmDNKFPxDgMsmY1WYWPGikBSYI-fj60c,216
|
|
350
359
|
label_studio_sdk/types/lse_project_create_skip_queue.py,sha256=MNCyF-K7MvppwVD9yByeZsEcCFAv3R46ufx3drzUWfs,221
|
|
360
|
+
label_studio_sdk/types/lse_project_sampling.py,sha256=Isz8LwiVPfzbWMyXyiAJIrI0pzFclXuOlXYDYi8I3x8,210
|
|
361
|
+
label_studio_sdk/types/lse_project_skip_queue.py,sha256=GI8Jm7vJ2qFnnDF80MtuwxvBh12Iy3p8iLiTk5vGfSU,215
|
|
351
362
|
label_studio_sdk/types/lse_project_update.py,sha256=6G-c7agVGHpVxkV3OZyejfNreBxMCNQYEDRpJHjNO18,6961
|
|
352
363
|
label_studio_sdk/types/lse_project_update_sampling.py,sha256=hSSLVEjN_tnaYbVI319uq_gvKvqSG9iB_LbjoGMUmA0,216
|
|
353
364
|
label_studio_sdk/types/lse_project_update_skip_queue.py,sha256=KPCTdIN145xcOTKxA4l3dyAZath9zly9PVfRBEbaiJM,221
|
|
@@ -355,7 +366,7 @@ label_studio_sdk/types/lse_s3export_storage.py,sha256=Ao0MeKyHGdOy1FRIBF96vZP8Y0
|
|
|
355
366
|
label_studio_sdk/types/lse_s3export_storage_request.py,sha256=OxmVJvuVh-PVBtfAeSijeG8NLvYMZK3TRs1kTFkEgqk,3233
|
|
356
367
|
label_studio_sdk/types/lse_s3import_storage.py,sha256=5lbzEQ9pPr6D2x0prvZFfEKRKbkVbxW5bP589zjsBeg,3511
|
|
357
368
|
label_studio_sdk/types/lse_s3import_storage_request.py,sha256=bgv3IzEL_q8r9eNxB0UIxLpy3yEB77LkOoYbwwvVZ1I,3410
|
|
358
|
-
label_studio_sdk/types/lse_task.py,sha256=
|
|
369
|
+
label_studio_sdk/types/lse_task.py,sha256=74EW99S6RaIDHJb9TRr4QNgPevz4t6EUgIWeJbS-2BU,3775
|
|
359
370
|
label_studio_sdk/types/lse_task_drafts_item.py,sha256=V-EXOdhNmTHCFxzIRlwLGcVpiByZFRHxb-c0qNsHfTw,769
|
|
360
371
|
label_studio_sdk/types/lse_task_filter_options.py,sha256=XiJUNQcoqPVWJGT_76O3REAuk6zN0Ta1ThTGk5aOBKw,2210
|
|
361
372
|
label_studio_sdk/types/lse_task_filter_options_annotated.py,sha256=-0l0anGws-B889zYX-VPCAUVlabzZGLVcpE8HfKln1Y,224
|
|
@@ -371,7 +382,7 @@ label_studio_sdk/types/lse_task_predictions_item.py,sha256=-thtYUl3yB0y2XHTC1inP
|
|
|
371
382
|
label_studio_sdk/types/lse_task_serializer_for_annotators.py,sha256=jJbuLnMDsZHFnsYQWA9oY6Qx82S7cS5ik2YOKBJX9CI,1750
|
|
372
383
|
label_studio_sdk/types/lse_task_serializer_for_annotators_drafts_item.py,sha256=MXtWOeyzjkwK09t6o_z34jadLOHHPfNOwrjkGdIIXyY,792
|
|
373
384
|
label_studio_sdk/types/lse_task_serializer_for_annotators_predictions_item.py,sha256=pFC73bYK1H7MriQE_qoX3znGlXgXD9ZcP3-oQ2STcaY,1130
|
|
374
|
-
label_studio_sdk/types/lse_task_serializer_for_reviewers.py,sha256
|
|
385
|
+
label_studio_sdk/types/lse_task_serializer_for_reviewers.py,sha256=h6jlp70PNe6ac-NyCJ97SB-j44QKmEMqyttbAKibzpA,3935
|
|
375
386
|
label_studio_sdk/types/lse_task_serializer_for_reviewers_drafts_item.py,sha256=EfySRnQD4wuzEAKNjrxaf_6vAe5tw0FJEe39BYiDNQc,791
|
|
376
387
|
label_studio_sdk/types/lse_task_serializer_for_reviewers_predictions_item.py,sha256=ZeUjfTTFqmOZ7CVs6uqV-uJ0PtcWucQv54GAcqBVKOI,1129
|
|
377
388
|
label_studio_sdk/types/lse_user.py,sha256=aweRxzq1g5gp6JA8z8i4Dvff2G11LxWl7OTTLph279s,1592
|
|
@@ -421,6 +432,8 @@ label_studio_sdk/types/project_member_bulk_assign_roles_request.py,sha256=m9YV2P
|
|
|
421
432
|
label_studio_sdk/types/project_sampling.py,sha256=n7U04PqHAIJ-53MqiQ9i6EyUn4RklVWu6KjZ-__FyhU,207
|
|
422
433
|
label_studio_sdk/types/project_skip_queue.py,sha256=SW4RQaUGV9VmW_kUv9v6ngrReHt8YGeaxRKEIazYdjY,212
|
|
423
434
|
label_studio_sdk/types/project_subset_enum.py,sha256=KuppmnQZwBtl3WD1g6B7Cosyf-S7_tYaB7PZvvD9GGs,167
|
|
435
|
+
label_studio_sdk/types/project_template.py,sha256=xhbJEn9cFFDgOyrucFS-7IhvkaHzHXCYbPastiKfwyk,1425
|
|
436
|
+
label_studio_sdk/types/project_template_request.py,sha256=QwBPw0Vyk8xsRGjQ8QEnqX-JOXU0tRxHUo629PPJuZ0,1362
|
|
424
437
|
label_studio_sdk/types/prompts_status_enum.py,sha256=g0EHGa6fJav2Xq7_eNowijMX_q9bzZkjoImOf_-KuXE,391
|
|
425
438
|
label_studio_sdk/types/provider_enum.py,sha256=5WdjjsVnR3G2SCLsqYwRsCpgrNr96RuNiNMwiK5CNSc,230
|
|
426
439
|
label_studio_sdk/types/reason_enum.py,sha256=WYuK-HZBEaq6Ta_83YbXi40eYrzmOQVBAMxDgsztZZ8,229
|
|
@@ -536,7 +549,7 @@ label_studio_sdk/workspaces/members/bulk/types/bulk_post_response.py,sha256=LV0q
|
|
|
536
549
|
label_studio_sdk/workspaces/members/client.py,sha256=Ds8TC6jtUDovlFng5pEGwhdNPXLnNQMpgRQm3wVGuG0,11068
|
|
537
550
|
label_studio_sdk/workspaces/members/paginated/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
538
551
|
label_studio_sdk/workspaces/members/paginated/client.py,sha256=f9v8TheXrh50_O746Vz9WQ4ZW3UPc83faduHry2GptI,6815
|
|
539
|
-
label_studio_sdk-2.0.
|
|
540
|
-
label_studio_sdk-2.0.
|
|
541
|
-
label_studio_sdk-2.0.
|
|
542
|
-
label_studio_sdk-2.0.
|
|
552
|
+
label_studio_sdk-2.0.7.dist-info/LICENSE,sha256=ymVrFcHiJGjHeY30NWZgdV-xzNEtfuC63oK9ZeMDjhs,11341
|
|
553
|
+
label_studio_sdk-2.0.7.dist-info/METADATA,sha256=qzU8Mhr-K1qzCSmGd8P8T44XgG911po-IkacsOdwVgs,7651
|
|
554
|
+
label_studio_sdk-2.0.7.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
555
|
+
label_studio_sdk-2.0.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|