label-studio-sdk 2.0.9__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 (55) 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 +55 -6
  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/workspaces/client.py +60 -0
  49. label_studio_sdk/workspaces/members/bulk/client.py +24 -0
  50. label_studio_sdk/workspaces/members/client.py +36 -0
  51. label_studio_sdk/workspaces/members/paginated/client.py +12 -0
  52. {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/METADATA +1 -1
  53. {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/RECORD +55 -52
  54. {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/LICENSE +0 -0
  55. {label_studio_sdk-2.0.9.dist-info → label_studio_sdk-2.0.11.dist-info}/WHEEL +0 -0
@@ -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**
@@ -27,6 +27,12 @@ class PermissionsClient:
27
27
  self, id: int, *, ordering: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
28
28
  ) -> typing.List[OrganizationPermission]:
29
29
  """
30
+ <Card href="https://humansignal.com/goenterprise">
31
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
32
+ <p style="margin-top: 10px; font-size: 14px;">
33
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
34
+ </p>
35
+ </Card>
30
36
  List all organization-level permission overrides for a given organization.
31
37
 
32
38
  Parameters
@@ -86,6 +92,12 @@ class PermissionsClient:
86
92
  request_options: typing.Optional[RequestOptions] = None,
87
93
  ) -> OrganizationPermission:
88
94
  """
95
+ <Card href="https://humansignal.com/goenterprise">
96
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
97
+ <p style="margin-top: 10px; font-size: 14px;">
98
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
99
+ </p>
100
+ </Card>
89
101
  Create a new organization-level permission override for a given organization.
90
102
 
91
103
  Parameters
@@ -165,6 +177,12 @@ class PermissionsClient:
165
177
  self, id: int, *, ordering: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
166
178
  ) -> typing.List[ConfigurablePermissionOption]:
167
179
  """
180
+ <Card href="https://humansignal.com/goenterprise">
181
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
182
+ <p style="margin-top: 10px; font-size: 14px;">
183
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
184
+ </p>
185
+ </Card>
168
186
  Retrieve the list of configurable permission options (label, tooltip, default role and allowed roles).
169
187
 
170
188
  Parameters
@@ -294,6 +312,12 @@ class PermissionsClient:
294
312
  request_options: typing.Optional[RequestOptions] = None,
295
313
  ) -> OrganizationPermission:
296
314
  """
315
+ <Card href="https://humansignal.com/goenterprise">
316
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
317
+ <p style="margin-top: 10px; font-size: 14px;">
318
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
319
+ </p>
320
+ </Card>
297
321
  Replace the organization-level permission override for a given permission key.
298
322
 
299
323
  Parameters
@@ -454,6 +478,12 @@ class PermissionsClient:
454
478
  request_options: typing.Optional[RequestOptions] = None,
455
479
  ) -> OrganizationPermission:
456
480
  """
481
+ <Card href="https://humansignal.com/goenterprise">
482
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
483
+ <p style="margin-top: 10px; font-size: 14px;">
484
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
485
+ </p>
486
+ </Card>
457
487
  Partially update the organization-level permission override for a given permission key.
458
488
 
459
489
  Parameters
@@ -553,6 +583,12 @@ class AsyncPermissionsClient:
553
583
  self, id: int, *, ordering: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
554
584
  ) -> typing.List[OrganizationPermission]:
555
585
  """
586
+ <Card href="https://humansignal.com/goenterprise">
587
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
588
+ <p style="margin-top: 10px; font-size: 14px;">
589
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
590
+ </p>
591
+ </Card>
556
592
  List all organization-level permission overrides for a given organization.
557
593
 
558
594
  Parameters
@@ -620,6 +656,12 @@ class AsyncPermissionsClient:
620
656
  request_options: typing.Optional[RequestOptions] = None,
621
657
  ) -> OrganizationPermission:
622
658
  """
659
+ <Card href="https://humansignal.com/goenterprise">
660
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
661
+ <p style="margin-top: 10px; font-size: 14px;">
662
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
663
+ </p>
664
+ </Card>
623
665
  Create a new organization-level permission override for a given organization.
624
666
 
625
667
  Parameters
@@ -707,6 +749,12 @@ class AsyncPermissionsClient:
707
749
  self, id: int, *, ordering: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
708
750
  ) -> typing.List[ConfigurablePermissionOption]:
709
751
  """
752
+ <Card href="https://humansignal.com/goenterprise">
753
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
754
+ <p style="margin-top: 10px; font-size: 14px;">
755
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
756
+ </p>
757
+ </Card>
710
758
  Retrieve the list of configurable permission options (label, tooltip, default role and allowed roles).
711
759
 
712
760
  Parameters
@@ -852,6 +900,12 @@ class AsyncPermissionsClient:
852
900
  request_options: typing.Optional[RequestOptions] = None,
853
901
  ) -> OrganizationPermission:
854
902
  """
903
+ <Card href="https://humansignal.com/goenterprise">
904
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
905
+ <p style="margin-top: 10px; font-size: 14px;">
906
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
907
+ </p>
908
+ </Card>
855
909
  Replace the organization-level permission override for a given permission key.
856
910
 
857
911
  Parameters
@@ -1030,6 +1084,12 @@ class AsyncPermissionsClient:
1030
1084
  request_options: typing.Optional[RequestOptions] = None,
1031
1085
  ) -> OrganizationPermission:
1032
1086
  """
1087
+ <Card href="https://humansignal.com/goenterprise">
1088
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
1089
+ <p style="margin-top: 10px; font-size: 14px;">
1090
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
1091
+ </p>
1092
+ </Card>
1033
1093
  Partially update the organization-level permission override for a given permission key.
1034
1094
 
1035
1095
  Parameters
@@ -23,6 +23,12 @@ class ProjectTemplatesClient:
23
23
  self, *, ordering: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
24
24
  ) -> typing.List[ProjectTemplate]:
25
25
  """
26
+ <Card href="https://humansignal.com/goenterprise">
27
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
28
+ <p style="margin-top: 10px; font-size: 14px;">
29
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
30
+ </p>
31
+ </Card>
26
32
  Get a list of all project templates for an organization.
27
33
 
28
34
  Parameters
@@ -87,6 +93,12 @@ class ProjectTemplatesClient:
87
93
  request_options: typing.Optional[RequestOptions] = None,
88
94
  ) -> ProjectTemplate:
89
95
  """
96
+ <Card href="https://humansignal.com/goenterprise">
97
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
98
+ <p style="margin-top: 10px; font-size: 14px;">
99
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
100
+ </p>
101
+ </Card>
90
102
  Create a project template for an organization.
91
103
 
92
104
  Parameters
@@ -100,7 +112,7 @@ class ProjectTemplatesClient:
100
112
  created_by : typing.Optional[int]
101
113
 
102
114
  custom_script : typing.Optional[str]
103
- custom script for projects created from this template
115
+ custom script (Plugin) for projects created from this template
104
116
 
105
117
  description : typing.Optional[str]
106
118
 
@@ -173,6 +185,12 @@ class ProjectTemplatesClient:
173
185
 
174
186
  def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> ProjectTemplate:
175
187
  """
188
+ <Card href="https://humansignal.com/goenterprise">
189
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
190
+ <p style="margin-top: 10px; font-size: 14px;">
191
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
192
+ </p>
193
+ </Card>
176
194
  Get a specific project template by ID for an organization.
177
195
 
178
196
  Parameters
@@ -219,6 +237,12 @@ class ProjectTemplatesClient:
219
237
 
220
238
  def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
221
239
  """
240
+ <Card href="https://humansignal.com/goenterprise">
241
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
242
+ <p style="margin-top: 10px; font-size: 14px;">
243
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
244
+ </p>
245
+ </Card>
222
246
  Delete a specific project template by ID for an organization.
223
247
 
224
248
  Parameters
@@ -275,6 +299,12 @@ class ProjectTemplatesClient:
275
299
  request_options: typing.Optional[RequestOptions] = None,
