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.

Files changed (51) hide show
  1. label_studio_sdk/activity_logs/client.py +12 -0
  2. label_studio_sdk/annotation_history/client.py +36 -0
  3. label_studio_sdk/annotation_reviews/client.py +60 -0
  4. label_studio_sdk/billing/client.py +12 -0
  5. label_studio_sdk/comments/client.py +72 -0
  6. label_studio_sdk/export_storage/azure_spi/client.py +84 -0
  7. label_studio_sdk/export_storage/databricks/client.py +84 -0
  8. label_studio_sdk/export_storage/gcswif/client.py +84 -0
  9. label_studio_sdk/export_storage/s3s/client.py +84 -0
  10. label_studio_sdk/import_storage/azure_spi/client.py +84 -0
  11. label_studio_sdk/import_storage/databricks/client.py +84 -0
  12. label_studio_sdk/import_storage/gcswif/client.py +84 -0
  13. label_studio_sdk/import_storage/s3s/client.py +84 -0
  14. label_studio_sdk/label_interface/control_tags.py +12 -7
  15. label_studio_sdk/ml/client.py +14 -2
  16. label_studio_sdk/model_providers/client.py +72 -0
  17. label_studio_sdk/organizations/client.py +30 -6
  18. label_studio_sdk/organizations/invites/client.py +24 -0
  19. label_studio_sdk/organizations/members/client.py +24 -0
  20. label_studio_sdk/organizations/permissions/client.py +60 -0
  21. label_studio_sdk/project_templates/client.py +76 -4
  22. label_studio_sdk/projects/__init__.py +6 -0
  23. label_studio_sdk/projects/assignments/client.py +60 -0
  24. label_studio_sdk/projects/client.py +12 -0
  25. label_studio_sdk/projects/members/bulk/client.py +24 -0
  26. label_studio_sdk/projects/members/client.py +12 -0
  27. label_studio_sdk/projects/members/paginated/client.py +12 -0
  28. label_studio_sdk/projects/metrics/client.py +24 -0
  29. label_studio_sdk/projects/pauses/client.py +60 -0
  30. label_studio_sdk/projects/stats/__init__.py +6 -0
  31. label_studio_sdk/projects/stats/client.py +486 -1
  32. label_studio_sdk/projects/stats/types/__init__.py +6 -0
  33. label_studio_sdk/projects/stats/types/stats_model_version_annotator_agreement_response.py +19 -0
  34. label_studio_sdk/projects/stats/types/stats_model_version_ground_truth_agreement_response.py +19 -0
  35. label_studio_sdk/projects/stats/types/stats_model_version_prediction_agreement_response.py +19 -0
  36. label_studio_sdk/prompts/client.py +96 -0
  37. label_studio_sdk/prompts/indicators/client.py +24 -0
  38. label_studio_sdk/prompts/runs/client.py +36 -0
  39. label_studio_sdk/prompts/versions/client.py +84 -0
  40. label_studio_sdk/sso/saml/client.py +24 -0
  41. label_studio_sdk/sso/scim/client.py +24 -0
  42. label_studio_sdk/types/default_role.py +2 -2
  43. label_studio_sdk/types/lse_organization.py +1 -1
  44. label_studio_sdk/types/project_template.py +1 -1
  45. label_studio_sdk/types/project_template_request.py +1 -1
  46. label_studio_sdk/users/client.py +24 -0
  47. label_studio_sdk/versions/client.py +12 -0
  48. {label_studio_sdk-2.0.10.dist-info → label_studio_sdk-2.0.11.dist-info}/METADATA +1 -1
  49. {label_studio_sdk-2.0.10.dist-info → label_studio_sdk-2.0.11.dist-info}/RECORD +51 -48
  50. {label_studio_sdk-2.0.10.dist-info → label_studio_sdk-2.0.11.dist-info}/LICENSE +0 -0
  51. {label_studio_sdk-2.0.10.dist-info → label_studio_sdk-2.0.11.dist-info}/WHEEL +0 -0
