rapidata 2.23.2__py3-none-any.whl → 2.24.1__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 rapidata might be problematic. Click here for more details.

Files changed (36) hide show
  1. rapidata/api_client/__init__.py +10 -1
  2. rapidata/api_client/api/validation_set_api.py +3 -3
  3. rapidata/api_client/models/__init__.py +10 -1
  4. rapidata/api_client/models/asset_metadata.py +104 -0
  5. rapidata/api_client/models/asset_metadata_asset.py +170 -0
  6. rapidata/api_client/models/asset_metadata_model.py +102 -0
  7. rapidata/api_client/models/asset_metadata_model_asset.py +170 -0
  8. rapidata/api_client/models/compare_workflow_config_metadata_value.py +33 -17
  9. rapidata/api_client/models/create_datapoint_from_files_model_metadata_inner.py +25 -11
  10. rapidata/api_client/models/datapoint.py +3 -3
  11. rapidata/api_client/models/datapoint_model.py +3 -3
  12. rapidata/api_client/models/file_asset.py +17 -12
  13. rapidata/api_client/models/file_asset_model.py +3 -1
  14. rapidata/api_client/models/file_asset_model_metadata_value.py +35 -19
  15. rapidata/api_client/models/get_compare_workflow_results_result.py +3 -3
  16. rapidata/api_client/models/get_datapoint_by_id_result.py +3 -3
  17. rapidata/api_client/models/get_rapid_responses_result.py +3 -3
  18. rapidata/api_client/models/get_workflow_results_result.py +3 -3
  19. rapidata/api_client/models/multi_asset.py +17 -12
  20. rapidata/api_client/models/multi_asset_model.py +4 -4
  21. rapidata/api_client/models/null_asset.py +16 -9
  22. rapidata/api_client/models/null_asset_model.py +3 -1
  23. rapidata/api_client/models/prompt_asset_metadata_input.py +102 -0
  24. rapidata/api_client/models/text_asset.py +17 -10
  25. rapidata/api_client/models/text_asset_model.py +3 -1
  26. rapidata/api_client/models/url_asset_input.py +100 -0
  27. rapidata/api_client_README.md +11 -2
  28. rapidata/rapidata_client/metadata/__init__.py +1 -0
  29. rapidata/rapidata_client/metadata/_media_asset_metadata.py +15 -0
  30. rapidata/rapidata_client/order/rapidata_order_manager.py +37 -17
  31. rapidata/rapidata_client/selection/labeling_selection.py +5 -4
  32. rapidata/rapidata_client/selection/retrieval_modes.py +4 -4
  33. {rapidata-2.23.2.dist-info → rapidata-2.24.1.dist-info}/METADATA +1 -1
  34. {rapidata-2.23.2.dist-info → rapidata-2.24.1.dist-info}/RECORD +36 -29
  35. {rapidata-2.23.2.dist-info → rapidata-2.24.1.dist-info}/LICENSE +0 -0
  36. {rapidata-2.23.2.dist-info → rapidata-2.24.1.dist-info}/WHEEL +0 -0
@@ -1,11 +1,12 @@
1
1
  from typing import Sequence, Optional
2
2
  from urllib3._collections import HTTPHeaderDict # type: ignore[import]
3
+ from itertools import zip_longest
3
4
 
4
5
  from rapidata.service.openapi_service import OpenAPIService
5
6
  from rapidata.rapidata_client.assets.data_type_enum import RapidataDataTypes
6
7
  from rapidata.rapidata_client.order.rapidata_order import RapidataOrder
7
8
  from rapidata.rapidata_client.order._rapidata_order_builder import RapidataOrderBuilder
8
- from rapidata.rapidata_client.metadata import PromptMetadata, SelectWordsMetadata, PrivateTextMetadata, Metadata
9
+ from rapidata.rapidata_client.metadata import PromptMetadata, SelectWordsMetadata, PrivateTextMetadata, MediaAssetMetadata, Metadata
9
10
  from rapidata.rapidata_client.referee._naive_referee import NaiveReferee
10
11
  from rapidata.rapidata_client.referee._early_stopping_referee import EarlyStoppingReferee
11
12
  from rapidata.rapidata_client.selection._base_selection import RapidataSelection
@@ -27,6 +28,7 @@ from rapidata.rapidata_client.filter import RapidataFilter
27
28
  from rapidata.rapidata_client.filter.rapidata_filters import RapidataFilters
28
29
  from rapidata.rapidata_client.settings import RapidataSettings, RapidataSetting
29
30
  from rapidata.rapidata_client.selection.rapidata_selections import RapidataSelections
31
+ from rapidata.rapidata_client.logging import logger
30
32
 
31
33
  from rapidata.api_client.exceptions import BadRequestException
32
34
  from rapidata.api_client.models.query_model import QueryModel
@@ -34,7 +36,6 @@ from rapidata.api_client.models.page_info import PageInfo
34
36
  from rapidata.api_client.models.root_filter import RootFilter
35
37
  from rapidata.api_client.models.filter import Filter
36
38
  from rapidata.api_client.models.sort_criterion import SortCriterion
37
- from rapidata.rapidata_client.logging import logger
38
39
 
39
40
  from tqdm import tqdm
40
41
 
@@ -65,9 +66,9 @@ class RapidataOrderManager:
65
66
  name: str,
66
67
  workflow: Workflow,
67
68
  assets: list[MediaAsset] | list[TextAsset] | list[MultiAsset],
68
- data_type: str = RapidataDataTypes.MEDIA,
69
69
  responses_per_datapoint: int = 10,
70
70
  contexts: list[str] | None = None,
71
+ media_contexts: list[str] | None = None,
71
72
  validation_set_id: str | None = None,
72
73
  confidence_threshold: float | None = None,
73
74
  filters: Sequence[RapidataFilter] = [],
@@ -81,6 +82,9 @@ class RapidataOrderManager:
81
82
  if contexts and len(contexts) != len(assets):
82
83
  raise ValueError("Number of contexts must match number of datapoints")
83
84
 
85
+ if media_contexts and len(media_contexts) != len(assets):
86
+ raise ValueError("Number of media contexts must match number of datapoints")
87
+
84
88
  if sentences and len(sentences) != len(assets):
85
89
  raise ValueError("Number of sentences must match number of datapoints")
86
90
 
@@ -98,6 +102,7 @@ class RapidataOrderManager:
98
102
  max_vote_count=responses_per_datapoint,
99
103
  )
100
104
 
105
+
101
106
  order_builder = RapidataOrderBuilder(name=name, openapi_service=self._openapi_service)
102
107
 
103
108
  if selections and validation_set_id:
@@ -111,16 +116,13 @@ class RapidataOrderManager:
111
116
 
112
117
  if prompts_metadata and sentence_metadata:
113
118
  raise ValueError("You can only use contexts or sentences, not both")
119
+
120
+ asset_metadata: Sequence[Metadata] = [MediaAssetMetadata(url=context) for context in media_contexts] if media_contexts else []
121
+ prompt_metadata: Sequence[Metadata] = prompts_metadata or sentence_metadata or []
122
+ private_notes_metadata: Sequence[Metadata] = [PrivateTextMetadata(text=text) for text in private_notes] if private_notes else []
114
123
 