276
300
  ) -> ProjectTemplate:
277
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>
278
308
  Update the details of a specific project template by ID for an organization.
279
309
 
280
310
  Parameters
@@ -286,7 +316,7 @@ class ProjectTemplatesClient:
286
316
  created_by : typing.Optional[int]
287
317
 
288
318
  custom_script : typing.Optional[str]
289
- custom script for projects created from this template
319
+ custom script (Plugin) for projects created from this template
290
320
 
291
321
  description : typing.Optional[str]
292
322
 
@@ -373,6 +403,12 @@ class ProjectTemplatesClient:
373
403
  request_options: typing.Optional[RequestOptions] = None,
374
404
  ) -> LseProject:
375
405
  """
406
+ <Card href="https://humansignal.com/goenterprise">
407
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
408
+ <p style="margin-top: 10px; font-size: 14px;">
409
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
410
+ </p>
411
+ </Card>
376
412
  Create a project from a specific project template by ID for an organization.
377
413
 
378
414
  Parameters
@@ -446,6 +482,12 @@ class AsyncProjectTemplatesClient:
446
482
  self, *, ordering: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
447
483
  ) -> typing.List[ProjectTemplate]:
448
484
  """
485
+ <Card href="https://humansignal.com/goenterprise">
486
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
487
+ <p style="margin-top: 10px; font-size: 14px;">
488
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
489
+ </p>
490
+ </Card>
449
491
  Get a list of all project templates for an organization.
450
492
 
451
493
  Parameters
@@ -518,6 +560,12 @@ class AsyncProjectTemplatesClient:
518
560
  request_options: typing.Optional[RequestOptions] = None,
519
561
  ) -> ProjectTemplate:
520
562
  """
563
+ <Card href="https://humansignal.com/goenterprise">
564
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
565
+ <p style="margin-top: 10px; font-size: 14px;">
566
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
567
+ </p>
568
+ </Card>
521
569
  Create a project template for an organization.
522
570
 
523
571
  Parameters
@@ -531,7 +579,7 @@ class AsyncProjectTemplatesClient:
531
579
  created_by : typing.Optional[int]
532
580
 
533
581
  custom_script : typing.Optional[str]
534
- custom script for projects created from this template
582
+ custom script (Plugin) for projects created from this template
535
583
 
536
584
  description : typing.Optional[str]
537
585
 
@@ -612,6 +660,12 @@ class AsyncProjectTemplatesClient:
612
660
 
613
661
  async def get(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> ProjectTemplate:
614
662
  """
663
+ <Card href="https://humansignal.com/goenterprise">
664
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
665
+ <p style="margin-top: 10px; font-size: 14px;">
666
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
667
+ </p>
668
+ </Card>
615
669
  Get a specific project template by ID for an organization.
616
670
 
617
671
  Parameters
@@ -666,6 +720,12 @@ class AsyncProjectTemplatesClient:
666
720
 
667
721
  async def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> None:
668
722
  """
723
+ <Card href="https://humansignal.com/goenterprise">
724
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
725
+ <p style="margin-top: 10px; font-size: 14px;">
726
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
727
+ </p>
728
+ </Card>
669
729
  Delete a specific project template by ID for an organization.
670
730
 
671
731
  Parameters
@@ -730,6 +790,12 @@ class AsyncProjectTemplatesClient:
730
790
  request_options: typing.Optional[RequestOptions] = None,
731
791
  ) -> ProjectTemplate:
732
792
  """
793
+ <Card href="https://humansignal.com/goenterprise">
794
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
795
+ <p style="margin-top: 10px; font-size: 14px;">
796
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
797
+ </p>
798
+ </Card>
733
799
  Update the details of a specific project template by ID for an organization.
734
800
 
735
801
  Parameters
@@ -741,7 +807,7 @@ class AsyncProjectTemplatesClient:
741
807
  created_by : typing.Optional[int]
742
808
 