@@ -28,6 +28,12 @@ class S3SClient:
28
28
  request_options: typing.Optional[RequestOptions] = None,
29
29
  ) -> typing.List[LseS3ImportStorage]:
30
30
  """
31
+ <Card href="https://humansignal.com/goenterprise">
32
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
33
+ <p style="margin-top: 10px; font-size: 14px;">
34
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
35
+ </p>
36
+ </Card>
31
37
  Get list of all S3 import storage connections set up with IAM role access.
32
38
 
33
39
  Parameters
@@ -110,6 +116,12 @@ class S3SClient:
110
116
  request_options: typing.Optional[RequestOptions] = None,
111
117
  ) -> LseS3ImportStorage:
112
118
  """
119
+ <Card href="https://humansignal.com/goenterprise">
120
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
121
+ <p style="margin-top: 10px; font-size: 14px;">
122
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
123
+ </p>
124
+ </Card>
113
125
  Create S3 import storage with IAM role access.
114
126
 
115
127
  Parameters
@@ -287,6 +299,12 @@ class S3SClient:
287
299
  request_options: typing.Optional[RequestOptions] = None,
288
300
  ) -> None:
289
301
  """
302
+ <Card href="https://humansignal.com/goenterprise">
303
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
304
+ <p style="margin-top: 10px; font-size: 14px;">
305
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
306
+ </p>
307
+ </Card>
290
308
  Validate a specific S3 import storage connection that was set up with IAM role access.
291
309
 
292
310
  Parameters
@@ -427,6 +445,12 @@ class S3SClient:
427
445
 
428
446
  def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> LseS3ImportStorage:
429
447
  """
448
+ <Card href="https://humansignal.com/goenterprise">
449
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
450
+ <p style="margin-top: 10px; font-size: 14px;">
451
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
452
+ </p>
453
+ </Card>
430
454
  Get a specific S3 import storage connection that was set up with IAM role access.
431
455
 
432
456
  Parameters
@@ -473,6 +497,12 @@ class S3SClient:
473
497
 
474
498
  def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
475
499
  """
500
+ <Card href="https://humansignal.com/goenterprise">
501
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
502
+ <p style="margin-top: 10px; font-size: 14px;">
503
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
504
+ </p>
505
+ </Card>
476
506
  Delete a specific S3 import storage connection that was set up with IAM role access.
477
507
 
478
508
  Parameters
@@ -543,6 +573,12 @@ class S3SClient:
543
573
  request_options: typing.Optional[RequestOptions] = None,
544
574
  ) -> LseS3ImportStorage:
545
575
  """
576
+ <Card href="https://humansignal.com/goenterprise">
577
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
578
+ <p style="margin-top: 10px; font-size: 14px;">
579
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
580
+ </p>
581
+ </Card>
546
582
  Update a specific S3 import storage connection that was set up with IAM role access.
547
583
 
548
584
  Parameters
@@ -694,6 +730,12 @@ class S3SClient:
694
730
 
695
731
  def sync(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> LseS3ImportStorage:
696
732
  """
733
+ <Card href="https://humansignal.com/goenterprise">
734
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
735
+ <p style="margin-top: 10px; font-size: 14px;">
736
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
737
+ </p>
738
+ </Card>
697
739
  Sync tasks from an S3 import storage connection that was set up with IAM role access.
698
740
 
699
741
  Parameters
@@ -751,6 +793,12 @@ class AsyncS3SClient:
751
793
  request_options: typing.Optional[RequestOptions] = None,
752
794
  ) -> typing.List[LseS3ImportStorage]:
753
795
  """
796
+ <Card href="https://humansignal.com/goenterprise">
797
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
798
+ <p style="margin-top: 10px; font-size: 14px;">
799
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
800
+ </p>
801
+ </Card>
754
802
  Get list of all S3 import storage connections set up with IAM role access.
755
803
 
756
804
  Parameters
@@ -841,6 +889,12 @@ class AsyncS3SClient:
841
889
  request_options: typing.Optional[RequestOptions] = None,
842
890
  ) -> LseS3ImportStorage:
843
891
  """
892
+ <Card href="https://humansignal.com/goenterprise">
893
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
894
+ <p style="margin-top: 10px; font-size: 14px;">
895
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
896
+ </p>
897
+ </Card>
844
898
  Create S3 import storage with IAM role access.
845
899
 
846
900
  Parameters
@@ -1026,6 +1080,12 @@ class AsyncS3SClient:
1026
1080
  request_options: typing.Optional[RequestOptions] = None,
1027
1081
  ) -> None:
1028
1082
  """
1083
+ <Card href="https://humansignal.com/goenterprise">
1084
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1085
+ <p style="margin-top: 10px; font-size: 14px;">
1086
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1087
+ </p>
1088
+ </Card>
1029
1089
  Validate a specific S3 import storage connection that was set up with IAM role access.
1030
1090
 
1031
1091
  Parameters
@@ -1174,6 +1234,12 @@ class AsyncS3SClient:
1174
1234
 
1175
1235
  async def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> LseS3ImportStorage:
1176
1236
  """
1237
+ <Card href="https://humansignal.com/goenterprise">
1238
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1239
+ <p style="margin-top: 10px; font-size: 14px;">
1240
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1241
+ </p>
1242
+ </Card>
1177
1243
  Get a specific S3 import storage connection that was set up with IAM role access.
1178
1244
 
1179
1245
  Parameters
@@ -1228,6 +1294,12 @@ class AsyncS3SClient:
1228
1294
 
1229
1295
  async def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
1230
1296
  """
1297
+ <Card href="https://humansignal.com/goenterprise">
1298
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1299
+ <p style="margin-top: 10px; font-size: 14px;">
1300
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1301
+ </p>
1302
+ </Card>
1231
1303
  Delete a specific S3 import storage connection that was set up with IAM role access.
1232
1304
 
1233
1305
  Parameters
@@ -1306,6 +1378,12 @@ class AsyncS3SClient:
1306
1378
  request_options: typing.Optional[RequestOptions] = None,
1307
1379
  ) -> LseS3ImportStorage:
1308
1380
  """
1381
+ <Card href="https://humansignal.com/goenterprise">
1382
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1383
+ <p style="margin-top: 10px; font-size: 14px;">
1384
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1385
+ </p>
1386
+ </Card>
1309
1387
  Update a specific S3 import storage connection that was set up with IAM role access.
1310
1388
 
1311
1389
  Parameters
@@ -1465,6 +1543,12 @@ class AsyncS3SClient:
1465
1543
 
1466
1544
  async def sync(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> LseS3ImportStorage:
1467
1545
  """
1546
+ <Card href="https://humansignal.com/goenterprise">
1547
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1548
+ <p style="margin-top: 10px; font-size: 14px;">
1549
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1550
+ </p>
1551
+ </Card>
1468
1552
  Sync tasks from an S3 import storage connection that was set up with IAM role access.
1469
1553
 
1470
1554
  Parameters
@@ -503,8 +503,8 @@ class ControlTag(LabelStudioTag):
503
503
 
504
504
 
505
505
  class SpanSelection(BaseModel):
506
- start: Union[int, str]
507
- end: Union[int, str]
506
+ start: Union[float, int, str]
507
+ end: Union[float, int, str]
508
508
 
509
509
 
510
510
  class SpanSelectionOffsets(SpanSelection):
@@ -561,6 +561,7 @@ class LabelsTag(ControlTag):
561
561
  _label_attr_name: str = "labels"
562
562
  _value_class: Type[LabelsValue] = LabelsValue
563
563
 
564
+
564
565
  def to_json_schema(self):