115
- metadata_list: Sequence[Metadata] = prompts_metadata or sentence_metadata or []
116
- private_notes_metadata_list: Sequence[Metadata] = [PrivateTextMetadata(text=text) for text in private_notes] if private_notes else []
117
-
118
- multi_metadata: Sequence[Sequence[Metadata]] = (
119
- [[metadata, private_notes_metadata] for metadata, private_notes_metadata in zip(metadata_list, private_notes_metadata_list, strict=True)] if metadata_list and private_notes
120
- else [[private_notes_metadata] for private_notes_metadata in private_notes_metadata_list] if private_notes
121
- else [[metadata] for metadata in metadata_list] if metadata_list
122
- else []
123
- )
124
+ multi_metadata = [[item for item in items if item is not None]
125
+ for items in zip_longest(prompt_metadata, asset_metadata, private_notes_metadata)]
124
126
 
125
127
  order = (order_builder
126
128
  ._workflow(workflow)
@@ -148,6 +150,7 @@ class RapidataOrderManager:
148
150
  data_type: str = RapidataDataTypes.MEDIA,
149
151
  responses_per_datapoint: int = 10,
150
152
  contexts: list[str] | None = None,
153
+ media_contexts: list[str] | None = None,
151
154
  validation_set_id: str | None = None,
152
155
  confidence_threshold: float | None = None,
153
156
  filters: Sequence[RapidataFilter] = [],
@@ -168,6 +171,8 @@ class RapidataOrderManager:
168
171
  contexts (list[str], optional): The list of contexts for the classification. Defaults to None.\n
169
172
  If provided has to be the same length as datapoints and will be shown in addition to the instruction and options. (Therefore will be different for each datapoint)
170
173
  Will be match up with the datapoints using the list index.
174
+ media_contexts (list[str], optional): The list of media contexts for the classification i.e links to the images / videos. Defaults to None.\n
175
+ If provided has to be the same length as datapoints and will be shown in addition to the instruction and options. (Therefore will be different for each datapoint)
171
176
  validation_set_id (str, optional): The ID of the validation set. Defaults to None.\n
172
177
  If provided, one validation task will be shown infront of the datapoints that will be labeled.
173
178
  confidence_threshold (float, optional): The probability threshold for the classification. Defaults to None.\n
@@ -194,9 +199,9 @@ class RapidataOrderManager:
194
199
  answer_options=answer_options
195
200
  ),
196
201
  assets=assets,
197
- data_type=data_type,
198
202
  responses_per_datapoint=responses_per_datapoint,
199
203
  contexts=contexts,
204
+ media_contexts=media_contexts,
200
205
  validation_set_id=validation_set_id,
201
206
  confidence_threshold=confidence_threshold,
202
207
  filters=filters,
@@ -212,6 +217,7 @@ class RapidataOrderManager:
212
217
  data_type: str = RapidataDataTypes.MEDIA,
213
218
  responses_per_datapoint: int = 10,
214
219
  contexts: list[str] | None = None,
220
+ media_contexts: list[str] | None = None,
215
221
  validation_set_id: str | None = None,
216
222
  confidence_threshold: float | None = None,
217
223
  filters: Sequence[RapidataFilter] = [],
@@ -230,7 +236,10 @@ class RapidataOrderManager:
230
236
  responses_per_datapoint (int, optional): The number of responses that will be collected per datapoint. Defaults to 10.
231
237
  contexts (list[str], optional): The list of contexts for the comparison. Defaults to None.\n
232
238
  If provided has to be the same length as datapoints and will be shown in addition to the instruction. (Therefore will be different for each datapoint)
233
- Will be match up with the datapoints using the list index.
239
+ Will be matched up with the datapoints using the list index.
240
+ media_contexts (list[str], optional): The list of media contexts i.e. links to the images / videos for the comparison. Defaults to None.\n
241
+ If provided has to be the same length as datapoints and will be shown in addition to the instruction. (Therefore will be different for each datapoint)
242
+ Will be matched up with the datapoints using the list index.
234
243
  validation_set_id (str, optional): The ID of the validation set. Defaults to None.\n
235
244
  If provided, one validation task will be shown infront of the datapoints that will be labeled.
236
245
  confidence_threshold (float, optional): The probability threshold for the comparison. Defaults to None.\n
@@ -256,9 +265,9 @@ class RapidataOrderManager:
256
265
  instruction=instruction
257
266
  ),
258
267
  assets=assets,
259
- data_type=data_type,
260
268
  responses_per_datapoint=responses_per_datapoint,
261
269
  contexts=contexts,
270
+ media_contexts=media_contexts,
262
271
  validation_set_id=validation_set_id,
263
272
  confidence_threshold=confidence_threshold,
264
273
  filters=filters,
@@ -367,7 +376,6 @@ class RapidataOrderManager:
367
376
  instruction=instruction
368
377
  ),
369
378
  assets=assets,
370
- data_type=data_type,
371
379
  responses_per_datapoint=responses_per_datapoint,
372
380
  filters=filters,
373
381
  selections=selections,
@@ -431,6 +439,7 @@ class RapidataOrderManager:
431
439
  datapoints: list[str],
432
440
  responses_per_datapoint: int = 10,
433
441
  contexts: list[str] | None = None,
442
+ media_contexts: list[str] | None = None,
434
443
  validation_set_id: str | None = None,
435
444
  filters: Sequence[RapidataFilter] = [],
436
445
  settings: Sequence[RapidataSetting] = [],
@@ -444,9 +453,11 @@ class RapidataOrderManager:
444
453
  instruction (str): The instruction what should be located. Will be shown along side each datapoint.
445
454
  datapoints (list[str]): The list of datapoints for the locate - each datapoint will be labeled.
446
455
  responses_per_datapoint (int, optional): The number of responses that will be collected per datapoint. Defaults to 10.
447
- contexts (list[str], optional): The list of contexts for the comparison. Defaults to None.\n
456
+ contexts (list[str], optional): The list of contexts for the locate. Defaults to None.\n
448
457
  If provided has to be the same length as datapoints and will be shown in addition to the instruction. (Therefore will be different for each datapoint)
449
458
  Will be match up with the datapoints using the list index.
459
+ media_contexts (list[str], optional): The list of media contexts for the locate i.e links to the images / videos. Defaults to None.\n
460
+ If provided has to be the same length as datapoints and will be shown in addition to the instruction. (Therefore will be different for each datapoint)
450
461
  validation_set_id (str, optional): The ID of the validation set. Defaults to None.\n
451
462
  If provided, one validation task will be shown infront of the datapoints that will be labeled.
452
463
  filters (Sequence[RapidataFilter], optional): The list of filters for the locate. Defaults to []. Decides who the tasks should be shown to.
@@ -465,6 +476,7 @@ class RapidataOrderManager:
465
476
  assets=assets,
466
477
  responses_per_datapoint=responses_per_datapoint,
467
478
  contexts=contexts,
479
+ media_contexts=media_contexts,
468
480
  validation_set_id=validation_set_id,
469
481
  filters=filters,
470
482
  selections=selections,
@@ -478,6 +490,7 @@ class RapidataOrderManager:
478
490
  datapoints: list[str],
479
491
  responses_per_datapoint: int = 10,
480
492
  contexts: list[str] | None = None,
493
+ media_contexts: list[str] | None = None,
481
494
  validation_set_id: str | None = None,
482
495
  filters: Sequence[RapidataFilter] = [],
483
496
  settings: Sequence[RapidataSetting] = [],
@@ -494,6 +507,8 @@ class RapidataOrderManager:
494
507
  contexts (list[str], optional): The list of contexts for the comparison. Defaults to None.\n