743
809
  custom_script : typing.Optional[str]
744
- custom script for projects created from this template
810
+ custom script (Plugin) for projects created from this template
745
811
 
746
812
  description : typing.Optional[str]
747
813
 
@@ -836,6 +902,12 @@ class AsyncProjectTemplatesClient:
836
902
  request_options: typing.Optional[RequestOptions] = None,
837
903
  ) -> LseProject:
838
904
  """
905
+ <Card href="https://humansignal.com/goenterprise">
906
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
907
+ <p style="margin-top: 10px; font-size: 14px;">
908
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
909
+ </p>
910
+ </Card>
839
911
  Create a project from a specific project template by ID for an organization.
840
912
 
841
913
  Parameters
@@ -39,6 +39,9 @@ from .stats import (
39
39
  StatsIaaResponseStd,
40
40
  StatsLeadTimeResponse,
41
41
  StatsLeadTimeResponseLeadTimeStatsItem,
42
+ StatsModelVersionAnnotatorAgreementResponse,
43
+ StatsModelVersionGroundTruthAgreementResponse,
44
+ StatsModelVersionPredictionAgreementResponse,
42
45
  StatsTotalAgreementResponse,
43
46
  StatsTotalAgreementResponseOne,
44
47
  StatsTotalAgreementResponseZero,
@@ -85,6 +88,9 @@ __all__ = [
85
88
  "StatsIaaResponseStd",
86
89
  "StatsLeadTimeResponse",
87
90
  "StatsLeadTimeResponseLeadTimeStatsItem",
91
+ "StatsModelVersionAnnotatorAgreementResponse",
92
+ "StatsModelVersionGroundTruthAgreementResponse",
93
+ "StatsModelVersionPredictionAgreementResponse",
88
94
  "StatsTotalAgreementResponse",
89
95
  "StatsTotalAgreementResponseOne",
90
96
  "StatsTotalAgreementResponseZero",
@@ -38,6 +38,12 @@ class AssignmentsClient:
38
38
  request_options: typing.Optional[RequestOptions] = None,
39
39
  ) -> AssignmentsBulkAssignResponse:
40
40
  """
41
+ <Card href="https://humansignal.com/goenterprise">
42
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
43
+ <p style="margin-top: 10px; font-size: 14px;">
44
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
45
+ </p>
46
+ </Card>
41
47
  Assign multiple users to a collection of tasks within a specific project.
42
48
 
43
49
  Parameters
@@ -130,6 +136,12 @@ class AssignmentsClient:
130
136
  self, id: int, task_pk: int, *, request_options: typing.Optional[RequestOptions] = None
131
137
  ) -> typing.List[TaskAssignment]:
132
138
  """
139
+ <Card href="https://humansignal.com/goenterprise">
140
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
141
+ <p style="margin-top: 10px; font-size: 14px;">
142
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
143
+ </p>
144
+ </Card>
133
145
  Retrieve a list of tasks and assignees for those tasks for a specific project.
134
146
 
135
147
  Parameters
@@ -189,6 +201,12 @@ class AssignmentsClient:
189
201
  request_options: typing.Optional[RequestOptions] = None,
190
202
  ) -> TaskAssignment:
191
203
  """
204
+ <Card href="https://humansignal.com/goenterprise">
205
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
206
+ <p style="margin-top: 10px; font-size: 14px;">
207
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
208
+ </p>
209
+ </Card>
192
210
  Assign a user to a task in a specific project.
193
211
 
194
212
  Parameters
@@ -264,6 +282,12 @@ class AssignmentsClient:
264
282
  request_options: typing.Optional[RequestOptions] = None,
265
283
  ) -> None:
266
284
  """
285
+ <Card href="https://humansignal.com/goenterprise">
286
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
287
+ <p style="margin-top: 10px; font-size: 14px;">
288
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
289
+ </p>
290
+ </Card>
267
291
  Remove assignees for a task within a specific project.
268
292
 
269
293
  Parameters
@@ -326,6 +350,12 @@ class AssignmentsClient:
326
350
  request_options: typing.Optional[RequestOptions] = None,
327
351
  ) -> TaskAssignment:
328
352
  """