565
566
  """
566
567
  Converts the current LabelsTag instance into a JSON Schema.
@@ -575,13 +576,17 @@ class LabelsTag(ControlTag):
575
576
  "required": ["start", "end", "labels"],
576
577
  "properties": {
577
578
  "start": {
578
- "type": "integer",
579
+ "oneOf": [
580
+ {"type": "integer", "minimum": 0},
581
+ {"type": "number", "minimum": 0}
582
+ ],
579
583
  # TODO: this is incompatible with the OpenAI API using PredictedOutputs
580
- "minimum": 0
581
584
  },
582
585
  "end": {
583
- "type": "integer",
584
- "minimum": 0
586
+ "oneOf": [
587
+ {"type": "integer", "minimum": 0},
588
+ {"type": "number", "minimum": 0}
589
+ ]
585
590
  },
586
591
  "labels": {
587
592
  "type": "array",
@@ -778,7 +783,7 @@ class VideoRectangleTag(ControlTag):
778
783
 
779
784
 
780
785
  class NumberValue(BaseModel):
781
- number: int = Field(..., ge=0)
786
+ number: float = Field(..., ge=0)
782
787
 
783
788
 
784
789
  class NumberTag(ControlTag):
@@ -465,7 +465,13 @@ class MlClient:
465
465
  request_options: typing.Optional[RequestOptions] = None,
466
466
  ) -> None:
467
467
  """
468
- Note: not available in the community edition of Label Studio.
468
+ <Card href="https://humansignal.com/goenterprise">
469
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
470
+ <p style="margin-top: 10px; font-size: 14px;">
471
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
472
+ </p>
473
+ </Card>
474
+
469
475
 
470
476
  Create predictions for all tasks using a specific ML backend so that you can set up an active learning strategy based on the confidence or uncertainty scores associated with the predictions. Creating predictions requires a Label Studio ML backend set up and configured for your project.
471
477
 
@@ -1130,7 +1136,13 @@ class AsyncMlClient:
1130
1136
  request_options: typing.Optional[RequestOptions] = None,
1131
1137
  ) -> None:
1132
1138
  """
1133
- Note: not available in the community edition of Label Studio.
1139
+ <Card href="https://humansignal.com/goenterprise">
1140
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1141
+ <p style="margin-top: 10px; font-size: 14px;">
1142
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1143
+ </p>
1144
+ </Card>
1145
+
1134
1146
 
1135
1147
  Create predictions for all tasks using a specific ML backend so that you can set up an active learning strategy based on the confidence or uncertainty scores associated with the predictions. Creating predictions requires a Label Studio ML backend set up and configured for your project.
1136
1148
 
@@ -25,6 +25,12 @@ class ModelProvidersClient:
25
25
  self, *, ordering: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
26
26
  ) -> typing.List[ModelProviderConnection]:
27
27
  """
28
+ <Card href="https://humansignal.com/goenterprise">
29
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
30
+ <p style="margin-top: 10px; font-size: 14px;">
31
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
32
+ </p>
33
+ </Card>
28
34
  List all model provider connections.
29
35
 
30
36
  Parameters
@@ -89,6 +95,12 @@ class ModelProvidersClient:
89
95
  request_options: typing.Optional[RequestOptions] = None,
90
96
  ) -> ModelProviderConnection:
91
97
  """
98
+ <Card href="https://humansignal.com/goenterprise">
99
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
100
+ <p style="margin-top: 10px; font-size: 14px;">
101
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
102
+ </p>
103
+ </Card>
92
104
  Create a new model provider connection.
93
105
 
94
106
  Parameters
@@ -182,6 +194,12 @@ class ModelProvidersClient:
182
194
  self, *, request_options: typing.Optional[RequestOptions] = None
183
195
  ) -> ModelProvidersListModelProviderChoicesResponse:
184
196
  """
197
+ <Card href="https://humansignal.com/goenterprise">
198
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
199
+ <p style="margin-top: 10px; font-size: 14px;">
200
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
201
+ </p>
202
+ </Card>
185
203
  List all possible model provider choices
186
204
 
187
205
  Parameters
@@ -224,6 +242,12 @@ class ModelProvidersClient:
224
242
 