495
508
  If provided has to be the same length as datapoints and will be shown in addition to the instruction. (Therefore will be different for each datapoint)
496
509
  Will be match up with the datapoints using the list index.
510
+ media_contexts (list[str], optional): The list of media contexts for the draw lines i.e links to the images / videos. Defaults to None.\n
511
+ If provided has to be the same length as datapoints and will be shown in addition to the instruction. (Therefore will be different for each datapoint)
497
512
  validation_set_id (str, optional): The ID of the validation set. Defaults to None.\n
498
513
  If provided, one validation task will be shown infront of the datapoints that will be labeled.
499
514
  filters (Sequence[RapidataFilter], optional): The list of filters for the draw lines. Defaults to []. Decides who the tasks should be shown to.
@@ -512,6 +527,7 @@ class RapidataOrderManager:
512
527
  assets=assets,
513
528
  responses_per_datapoint=responses_per_datapoint,
514
529
  contexts=contexts,
530
+ media_contexts=media_contexts,
515
531
  validation_set_id=validation_set_id,
516
532
  filters=filters,
517
533
  selections=selections,
@@ -525,6 +541,7 @@ class RapidataOrderManager:
525
541
  datapoints: list[str],
526
542
  responses_per_datapoint: int = 10,
527
543
  contexts: list[str] | None = None,
544
+ media_contexts: list[str] | None = None,
528
545
  validation_set_id: str | None = None,
529
546
  filters: Sequence[RapidataFilter] = [],
530
547
  settings: Sequence[RapidataSetting] = [],
@@ -541,6 +558,8 @@ class RapidataOrderManager:
541
558
  contexts (list[str], optional): The list of contexts for the comparison. Defaults to None.\n
542
559
  If provided has to be the same length as datapoints and will be shown in addition to the instruction. (Therefore will be different for each datapoint)
543
560
  Will be match up with the datapoints using the list index.
561
+ media_contexts (list[str], optional): The list of media contexts for the timestamp i.e links to the images / videos. Defaults to None.\n
562
+ If provided has to be the same length as datapoints and will be shown in addition to the instruction. (Therefore will be different for each datapoint)
544
563
  validation_set_id (str, optional): The ID of the validation set. Defaults to None.\n
545
564
  If provided, one validation task will be shown infront of the datapoints that will be labeled.
546
565
  filters (Sequence[RapidataFilter], optional): The list of filters for the timestamp. Defaults to []. Decides who the tasks should be shown to.
@@ -565,6 +584,7 @@ class RapidataOrderManager:
565
584
  assets=assets,
566
585
  responses_per_datapoint=responses_per_datapoint,
567
586
  contexts=contexts,
587
+ media_contexts=media_contexts,
568
588
  validation_set_id=validation_set_id,
569
589
  filters=filters,
570
590
  selections=selections,
@@ -13,12 +13,13 @@ class LabelingSelection(RapidataSelection):
13
13
 
14
14
  Args:
15
15
  amount (int): The amount of labeling rapids that will be shown per session.
16
- retrieval_mode (RetrievalMode): The retrieval mode to use. Defaults to "Random".
17
- max_iterations (int | None): The maximum number an annotator can see the same task. Defaults to None.
18
- This parameter is only taken into account when using "Shuffled" or "Sequential" retrieval modes.
16
+ retrieval_mode (RetrievalMode): The retrieval mode to use. Defaults to "Shuffled".
17
+ max_iterations (int | None): An annotator can answer the same task only once if the retrieval_mode is "Shuffled"
18
+ or "Sequential". max_iterations can increase the amount of responses an annotator can do
19
+ to the same task (datapoint).
19
20
  """
20
21
 
21
- def __init__(self, amount: int, retrieval_mode: RetrievalMode = RetrievalMode.Random, max_iterations: int | None = None):
22
+ def __init__(self, amount: int, retrieval_mode: RetrievalMode = RetrievalMode.Shuffled, max_iterations: int | None = None):
22
23
  self.amount = amount
23
24
  self.retrieval_mode = retrieval_mode
24
25
  self.max_iterations = max_iterations
@@ -4,10 +4,6 @@ class RetrievalMode(Enum):
4
4
  """
5
5
  Enum for defining retrieval modes for datapoints.
6
6
  """
7
- Random = "Random"
8
- """
9
- Will just randomly shuffle the datapoints. This is the default and will NOT take into account the "max_iterations" parameter.
10
- """
11
7
  Shuffled = "Shuffled"
12
8
  """
13
9
  Will shuffle the datapoints randomly for each user. The user will then see the datapoints in that order. This will take into account the "max_iterations" parameter.
@@ -16,3 +12,7 @@ class RetrievalMode(Enum):
16
12
  """
17
13
  Will show the datapoints in the order they are in the dataset. This will take into account the "max_iterations" parameter.
18
14
  """
15
+ Random = "Random"
16
+ """
17
+ Will just randomly feed the datapoints to the annotators. This will NOT take into account the "max_iterations" parameter.
18
+ """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: rapidata
3
- Version: 2.23.2
3
+ Version: 2.24.1
4
4
  Summary: Rapidata package containing the Rapidata Python Client to interact with the Rapidata Web API in an easy way.
5
5
  License: Apache-2.0
6
6
  Author: Rapidata AG
@@ -1,5 +1,5 @@
1
1
  rapidata/__init__.py,sha256=UtlVqb_iIvsZDlyITqKQZNb864p2cGluEdsB0sw6Lt8,779
2
- rapidata/api_client/__init__.py,sha256=HLyBE43YUIOhAETBIYQtCP_Qw4oJzdclvsRqFgJ1TRM,26807
2
+ rapidata/api_client/__init__.py,sha256=ueQCSv2aouXRHG6n2VdmXKMWq8_nguUeoA9oV9L8PQ4,27456
3
3
  rapidata/api_client/api/__init__.py,sha256=kxo-WoJb_QrJccktYJgKVVc674eT-scwggMvMZ3Spj8,1211
4
4
  rapidata/api_client/api/campaign_api.py,sha256=1ajX0hSnA4O5GacJLIGkAgorPlNDRVaEZY029Pkutl4,71353
5
5
  rapidata/api_client/api/client_api.py,sha256=qGiNJHQarNEFNmkrgWeHmlVX96WuDZINozhYaNfiy3c,53357
@@ -17,13 +17,13 @@ rapidata/api_client/api/rapid_api.py,sha256=2omzmCbZxfseGTwEMFGESrkSH-FlkP0JmqIW
17
17
  rapidata/api_client/api/rapidata_identity_api_api.py,sha256=-kgoDuLdh-R4MQ7JPi3kQ0WDFKbmI0MkCjxwHXBmksA,9824
18
18
  rapidata/api_client/api/simple_workflow_api.py,sha256=yauSlkSwoZOl4P-1Wu0yU92GcEArpEd3xjFqImU2K1g,12763
19
19
  rapidata/api_client/api/user_info_api.py,sha256=FuuA95Beeky-rnqIoSUe2-WQ7oVTfq0RElX0jfKXT0w,10042
20
- rapidata/api_client/api/validation_set_api.py,sha256=p3VeYzM9jIkT8csO3Af5fZmIFRRifDcNIibbs1VmpQQ,234035
20
+ rapidata/api_client/api/validation_set_api.py,sha256=LOSAssX1fHyxKNYPJp8nrsSOfo7FOcKlqbBNm_zRoZk,234038
21
21
  rapidata/api_client/api/workflow_api.py,sha256=a4LSlqk4X08YEKm4pS7wQeK1tK3JPKJ2xW0ye252r7A,98898