353
+ <Card href="https://humansignal.com/goenterprise">
354
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
355
+ <p style="margin-top: 10px; font-size: 14px;">
356
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
357
+ </p>
358
+ </Card>
329
359
  Update the assignee for a task in a specific project.
330
360
 
331
361
  Parameters
@@ -407,6 +437,12 @@ class AsyncAssignmentsClient:
407
437
  request_options: typing.Optional[RequestOptions] = None,
408
438
  ) -> AssignmentsBulkAssignResponse:
409
439
  """
440
+ <Card href="https://humansignal.com/goenterprise">
441
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
442
+ <p style="margin-top: 10px; font-size: 14px;">
443
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
444
+ </p>
445
+ </Card>
410
446
  Assign multiple users to a collection of tasks within a specific project.
411
447
 
412
448
  Parameters
@@ -507,6 +543,12 @@ class AsyncAssignmentsClient:
507
543
  self, id: int, task_pk: int, *, request_options: typing.Optional[RequestOptions] = None
508
544
  ) -> typing.List[TaskAssignment]:
509
545
  """
546
+ <Card href="https://humansignal.com/goenterprise">
547
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
548
+ <p style="margin-top: 10px; font-size: 14px;">
549
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
550
+ </p>
551
+ </Card>
510
552
  Retrieve a list of tasks and assignees for those tasks for a specific project.
511
553
 
512
554
  Parameters
@@ -574,6 +616,12 @@ class AsyncAssignmentsClient:
574
616
  request_options: typing.Optional[RequestOptions] = None,
575
617
  ) -> TaskAssignment:
576
618
  """
619
+ <Card href="https://humansignal.com/goenterprise">
620
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
621
+ <p style="margin-top: 10px; font-size: 14px;">
622
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
623
+ </p>
624
+ </Card>
577
625
  Assign a user to a task in a specific project.
578
626
 
579
627
  Parameters
@@ -657,6 +705,12 @@ class AsyncAssignmentsClient:
657
705
  request_options: typing.Optional[RequestOptions] = None,
658
706
  ) -> None:
659
707
  """
708
+ <Card href="https://humansignal.com/goenterprise">
709
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
710
+ <p style="margin-top: 10px; font-size: 14px;">
711
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
712
+ </p>
713
+ </Card>
660
714
  Remove assignees for a task within a specific project.
661
715
 
662
716
  Parameters
@@ -727,6 +781,12 @@ class AsyncAssignmentsClient:
727
781
  request_options: typing.Optional[RequestOptions] = None,
728
782
  ) -> TaskAssignment:
729
783
  """
784
+ <Card href="https://humansignal.com/goenterprise">
785
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
786
+ <p style="margin-top: 10px; font-size: 14px;">
787
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
788
+ </p>
789
+ </Card>
730
790
  Update the assignee for a task in a specific project.
731
791
 
732
792
  Parameters
@@ -883,6 +883,12 @@ class ProjectsClient:
883
883
  request_options: typing.Optional[RequestOptions] = None,
884
884
  ) -> ProjectsDuplicateResponse:
885
885
  """
886
+ <Card href="https://humansignal.com/goenterprise">
887
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
888
+ <p style="margin-top: 10px; font-size: 14px;">
889
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
890
+ </p>
891
+ </Card>
886
892
  Make a copy of project.
887
893
 
888
894
  Parameters
@@ -2114,6 +2120,12 @@ class AsyncProjectsClient:
2114
2120
  request_options: typing.Optional[RequestOptions] = None,
2115
2121
  ) -> ProjectsDuplicateResponse:
2116
2122
  """
2123
+ <Card href="https://humansignal.com/goenterprise">
2124
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
2125
+ <p style="margin-top: 10px; font-size: 14px;">
2126
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
2127
+ </p>
2128
+ </Card>
2117
2129
  Make a copy of project.
2118
2130
 
2119
2131
  Parameters
@@ -33,6 +33,12 @@ class BulkClient:
33
33
  request_options: typing.Optional[RequestOptions] = None,
34
34
  ) -> BulkPostResponse:
35
35
  """