225
243
  def get(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> ModelProviderConnection:
226
244
  """
245
+ <Card href="https://humansignal.com/goenterprise">
246
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
247
+ <p style="margin-top: 10px; font-size: 14px;">
248
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
249
+ </p>
250
+ </Card>
227
251
  Retrieve a specific model provider connection.
228
252
 
229
253
  Parameters
@@ -270,6 +294,12 @@ class ModelProvidersClient:
270
294
 
271
295
  def delete(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> None:
272
296
  """
297
+ <Card href="https://humansignal.com/goenterprise">
298
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
299
+ <p style="margin-top: 10px; font-size: 14px;">
300
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
301
+ </p>
302
+ </Card>
273
303
  Delete a model provider connection by ID
274
304
 
275
305
  Parameters
@@ -326,6 +356,12 @@ class ModelProvidersClient:
326
356
  request_options: typing.Optional[RequestOptions] = None,
327
357
  ) -> ModelProviderConnection:
328
358
  """
359
+ <Card href="https://humansignal.com/goenterprise">
360
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
361
+ <p style="margin-top: 10px; font-size: 14px;">
362
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
363
+ </p>
364
+ </Card>
329
365
  Update a specific model provider connection by ID.
330
366
 
331
367
  Parameters
@@ -431,6 +467,12 @@ class AsyncModelProvidersClient:
431
467
  self, *, ordering: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
432
468
  ) -> typing.List[ModelProviderConnection]:
433
469
  """
470
+ <Card href="https://humansignal.com/goenterprise">
471
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
472
+ <p style="margin-top: 10px; font-size: 14px;">
473
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
474
+ </p>
475
+ </Card>
434
476
  List all model provider connections.
435
477
 
436
478
  Parameters
@@ -503,6 +545,12 @@ class AsyncModelProvidersClient:
503
545
  request_options: typing.Optional[RequestOptions] = None,
504
546
  ) -> ModelProviderConnection:
505
547
  """
548
+ <Card href="https://humansignal.com/goenterprise">
549
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
550
+ <p style="margin-top: 10px; font-size: 14px;">
551
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
552
+ </p>
553
+ </Card>
506
554
  Create a new model provider connection.
507
555
 
508
556
  Parameters
@@ -604,6 +652,12 @@ class AsyncModelProvidersClient:
604
652
  self, *, request_options: typing.Optional[RequestOptions] = None
605
653
  ) -> ModelProvidersListModelProviderChoicesResponse:
606
654
  """
655
+ <Card href="https://humansignal.com/goenterprise">
656
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
657
+ <p style="margin-top: 10px; font-size: 14px;">
658
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
659
+ </p>
660
+ </Card>
607
661
  List all possible model provider choices
608
662
 
609
663
  Parameters
@@ -654,6 +708,12 @@ class AsyncModelProvidersClient:
654
708
 
655
709
  async def get(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> ModelProviderConnection:
656
710
  """
711
+ <Card href="https://humansignal.com/goenterprise">
712
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
713
+ <p style="margin-top: 10px; font-size: 14px;">
714
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
715
+ </p>
716
+ </Card>
657
717
  Retrieve a specific model provider connection.
658
718
 
659
719
  Parameters
@@ -708,6 +768,12 @@ class AsyncModelProvidersClient:
708
768
 
709
769
  async def delete(self, id: str, *, request_options: typing.Optional[RequestOptions] = None) -> None:
710
770
  """
771
+ <Card href="https://humansignal.com/goenterprise">
772
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
773
+ <p style="margin-top: 10px; font-size: 14px;">
774
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
775
+ </p>
776
+ </Card>
711
777
  Delete a model provider connection by ID
712
778
 
713
779
  Parameters
@@ -772,6 +838,12 @@ class AsyncModelProvidersClient:
772
838
  request_options: typing.Optional[RequestOptions] = None,
773
839
  ) -> ModelProviderConnection:
774
840
  """
841
+ <Card href="https://humansignal.com/goenterprise">
842
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
843
+ <p style="margin-top: 10px; font-size: 14px;">
844
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
845
+ </p>
846
+ </Card>
775
847
  Update a specific model provider connection by ID.
776
848
 
777
849
  Parameters
@@ -195,7 +195,13 @@ class OrganizationsClient:
195
195
  request_options: typing.Optional[RequestOptions] = None,
196
196
  ) -> LseOrganization:
197
197
  """
198
- Update organization details including title, embed domains, and custom scripts settings.
198
+ <Card href="https://humansignal.com/goenterprise">
199
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
200
+ <p style="margin-top: 10px; font-size: 14px;">
201
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
202
+ </p>
203
+ </Card>
204
+ Update organization details including title, embed domains, and Plugins settings.
199
205
 
200
206
  Parameters
201
207
  ----------
@@ -321,6 +327,12 @@ class OrganizationsClient:
321
327
  request_options: typing.Optional[RequestOptions] = None,
322
328
  ) -> DefaultRole:
323
329
  """
330
+ <Card href="https://humansignal.com/goenterprise">
331
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
332
+ <p style="margin-top: 10px; font-size: 14px;">
333
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
334
+ </p>
335
+ </Card>
324
336
  Update the default role for members of a specific organization.
325
337
 
326
338
  Parameters
@@ -331,13 +343,13 @@ class OrganizationsClient:
331
343
  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.
332
344
 
333
345
  custom_scripts_editable_by : typing.Optional[PatchedDefaultRoleRequestCustomScriptsEditableBy]
334
- Set the minimum user role that can edit custom scripts in the UI.
346
+ Set the minimum user role that can edit custom scripts (Plugins) in the UI.
335
347
 
336
348
  * `AD` - Administrator
337
349
  * `MA` - Manager
338
350
 
339
351
  custom_scripts_enabled_at : typing.Optional[dt.datetime]
340
- 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.
352
+ Set to current time to enable custom scripts (Plugins) 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 (Plugins).
341
353
 
342
354
  default_role : typing.Optional[Role9E7Enum]
343
355
  Default membership role for invited users
@@ -618,7 +630,13 @@ class AsyncOrganizationsClient:
618
630
  request_options: typing.Optional[RequestOptions] = None,
619
631
  ) -> LseOrganization:
620
632
  """
621
- Update organization details including title, embed domains, and custom scripts settings.
633
+ <Card href="https://humansignal.com/goenterprise">
634
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
635
+ <p style="margin-top: 10px; font-size: 14px;">
636
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
637
+ </p>
638
+ </Card>
639
+ Update organization details including title, embed domains, and Plugins settings.
622
640
 
623
641
  Parameters
624
642
  ----------
@@ -752,6 +770,12 @@ class AsyncOrganizationsClient:
752
770
  request_options: typing.Optional[RequestOptions] = None,
753
771
  ) -> DefaultRole:
754
772
  """
773
+ <Card href="https://humansignal.com/goenterprise">
774
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
775
+ <p style="margin-top: 10px; font-size: 14px;">
776
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
777
+ </p>
778
+ </Card>
755
779
  Update the default role for members of a specific organization.
756
780
 
757
781
  Parameters
@@ -762,13 +786,13 @@ class AsyncOrganizationsClient:
762
786
  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.
763
787
 
764
788
  custom_scripts_editable_by : typing.Optional[PatchedDefaultRoleRequestCustomScriptsEditableBy]
765
- Set the minimum user role that can edit custom scripts in the UI.
789
+ Set the minimum user role that can edit custom scripts (Plugins) in the UI.
766
790
 
767
791
  * `AD` - Administrator
768
792
  * `MA` - Manager
769
793
 
770
794
  custom_scripts_enabled_at : typing.Optional[dt.datetime]
771
- 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.
795
+ Set to current time to enable custom scripts (Plugins) 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 (Plugins).
772
796
 
773
797
  default_role : typing.Optional[Role9E7Enum]
774
798
  Default membership role for invited users
@@ -73,6 +73,12 @@ class InvitesClient:
73
73
 
74
74
  def revoke_invite(self, *, email: str, request_options: typing.Optional[RequestOptions] = None) -> None:
75
75
  """