22
22
  rapidata/api_client/api_client.py,sha256=EDhxAOUc5JFWvFsF1zc726Q7GoEFkuB8uor5SlGx9K4,27503
23
23
  rapidata/api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
24
24
  rapidata/api_client/configuration.py,sha256=g472vHVPLBotq8EkfSXP4sbp7xnn-3sb8O8BBlRWK1I,15931
25
25
  rapidata/api_client/exceptions.py,sha256=eLLd1fxM0Ygf3IIG6aNx9hdy79drst5Cem0UjI_NamM,5978
26
- rapidata/api_client/models/__init__.py,sha256=Mpqgdua6fda4qWcG9WQpP7JGg6_SzWkdmAIgVddttHU,25055
26
+ rapidata/api_client/models/__init__.py,sha256=v-K9hElTs8UuGTkIpnziTHJ7oSROZ_hVzjcWESaj_p8,25704
27
27
  rapidata/api_client/models/ab_test_selection.py,sha256=xQcE1BgKSnkTcmIuroeVOAQcAhGkHLlMP9XjakMFgDc,4327
28
28
  rapidata/api_client/models/ab_test_selection_a_inner.py,sha256=2sM9nimGo85Fk1k7yZQnp-3ncMXcz_wvYBCR8NG1Sb8,10771
29
29
  rapidata/api_client/models/add_campaign_artifact_result.py,sha256=4IvFVS-tLlL6eHsWp-IZ_ul5T30-h3YEwd2B5ioBbgY,2582
@@ -42,6 +42,10 @@ rapidata/api_client/models/age_group.py,sha256=XZLFEKvPveCJOCN0byJ_p1rhbIEsAeETS
42
42
  rapidata/api_client/models/age_user_filter_model.py,sha256=nlJX6bigfRyUcyenNz6oDf6idKwwIpvraYstYVo_Zns,3035
43
43
  rapidata/api_client/models/aggregator_type.py,sha256=XGtJ_CiKVjehno8R2bygna9JL41_qXXgqYoDttbo0KQ,1093
44
44
  rapidata/api_client/models/are_rapids_active_result.py,sha256=s1hDQmpfpcyFd7c-uVQ70geOjUrU_pYX4EC7BC9Tm9g,2553
45
+ rapidata/api_client/models/asset_metadata.py,sha256=bhn0fBkCTMlMc8XOH77w83StGYNsrIVr5E4M-UdJNlo,3422
46
+ rapidata/api_client/models/asset_metadata_asset.py,sha256=X_gY7GWIlYTF6x5P0RM_3ihwwVZRUPjghEl7ZX-A-l8,6726
47
+ rapidata/api_client/models/asset_metadata_model.py,sha256=-324yoVHUBnzOSG_WAsCrjXGj_XSyl341MF9Dzww8Uc,3359
48
+ rapidata/api_client/models/asset_metadata_model_asset.py,sha256=Mi9s0NFq02_NSfeiK18Pfk3R6TQRpdIYiiUPRKxLgAE,7115
45
49
  rapidata/api_client/models/attach_category_rapid_blueprint.py,sha256=sdPTViyuCnEz4KNnNxIc_sSD0Qv3ux9y6tY4--hGISM,3164
46
50
  rapidata/api_client/models/attach_category_result.py,sha256=xLM9576NxYblinC2bjUGAQ7eAqp8H1YK8i7_zS5S278,3095
47
51
  rapidata/api_client/models/attach_category_truth.py,sha256=XAc0_cCEPP0iNEaak6ihK9_lExQSGboMBIlO6SebU6o,3062
@@ -75,7 +79,7 @@ rapidata/api_client/models/compare_rapid_blueprint.py,sha256=hCHLGAuZ6yK8Zv09lLq
75
79
  rapidata/api_client/models/compare_result.py,sha256=tRjXK5985YMnXtaLqdz9e6sXRPUyFU43Or5O_KzanCk,3493
76
80
  rapidata/api_client/models/compare_truth.py,sha256=1aVg80bn_0Q_ZnuA0uaoQ9wmiQ4GhaGaGQrx4povU0s,2955
77
81
  rapidata/api_client/models/compare_workflow_config.py,sha256=Rv94nLBSIdVxMtY2Fz1gmtsK0OF7bz4_BPY2zvH7-U8,5476
78
- rapidata/api_client/models/compare_workflow_config_metadata_value.py,sha256=ZJ113eW0xUSn-z1bC-_zVYyh7R9L8hZ-HGvqpIJydW8,11512
82
+ rapidata/api_client/models/compare_workflow_config_metadata_value.py,sha256=xkjXVMzk-3i08tUVPWN1tO2t0xJGZnRbCK9r2PRIpV4,12371
79
83
  rapidata/api_client/models/compare_workflow_config_model.py,sha256=k3R29s5rc3EceULNlDX_TI-z29JjRnqr_j8Bro_YSrE,6135
80
84
  rapidata/api_client/models/compare_workflow_config_model_pair_maker_config.py,sha256=Abxt8p19L3Fz5alg26BHDmukC-mNt-QnvojqGfIAJ8M,4987
81
85
  rapidata/api_client/models/compare_workflow_config_pair_maker_config.py,sha256=D_gLJA_T08erqik4AdM5TzXctdLX3ckHcSQuz_QN_YA,4923
@@ -105,7 +109,7 @@ rapidata/api_client/models/create_complex_order_model.py,sha256=46n1IJRAIyCYCGXK
105
109
  rapidata/api_client/models/create_complex_order_model_pipeline.py,sha256=yF_-tOciVlAiDlWb1bptnoEFGlQis68WEI_EeviEFk8,4939
106
110
  rapidata/api_client/models/create_complex_order_result.py,sha256=UW57ewUKFPZcx8lRjaICdYZWVPS7Yzr6eqK3-i-tf4s,3300
107
111
  rapidata/api_client/models/create_datapoint_from_files_model.py,sha256=Mly7BuAq0Lg249oNNxQiCf3cQybiCEkx-FAYEEaN8Ew,3792
108
- rapidata/api_client/models/create_datapoint_from_files_model_metadata_inner.py,sha256=3urQLUeUpYPHPyS8I1Rq51T3sVOnfoKE3f2B5nl03-c,7766
112
+ rapidata/api_client/models/create_datapoint_from_files_model_metadata_inner.py,sha256=SFxzdkSS78QS4rUqQ8a8PTScI9BJbH5I5Sul6B_CF7A,8704
109
113
  rapidata/api_client/models/create_datapoint_from_text_sources_model.py,sha256=zeOQKyw3U0X5Jjjs-y0MxcI-_XQJpP3ZmoHq3zyMSVE,4335
110
114
  rapidata/api_client/models/create_datapoint_from_urls_model.py,sha256=QmBNkGiZdHB6X3vjrWNJS9hnNIwEG7mBEFJcBU15EGQ,4374
111
115
  rapidata/api_client/models/create_datapoint_from_urls_model_metadata_inner.py,sha256=nbYw6r2C0qKGDn46sY45ySe1deQ9hOXG7fRN5qc7Pq4,7758