36
+ <Card href="https://humansignal.com/goenterprise">
37
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
38
+ <p style="margin-top: 10px; font-size: 14px;">
39
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
40
+ </p>
41
+ </Card>
36
42
  Assign project members in bulk.
37
43
 
38
44
  Parameters
@@ -108,6 +114,12 @@ class BulkClient:
108
114
  self, id: int, *, search: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
109
115
  ) -> BulkDeleteResponse:
110
116
  """
117
+ <Card href="https://humansignal.com/goenterprise">
118
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
119
+ <p style="margin-top: 10px; font-size: 14px;">
120
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
121
+ </p>
122
+ </Card>
111
123
  Unassign project members in bulk. Allows the same request body as bulk assign.
112
124
 
113
125
  Parameters
@@ -175,6 +187,12 @@ class AsyncBulkClient:
175
187
  request_options: typing.Optional[RequestOptions] = None,
176
188
  ) -> BulkPostResponse:
177
189
  """
190
+ <Card href="https://humansignal.com/goenterprise">
191
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
192
+ <p style="margin-top: 10px; font-size: 14px;">
193
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
194
+ </p>
195
+ </Card>
178
196
  Assign project members in bulk.
179
197
 
180
198
  Parameters
@@ -258,6 +276,12 @@ class AsyncBulkClient:
258
276
  self, id: int, *, search: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
259
277
  ) -> BulkDeleteResponse:
260
278
  """
279
+ <Card href="https://humansignal.com/goenterprise">
280
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
281
+ <p style="margin-top: 10px; font-size: 14px;">
282
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
283
+ </p>
284
+ </Card>
261
285
  Unassign project members in bulk. Allows the same request body as bulk assign.
262
286
 
263
287
  Parameters
@@ -25,6 +25,12 @@ class MembersClient:
25
25
  self, id: int, *, user_ids: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
26
26
  ) -> typing.List[LseUser]:
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
  Retrieve the members for a specific project. Optionally filter by user IDs (comma-separated).
29
35
 
30
36
  Parameters
@@ -86,6 +92,12 @@ class AsyncMembersClient:
86
92
  self, id: int, *, user_ids: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
87
93
  ) -> typing.List[LseUser]:
88
94
  """
95
+ <Card href="https://humansignal.com/goenterprise">
96
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
97
+ <p style="margin-top: 10px; font-size: 14px;">
98
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
99
+ </p>
100
+ </Card>
89
101
  Retrieve the members for a specific project. Optionally filter by user IDs (comma-separated).
90
102
 
91
103
  Parameters
@@ -32,6 +32,12 @@ class PaginatedClient:
32
32
  request_options: typing.Optional[RequestOptions] = None,
33
33
  ) -> SyncPager[PaginatedProjectMember]:
34
34
  """
35
+ <Card href="https://humansignal.com/goenterprise">
36
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
37
+ <p style="margin-top: 10px; font-size: 14px;">
38
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
39
+ </p>
40
+ </Card>
35
41
  Retrieve the members for a specific project.
36
42
 
37
43
  Parameters
@@ -145,6 +151,12 @@ class AsyncPaginatedClient:
145
151
  request_options: typing.Optional[RequestOptions] = None,
146
152
  ) -> AsyncPager[PaginatedProjectMember]:
147
153
  """
154
+ <Card href="https://humansignal.com/goenterprise">
155
+ <img style="pointer-events: none; margin-left: 0px; margin-right: 0px;" src="https://docs.humansignal.com/images/badge.svg" alt="Label Studio Enterprise badge"/>
156
+ <p style="margin-top: 10px; font-size: 14px;">
157
+ This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)
158
+ </p>
159
+ </Card>
148
160
  Retrieve the members for a specific project.
149
161
 
150
162
  Parameters