76
+ <Card href="https://humansignal.com/goenterprise">
77
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
78
+ <p style="margin-top: 10px; font-size: 14px;">
79
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
80
+ </p>
81
+ </Card>
76
82
  Revoke invite to organization
77
83
 
78
84
  Parameters
@@ -127,6 +133,12 @@ class InvitesClient:
127
133
  request_options: typing.Optional[RequestOptions] = None,
128
134
  ) -> None:
129
135
  """
136
+ <Card href="https://humansignal.com/goenterprise">
137
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
138
+ <p style="margin-top: 10px; font-size: 14px;">
139
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
140
+ </p>
141
+ </Card>
130
142
  Send email with invite to organization
131
143
 
132
144
  Parameters
@@ -258,6 +270,12 @@ class AsyncInvitesClient:
258
270
 
259
271
  async def revoke_invite(self, *, email: str, request_options: typing.Optional[RequestOptions] = None) -> None:
260
272
  """
273
+ <Card href="https://humansignal.com/goenterprise">
274
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
275
+ <p style="margin-top: 10px; font-size: 14px;">
276
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
277
+ </p>
278
+ </Card>
261
279
  Revoke invite to organization
262
280
 
263
281
  Parameters
@@ -320,6 +338,12 @@ class AsyncInvitesClient:
320
338
  request_options: typing.Optional[RequestOptions] = None,
321
339
  ) -> None:
322
340
  """
341
+ <Card href="https://humansignal.com/goenterprise">
342
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
343
+ <p style="margin-top: 10px; font-size: 14px;">
344
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
345
+ </p>
346
+ </Card>
323
347
  Send email with invite to organization
324
348
 
325
349
  Parameters
@@ -37,6 +37,12 @@ class MembersClient:
37
37
  request_options: typing.Optional[RequestOptions] = None,
38
38
  ) -> PaginatedLseOrganizationMemberListList:
39
39
  """
40
+ <Card href="https://humansignal.com/goenterprise">
41
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
42
+ <p style="margin-top: 10px; font-size: 14px;">
43
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
44
+ </p>
45
+ </Card>
40
46
  Retrieve a list of all users and roles in a specific organization.
41
47
 
42
48
  Parameters
@@ -117,6 +123,12 @@ class MembersClient:
117
123
  request_options: typing.Optional[RequestOptions] = None,
118
124
  ) -> LseOrganizationMemberList:
119
125
  """
126
+ <Card href="https://humansignal.com/goenterprise">
127
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
128
+ <p style="margin-top: 10px; font-size: 14px;">
129
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
130
+ </p>
131
+ </Card>
120
132
  Update organization membership or role for a specific user ID.
121
133
 
122
134
  **User Rotation Best Practices for API Usage**
@@ -329,6 +341,12 @@ class AsyncMembersClient:
329
341
  request_options: typing.Optional[RequestOptions] = None,
330
342
  ) -> PaginatedLseOrganizationMemberListList:
331
343
  """
344
+ <Card href="https://humansignal.com/goenterprise">
345
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
346
+ <p style="margin-top: 10px; font-size: 14px;">
347
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
348
+ </p>
349
+ </Card>
332
350
  Retrieve a list of all users and roles in a specific organization.
333
351
 
334
352
  Parameters
@@ -417,6 +435,12 @@ class AsyncMembersClient:
417
435
  request_options: typing.Optional[RequestOptions] = None,
418
436
  ) -> LseOrganizationMemberList:
419
437
  """
438
+ <Card href="https://humansignal.com/goenterprise">
439
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
440
+ <p style="margin-top: 10px; font-size: 14px;">
441
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
442
+ </p>
443
+ </Card>
420
444
  Update organization membership or role for a specific user ID.
421
445
 
422
446
  **User Rotation Best Practices for API Usage**