@@ -137,12 +141,12 @@ rapidata/api_client/models/create_validation_set_model.py,sha256=b78M37Gp6B8CBxO
137
141
  rapidata/api_client/models/custom_user_filter_model.py,sha256=uTNEeTE5Asds_GjkvZzDm9ndQmUoG3hghIGG9iJkp_s,3051
138
142
  rapidata/api_client/models/customer_order_model.py,sha256=9kXJb1GQw6dZpZPSSqOU9_yxAoXHk6cbkvghMCf-0jA,3614
139
143
  rapidata/api_client/models/customer_order_model_paged_result.py,sha256=3OdAC3BVGWjU6i5kWb108pwt6d1ThVJQF9Ji409ZZDo,3518
140
- rapidata/api_client/models/datapoint.py,sha256=MaXp-wrVO3XPGpO0Vm5Qt6jY_T4GGVLHcK3wtqLXnFg,3457
144
+ rapidata/api_client/models/datapoint.py,sha256=MJ0fQRhsaEA2K8y3i_-RXwVgDFLl-aCXjJOomvX4mjI,3495
141
145
  rapidata/api_client/models/datapoint_asset.py,sha256=UOObRKFCDGXsB-HOOH6YRyhURjRrnPo3F04dRfomv5U,7034
142
146
  rapidata/api_client/models/datapoint_get_by_id_get200_response.py,sha256=4SQEDpOUUGIUCVHe6Xm85Rdg1g_h8YgjCASt-UEn6Vk,4668
143
147
  rapidata/api_client/models/datapoint_metadata_model.py,sha256=6-Fmcku-KOCnNMZIFJv8Sjt3tm6yl7UeSTlnouxuu6M,3884
144
148
  rapidata/api_client/models/datapoint_metadata_model_metadata_inner.py,sha256=pOZZEwKLnx2LpKFJyJfdBOAtn57rduvPOvLdfSbdh6s,7710
145
- rapidata/api_client/models/datapoint_model.py,sha256=MJtgKpSH8LvH9NW-SNyFyvHt8uWYJb9twYrr1lFko28,2955
149
+ rapidata/api_client/models/datapoint_model.py,sha256=wcImtLcvlcJqNlmNDZI3MuEdzatCXc7xYHG9Cg_O8YY,2993
146
150
  rapidata/api_client/models/datapoint_model_asset.py,sha256=817ARdS4ObL5wG9dcLmKJ_1mj1ZjgdagiHHyGhUX6zY,7079
147
151
  rapidata/api_client/models/datapoint_state.py,sha256=JAoJm-6XtIzBEusFQiybrXDOKin640UdYVcEmx3jm0Y,783
148
152
  rapidata/api_client/models/dataset_artifact_model.py,sha256=TJE17a0pX_JiGGISl6azVOYqx7ZQLHuMHmJgURFPR3E,3113
@@ -163,14 +167,14 @@ rapidata/api_client/models/feature_flag.py,sha256=Ctw_S0nxSr0gz4n2GQW1QmcvfVNV8A
163
167
  rapidata/api_client/models/feature_flag_model.py,sha256=Bzq7vkZRoYnft2_2-HKHLj4FVa6a5lbN3x34-m8vFsA,2803
164
168
  rapidata/api_client/models/feedback_model.py,sha256=BqJoYITA22lE1O2SWenv2Ndw1_JfqIfWMhDvB9gJ0YA,3304
165
169
  rapidata/api_client/models/file_artifact_model.py,sha256=4v46T1Bsot2Pty2pJo6wUlVX4ea1mJhnjrllNHWKjT0,3084
166
- rapidata/api_client/models/file_asset.py,sha256=I2xhSNJiFoNwK0vDHcosIc3BVMv6aL-9CaJcq5soJ5M,3727
170
+ rapidata/api_client/models/file_asset.py,sha256=YynnGRmznrN_UvyqvVx-1Zid5O5D86RvEtK5Qw6PkQk,3854
167
171
  rapidata/api_client/models/file_asset_metadata_inner.py,sha256=YpRMBMuTbxiBMSEXPhYXlUH0y6MQ4RXkzrBcjt_eAHo,10598
168
- rapidata/api_client/models/file_asset_model.py,sha256=i37JV90lolw7nw0jV5c_aSRQL4-ItgW3hKO_0HUPezI,3824
172
+ rapidata/api_client/models/file_asset_model.py,sha256=zv73We00WmAEN2itYifN_3NSzxYDayuO6R0-0UW50bI,3913
169
173
  rapidata/api_client/models/file_asset_model1.py,sha256=H6bbhe3wXJzDVTrC2vIZuwf_Bbe1t_b1Hjg0Xx27TJM,3709
170
174
  rapidata/api_client/models/file_asset_model1_metadata_inner.py,sha256=eo2q1M0mDa1-2H24kISrPRSFw-nJxM4EFXJxY5lMjto,13295
171
175
  rapidata/api_client/models/file_asset_model2.py,sha256=Chw6rpZcIY9w_VLaJ_7sJuIHeRJtEtp-INBRnu1mD5A,3709
172
176
  rapidata/api_client/models/file_asset_model_metadata_inner.py,sha256=nLkvLuLUx9pahaAICIGiNm2BqvdPs5dTbZgwmOqYwLA,12263
173
- rapidata/api_client/models/file_asset_model_metadata_value.py,sha256=HY3Zox4zowHQeFIE2q2kxJHUxBl5hlqH1uYJnBbVp68,14192
177
+ rapidata/api_client/models/file_asset_model_metadata_value.py,sha256=uGlKpWNcetlkYIgI0hiPshrQUmdPUqAtuiaeSkF3d60,15130
174
178
  rapidata/api_client/models/filter.py,sha256=-gje_jVjRXyeguRj9yGuHgyi53hn871Z_2ULs_5yVr8,4541
175
179
  rapidata/api_client/models/filter_operator.py,sha256=hVWuGOU6iseDxdJCG4E-b5Pbb8w3rCLT26ukvmwx6G0,889
176
180
  rapidata/api_client/models/free_text_payload.py,sha256=u5p0ybMMOH2ecmzT3FauQs0LgQgLNnUOD8Kk1umOqtw,2952
@@ -185,10 +189,10 @@ rapidata/api_client/models/get_compare_ab_summary_result.py,sha256=n3ZNjKT_BsEtZ
185
189
  rapidata/api_client/models/get_compare_workflow_result_overview_result.py,sha256=x8T7N15i-5R8iM4fZgsj688nWCl6npVsvKYFH_kOmdo,4799
186
190
  rapidata/api_client/models/get_compare_workflow_result_overview_small_result.py,sha256=myMv-dYrn4e7it6vnn5vd2eCYLfbdob2U5xyB1tD_jQ,4265
187
191
  rapidata/api_client/models/get_compare_workflow_results_model.py,sha256=lUbGdzNXW6aoC2z2FoptdKAr7QVylUJfOdEkxL2-b1k,3845
188
- rapidata/api_client/models/get_compare_workflow_results_result.py,sha256=w1NHeyun8B16lAuj8L4RCj4QLLcjL9Gq1DJ5DXS-jXQ,3089
192
+ rapidata/api_client/models/get_compare_workflow_results_result.py,sha256=kXyb_TKANaaMiOhrk0RcD8PfWCUrRr-PhBaREMepmA4,3127
189
193
  rapidata/api_client/models/get_compare_workflow_results_result_asset.py,sha256=MXiSvoHvtwdQq9kjZ39Pg7DsY2Jp2tq8s7UKCZ78FOc,7300
190
194
  rapidata/api_client/models/get_compare_workflow_results_result_paged_result.py,sha256=2N7mhiPLwUt0Y7D9hQl_SHj2U-yUfsTFcPn1iysx-qc,3624
191
- rapidata/api_client/models/get_datapoint_by_id_result.py,sha256=FOxydW8fBR7O91p1AK8MS7FvfP8yp66iDfp3JMeFn4Q,3872
195
+ rapidata/api_client/models/get_datapoint_by_id_result.py,sha256=3nsbjZoYu7QywRrzO2isskL3XizWEVfONIqRVtxMB_0,3910
192
196
  rapidata/api_client/models/get_datapoints_by_dataset_id_result.py,sha256=u8DHnbnIJoZgYvr5XJdyId8wpKehuVqqUmW3u4QSC68,3004
193
197
  rapidata/api_client/models/get_dataset_by_id_result.py,sha256=buK_gpa_G4uTQ3g05A3P7kW9v1pfsWU_l1EXCAGyC_o,2502
194
198
  rapidata/api_client/models/get_dataset_progress_result.py,sha256=Zh0ALJyjWXD87FDmwQwUGOXj3cP1ozLsTHwWxQ4404E,2741
@@ -198,7 +202,7 @@ rapidata/api_client/models/get_order_results_result.py,sha256=zHCTEa1VgbIoGXHsBt
198
202
  rapidata/api_client/models/get_pipeline_by_id_result.py,sha256=UfedDCodsDJHrKnY5ZEGozML3YkcLbq3yPOQtvmof4E,3929
199
203
  rapidata/api_client/models/get_pipeline_by_id_result_artifacts_value.py,sha256=tvh4GD4YeU9VnXKWLiqTfqGsC-90hUa_zAd-qkcwEPs,8476
200
204
  rapidata/api_client/models/get_public_orders_result.py,sha256=1Eq-R7wX2fKREuu-o1u5pVqHnc89-_--pkz78y80oEM,3001
201
- rapidata/api_client/models/get_rapid_responses_result.py,sha256=Tz_s-64Gn1KEQpZoep2LzcaotENQVAPJ7uI47TU63y8,3925
205
+ rapidata/api_client/models/get_rapid_responses_result.py,sha256=rEAnFIX8k0JD93mXF1LrhisIdLBvkJGUkyaCly9BKxo,3963
202
206
  rapidata/api_client/models/get_responses_result.py,sha256=PKotTgmo6kM6a65DNHvd0Eu6B6DghQiTdEtbDyErXhY,3012
203
207
  rapidata/api_client/models/get_simple_workflow_result_overview_result.py,sha256=ThHj63FCET3FcfC8jBjTG8opL2ZUMwg4BZFIzXFaC8I,6554
204
208
  rapidata/api_client/models/get_simple_workflow_results_model.py,sha256=r4DZspzPrwaI4DrC4OH-mwUvibcS0TzK9O8CFnsURSc,4289
@@ -218,7 +222,7 @@ rapidata/api_client/models/get_workflow_config_result.py,sha256=2JiFcYzAsiUOheWr
218
222
  rapidata/api_client/models/get_workflow_config_result_workflow_config.py,sha256=DeqZa0tP0J67MazFwpuNCL5B_YIhn-SlF58T4wMLH_w,5799
219
223
  rapidata/api_client/models/get_workflow_progress_result.py,sha256=SSD-eaTbwnqZ-bPVKve5INzgc71oPRRPTzzkF5ZTSPQ,3264
220
224
  rapidata/api_client/models/get_workflow_result_overview_result.py,sha256=Im5akRbHXVE8RnS50tT3_SX0YBOtJW22TytIRdA_-CM,3582
221
- rapidata/api_client/models/get_workflow_results_result.py,sha256=iPUrtKdJBp7ux_ZmrtxL_gTNyTrxVfTIYpZYR-9eigc,4387
225
+ rapidata/api_client/models/get_workflow_results_result.py,sha256=OYGSH6ItmqfhybUySapKUNfsF2Xu3gQ2ohlHVdJ4DSY,4425
222
226
  rapidata/api_client/models/get_workflow_results_result_paged_result.py,sha256=P_vSN7TxSvTv886h1Nn5UpGnXHQoZLJc3WxMPXBOzZA,3567
223
227
  rapidata/api_client/models/google_one_tap_login_model.py,sha256=KbND8MNQavRECWKr5kL3eV4uxv87IQ61xf627pqLpbE,2640
224
228
  rapidata/api_client/models/i_workflow_model_paged_result.py,sha256=ccj0JeATNwBeTTMGfuTD6L8_8hPZeTomMszMKHgF8ts,3549
@@ -253,8 +257,8 @@ rapidata/api_client/models/location_metadata_model.py,sha256=El-tUV3FegjOIp1JM0u
253
257
  rapidata/api_client/models/logic_operator.py,sha256=Ubkx7I9TQdiusX5Oy626SlThTKtfkxL1Col5goknJoo,760
254
258
  rapidata/api_client/models/login_model.py,sha256=FvbKlIdqtry34vyZjRCOCeH-AEmHByQ7CzHNlgvSzLg,2750
255
259
  rapidata/api_client/models/metadata_visibilities.py,sha256=etxAKYS50cM6i2DgXerwn34CQMrSx5Z9YuNLT7Vrn74,867
256
- rapidata/api_client/models/multi_asset.py,sha256=BU4zhajNnBRLqShzBdHTXEZ0ZjlfDaN-IBqRoZrPjFA,4125
257
- rapidata/api_client/models/multi_asset_model.py,sha256=dpROG6P2DQb3JOxOA68QXo10lK5R3PCbqSEFlxjiAjY,4376
260
+ rapidata/api_client/models/multi_asset.py,sha256=s4gp_4d_vMHZmHFrA86f_tPPt_GeNK5Nutke2yJ1YYo,4334
261
+ rapidata/api_client/models/multi_asset_model.py,sha256=xH15y8RSSvJ41MQXa5Zw1Zx3xZnI8EmbFPU98haCREc,4414
258
262
  rapidata/api_client/models/multi_asset_model1.py,sha256=5uQhr4I1AWgoeyICYJw1cXY_0cwQrEVQVAxqNL8qVtQ,4317
259
263
  rapidata/api_client/models/multi_asset_model1_assets_inner.py,sha256=42AfjwV9PyzFIEjbRG_XiBEXmxKvZ06Z7PI1W6WeszQ,7219
260
264
  rapidata/api_client/models/multi_asset_model2.py,sha256=tc8p-O_LkmQ5XPEXBmKeYbEQx4lOXx3_LDAsWbEIoX8,4354
@@ -273,8 +277,8 @@ rapidata/api_client/models/no_validation_workflow_rapid_selection_config.py,sha2
273
277
  rapidata/api_client/models/not_available_yet_result.py,sha256=euGeN081IZ4mCaiJJD_lz_655Hn5n6Oomq6980Yzy1w,2996
274
278
  rapidata/api_client/models/not_started_rapid_model.py,sha256=_IVYY9C2i8e4jaM6EDerk7ynKYwajX_-dtmTscCUe_U,2954
275
279
  rapidata/api_client/models/not_user_filter_model.py,sha256=IScOwYUVryZQPgzLWCCX53QAO-xeYh_5bIpzOsXAnrs,3402
276
- rapidata/api_client/models/null_asset.py,sha256=88mm-8iw4dJXCh4lYWYJQLYDxQiDOvqfjQnqSiOn8sg,3470
277
- rapidata/api_client/models/null_asset_model.py,sha256=iYkiSxsLr1aJubdfsLKi468YWXINl1IiQ6CzaOmna4g,3716
280
+ rapidata/api_client/models/null_asset.py,sha256=d17pP3JLhjXKvfDmWRXXu3aT_xA3l0iMCOZIstX9MPA,3746
281
+ rapidata/api_client/models/null_asset_model.py,sha256=uxanSNJY3RADK7tf_9JNKQb-v9C_OXXGe4sdNx5EsXg,3805
278
282
  rapidata/api_client/models/null_asset_model1.py,sha256=FAu0ayR7eK_mssNRFwDiaLTumoB44MiZzvWg6Lf3tOw,3601
279
283
  rapidata/api_client/models/null_asset_model2.py,sha256=VZSWnotnBGTuHXeySuHxQ8KWzMzi2WZrSlMqJNuEsTs,3601
280
284
  rapidata/api_client/models/online_pair_maker_config.py,sha256=j29pRLXwNzlMs4uOV6tgDhc76FNxWOM-nCjm-h98Lek,3361
@@ -303,6 +307,7 @@ rapidata/api_client/models/preliminary_download_result.py,sha256=MMGTTVulc5dFtuX
303
307
  rapidata/api_client/models/private_text_metadata_input.py,sha256=2v1OJ1FgMasHSytfKmE1pwyIYGO8DtHG6mqNcDgxW2A,3097
304
308
  rapidata/api_client/models/probabilistic_attach_category_referee_config.py,sha256=TU6IyF0kW0upKi08AY7XFLeBSmPfj3cniTwnLb3RT94,3315
305
309
  rapidata/api_client/models/problem_details.py,sha256=00OWbk93SWXdEVNs8rceJq6CAlG4KIRYRR1sqasZ35Q,4506
310
+ rapidata/api_client/models/prompt_asset_metadata_input.py,sha256=NSSUbq1Y-8psDPX5Z5qJU6fLy2LuJQZ7aoz76RjiH7w,3421
306
311
  rapidata/api_client/models/prompt_metadata.py,sha256=Oa3fQq-h5EIL7ndpP8FMvfF4sU8PowBqca8LeKNVzac,3060
307
312
  rapidata/api_client/models/prompt_metadata_input.py,sha256=x6GF0wKB043lMXOYCk217L9I7O0wp7aZaZc2nouVzbg,2976
308
313
  rapidata/api_client/models/prompt_metadata_model.py,sha256=zE8RJv5aG1UZ4B0N-l3bQgPJJxxXRJ6mvNGmh43bnsg,2956
@@ -367,8 +372,8 @@ rapidata/api_client/models/sticky_state.py,sha256=dMti7CucXAOvNN1I1BPCE9XGhtXAmq
367
372
  rapidata/api_client/models/submit_coco_model.py,sha256=3OtmOfl5QEXz9049WaU7aq0fGPoigD9dbzCbUIKUz9c,2925
368
373
  rapidata/api_client/models/submit_coco_result.py,sha256=7LfDd-GRZx3xxOJED4MlSGfPsNbfteDs175wm44JoE8,2572
369
374
  rapidata/api_client/models/submit_password_reset_command.py,sha256=EcHK3K72_OrG0McyarmMhY3LHmz0opXMLxwDtPdn-mU,3404
370
- rapidata/api_client/models/text_asset.py,sha256=VZak7HvImvaL5ticznv97v7ZFEZrf02QzyFusM0p6aY,3508
371
- rapidata/api_client/models/text_asset_model.py,sha256=rVPMYY6gNz4tSfYV24Y3N1vlgVcztmAuRSn-c35IRYA,3781
375
+ rapidata/api_client/models/text_asset.py,sha256=_Hz4EzobSjErKHswhW2naqw6BCSxmScRGRN15pvz4W0,3811
376
+ rapidata/api_client/models/text_asset_model.py,sha256=1IrRO6UjATq2lHUQGTm5Lc2K0bTZT6wGOUWkcqqNDd4,3870
372
377
  rapidata/api_client/models/text_asset_model1.py,sha256=dyc2Favu8AP-Al-WoNQadFyIJVlSBjZsQLahgcd069s,3666
373
378
  rapidata/api_client/models/text_asset_model2.py,sha256=KGRVYpb5u44knRRc4B47H-_xr8OJmoI2Rzy2D7y2hIU,3666
374
379
  rapidata/api_client/models/text_metadata.py,sha256=4Gpf_55Nxw7YJbP9io8nUPpJyEWv1wxAieirC_uqmRE,3036
@@ -401,6 +406,7 @@ rapidata/api_client/models/upload_datapoints_result.py,sha256=elRh6AliS3UJsOeQCV
401
406
  rapidata/api_client/models/upload_files_from_s3_bucket_model.py,sha256=mKhoXquUoNVFT-8iDLf9CwuHyJTBHtlpp2O_6M61ww8,4695
402
407
  rapidata/api_client/models/upload_from_s3_result.py,sha256=s3h6f2z7uMe870Vx2-mnollv77GRRMaLVouuYmCKC8I,2608
403
408
  rapidata/api_client/models/upload_text_sources_to_dataset_model.py,sha256=NTrHR7FWaEnOLyAu7QWy7byAboJJ79L6hF3qFLuCfMs,4497
409
+ rapidata/api_client/models/url_asset_input.py,sha256=tThAwxBmxCvCaykF-Y3aPPo6pdqqiWznkIXQ-RHPAsU,3108
404
410
  rapidata/api_client/models/user_score_user_filter_model.py,sha256=IEAhRRE4ertksZTIo9LfG6VNPMj7DQk8cgCm_4dtt9c,3521
405
411
  rapidata/api_client/models/validation_chance.py,sha256=noMnBjmt2MjJFpg6OPLfrEppoXmdv82fvCF8v6o4dL0,2838
406
412
  rapidata/api_client/models/validation_import_post_request_blueprint.py,sha256=O2BoEcpuRKfsV-ORVIpsm8DLVx-1sCehlm2G2fJ3iKA,13173
@@ -420,7 +426,7 @@ rapidata/api_client/models/workflow_split_model.py,sha256=zthOSaUl8dbLhLymLK_lrP
420
426
  rapidata/api_client/models/workflow_split_model_filter_configs_inner.py,sha256=1Fx9uZtztiiAdMXkj7YeCqt7o6VkG9lKf7D7UP_h088,7447
421
427
  rapidata/api_client/models/workflow_state.py,sha256=5LAK1se76RCoozeVB6oxMPb8p_5bhLZJqn7q5fFQWis,850
422
428
  rapidata/api_client/rest.py,sha256=rtIMcgINZOUaDFaJIinJkXRSddNJmXvMRMfgO2Ezk2o,10835
423
- rapidata/api_client_README.md,sha256=knoHEjcpFyi4_6_tJZ2pyhJHYclq2EijiPkDp4sXw90,54397
429
+ rapidata/api_client_README.md,sha256=1GZEvjvNdHtkVFndp26uSCA6FpzrApoNIvTMDRrwZjM,54986
424
430
  rapidata/rapidata_client/__init__.py,sha256=7MXEDdib_ZKH3IEXcfaRYJ_AO0BrWtMYOHprH72wjkE,1071
425
431
  rapidata/rapidata_client/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
426
432
  rapidata/rapidata_client/api/rapidata_exception.py,sha256=BIdmHRrJUGW-Mqhp1H_suemZaR6w9TgjWq-ZW5iUPdQ,3878
@@ -455,8 +461,9 @@ rapidata/rapidata_client/filter/user_score_filter.py,sha256=2C78zkWm5TnfkxGbV1ER
455
461
  rapidata/rapidata_client/logging/__init__.py,sha256=WXXytdvJxZyE84tIFt4DGFqkqjmyyRdWBjET3RCbOVY,101
456
462
  rapidata/rapidata_client/logging/logger.py,sha256=CR_FJRVkHi1tVcJ42aYNj75HX7kr5trKBCXvPLCsnSk,1368
457
463
  rapidata/rapidata_client/logging/output_manager.py,sha256=2swwqSSZ3B1tyXgEB5LnPIL8YjtqR786iaA5dhCheYo,329
458
- rapidata/rapidata_client/metadata/__init__.py,sha256=cVAGs3F1i5BiimZ9m-aVXAiVyfqLMtSn59nqfRFmIxs,248
464
+ rapidata/rapidata_client/metadata/__init__.py,sha256=G_mnLo2q4S_V9BjTCTJVNZZqnmwU6OaHNkuxNSNnRQA,302
459
465
  rapidata/rapidata_client/metadata/_base_metadata.py,sha256=t2kFqaz5BkEaYYj93Pw3h7zWVDq_S5ZkDxjDIRd21_I,189
466
+ rapidata/rapidata_client/metadata/_media_asset_metadata.py,sha256=muyWV9QAdz_8s6N0Zp8qzqDXiNI0N54HS-3K5hDRG5c,529
460
467
  rapidata/rapidata_client/metadata/_private_text_metadata.py,sha256=DFB-Ji3Hd7HBrKClCMBep-0XA2X2rTKRYKKg-FUHeyg,535
461
468
  rapidata/rapidata_client/metadata/_prompt_metadata.py,sha256=ecycAq_t2HCEptxgNxy7S88cCrIrmMnqK-JhyVHhrNg,574
462
469
  rapidata/rapidata_client/metadata/_public_text_metadata.py,sha256=uXavDp1ucy_9u5n0girqWD_SkFr7tplGMK_2aqyyHIA,529
@@ -465,7 +472,7 @@ rapidata/rapidata_client/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
465
472
  rapidata/rapidata_client/order/_rapidata_dataset.py,sha256=okwIN6e-a2cR-0KbLbwk8ULM3hEg2ls91foCjFsu36Y,20230
466
473
  rapidata/rapidata_client/order/_rapidata_order_builder.py,sha256=x-2lpW6Jwlq-9XRz91beWNv2TgdEA-q4b_RhOSr7vhQ,14405
467
474
  rapidata/rapidata_client/order/rapidata_order.py,sha256=qloZIWNHG0790WOHMRzqQHcjOgpnFtJNFU1XIlWH0pE,11689
468
- rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=LLBbRQslRdnkGKQ7E5GzwlnjOyvb2GWgpizg5GYTQ6k,34410
475
+ rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=z2yvthD9kXTR2K7odd1DyobHDIEA_eiVN6bVU7HFA30,36529
469
476
  rapidata/rapidata_client/order/rapidata_results.py,sha256=UllYpuqpm2inKdRNhClaUwApuxsMLrvrGDsrHA5KqbY,8111
470
477
  rapidata/rapidata_client/rapidata_client.py,sha256=rbu3JBEVUyqs-HfJ1pdLsXM_8tp6JsCedKr-2gs9MwA,3141
471
478
  rapidata/rapidata_client/referee/__init__.py,sha256=q0Hv9nmfEpyChejtyMLT8hWKL0vTTf_UgUXPYNJ-H6M,153
@@ -478,9 +485,9 @@ rapidata/rapidata_client/selection/ab_test_selection.py,sha256=fymubkVMawqJmYp9F
478
485
  rapidata/rapidata_client/selection/capped_selection.py,sha256=iWhbM1LcayhgFm7oKADXCaKHGdiQIupI0jbYuuEVM2A,1184
479
486
  rapidata/rapidata_client/selection/conditional_validation_selection.py,sha256=OcNYSBi19vIcy2bLDmj9cv-gg5LFSvdjc3tooV0Z7Oc,2842
480
487
  rapidata/rapidata_client/selection/demographic_selection.py,sha256=l4vnNbzlf9ED6BKqN4k5cZXShkXu9L1C5DtO78Vwr5M,1454
481
- rapidata/rapidata_client/selection/labeling_selection.py,sha256=i_E3dUdSC16tmebcK9lMXG1MG1oFhrDfNlkNPaLkVv8,1297
488
+ rapidata/rapidata_client/selection/labeling_selection.py,sha256=0X8DJHgwvgwekEbzVxWPyzZ1QAPcULZNDjfLQYUlcLM,1348
482
489
  rapidata/rapidata_client/selection/rapidata_selections.py,sha256=Azh0ntBZp9EQNL19imIItotQ8QW3B1gEs5YmuTvUn6U,1526
483
- rapidata/rapidata_client/selection/retrieval_modes.py,sha256=vZ6JuMdz5l1AJM7hY7rqBevnsD7bIdpWjpiLDVNKqmA,672
490
+ rapidata/rapidata_client/selection/retrieval_modes.py,sha256=J2jzPEJ4wdllm_RnU_FYPh3eO3xeZS7QUk-NXgTB2u4,668
484
491
  rapidata/rapidata_client/selection/shuffling_selection.py,sha256=FzOp7mnBLxNzM5at_-935wd77IHyWnFR1f8uqokiMOg,1201
485
492
  rapidata/rapidata_client/selection/static_selection.py,sha256=POhVLjzHcUIuU_GCvRxMuCb27m7CkLxaQPwgf20Xo9o,681
486
493
  rapidata/rapidata_client/selection/validation_selection.py,sha256=sedeIa8lpXVXKtFJA9IDeRvo9A1Ne4ZGcepaWDUGhCU,851
@@ -517,7 +524,7 @@ rapidata/service/__init__.py,sha256=s9bS1AJZaWIhLtJX_ZA40_CK39rAAkwdAmymTMbeWl4,
517
524
  rapidata/service/credential_manager.py,sha256=FAH9PJreDAw3G9cJ_iwzvz99s9RnFDrxxV0BHb2VYAI,8698
518
525
  rapidata/service/local_file_service.py,sha256=pgorvlWcx52Uh3cEG6VrdMK_t__7dacQ_5AnfY14BW8,877
519
526
  rapidata/service/openapi_service.py,sha256=J07TB4P3cz9KCU7k_fwuMQwGXlq_nJx_m1_xHbZoCg0,4867
520
- rapidata-2.23.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
521
- rapidata-2.23.2.dist-info/METADATA,sha256=vSicSQOhjcmyF2YsiA5Gp-KIUs7axpuQTDEZryLQSeU,1228
522
- rapidata-2.23.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
523
- rapidata-2.23.2.dist-info/RECORD,,
527
+ rapidata-2.24.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
528
+ rapidata-2.24.1.dist-info/METADATA,sha256=tJKeTzMVu0FvShFQFJQEJnUVpRolHNrGnB16-GSpjZ8,1228
529
+ rapidata-2.24.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
530
+ rapidata-2.24.1.dist-info/RECORD,,