rapidata 2.29.1__py3-none-any.whl → 2.30.0__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.
- rapidata/__init__.py +1 -1
- rapidata/api_client/__init__.py +5 -0
- rapidata/api_client/api/benchmark_api.py +283 -0
- rapidata/api_client/api/leaderboard_api.py +562 -0
- rapidata/api_client/models/__init__.py +5 -0
- rapidata/api_client/models/file_type.py +1 -0
- rapidata/api_client/models/file_type_metadata.py +2 -2
- rapidata/api_client/models/file_type_metadata_model.py +2 -2
- rapidata/api_client/models/prompt_by_benchmark_result.py +19 -3
- rapidata/api_client/models/run_status.py +39 -0
- rapidata/api_client/models/runs_by_leaderboard_result.py +110 -0
- rapidata/api_client/models/runs_by_leaderboard_result_paged_result.py +105 -0
- rapidata/api_client/models/update_benchmark_name_model.py +87 -0
- rapidata/api_client/models/update_leaderboard_name_model.py +87 -0
- rapidata/api_client_README.md +8 -0
- rapidata/rapidata_client/benchmark/leaderboard/rapidata_leaderboard.py +9 -0
- rapidata/rapidata_client/benchmark/rapidata_benchmark.py +66 -12
- rapidata/rapidata_client/benchmark/rapidata_benchmark_manager.py +24 -6
- rapidata/rapidata_client/order/_rapidata_order_builder.py +13 -9
- rapidata/rapidata_client/order/rapidata_order_manager.py +2 -13
- {rapidata-2.29.1.dist-info → rapidata-2.30.0.dist-info}/METADATA +1 -1
- {rapidata-2.29.1.dist-info → rapidata-2.30.0.dist-info}/RECORD +24 -19
- {rapidata-2.29.1.dist-info → rapidata-2.30.0.dist-info}/LICENSE +0 -0
- {rapidata-2.29.1.dist-info → rapidata-2.30.0.dist-info}/WHEEL +0 -0
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
from typing import Optional
|
|
1
2
|
from rapidata.rapidata_client.benchmark.rapidata_benchmark import RapidataBenchmark
|
|
2
3
|
from rapidata.api_client.models.create_benchmark_model import CreateBenchmarkModel
|
|
3
4
|
from rapidata.service.openapi_service import OpenAPIService
|
|
@@ -24,27 +25,40 @@ class RapidataBenchmarkManager:
|
|
|
24
25
|
def create_new_benchmark(self,
|
|
25
26
|
name: str,
|
|
26
27
|
identifiers: list[str],
|
|
27
|
-
prompts: list[str],
|
|
28
|
+
prompts: Optional[list[str]] = None,
|
|
29
|
+
prompt_assets: Optional[list[str]] = None,
|
|
28
30
|
) -> RapidataBenchmark:
|
|
29
31
|
"""
|
|
30
|
-
Creates a new benchmark with the given name, prompts, and
|
|
32
|
+
Creates a new benchmark with the given name, identifiers, prompts, and media assets.
|
|
33
|
+
|
|
34
|
+
prompts or prompt_assets must be provided.
|
|
31
35
|
|
|
32
36
|
Args:
|
|
33
37
|
name: The name of the benchmark.
|
|
34
38
|
prompts: The prompts that will be registered for the benchmark.
|
|
39
|
+
prompt_assets: The prompt assets that will be registered for the benchmark.
|
|
35
40
|
"""
|
|
36
41
|
if not isinstance(name, str):
|
|
37
42
|
raise ValueError("Name must be a string.")
|
|
38
43
|
|
|
39
|
-
if not isinstance(prompts, list) or not all(isinstance(prompt, str) for prompt in prompts):
|
|
44
|
+
if prompts and (not isinstance(prompts, list) or not all(isinstance(prompt, str) for prompt in prompts)):
|
|
40
45
|
raise ValueError("Prompts must be a list of strings.")
|
|
41
46
|
|
|
47
|
+
if prompt_assets and (not isinstance(prompt_assets, list) or not all(isinstance(asset, str) for asset in prompt_assets)):
|
|
48
|
+
raise ValueError("Media assets must be a list of strings.")
|
|
49
|
+
|
|
42
50
|
if not isinstance(identifiers, list) or not all(isinstance(identifier, str) for identifier in identifiers):
|
|
43
51
|
raise ValueError("Identifiers must be a list of strings.")
|
|
44
52
|
|
|
45
|
-
if len(identifiers) != len(prompts):
|
|
53
|
+
if prompts and len(identifiers) != len(prompts):
|
|
46
54
|
raise ValueError("Identifiers and prompts must have the same length.")
|
|
47
55
|
|
|
56
|
+
if prompt_assets and len(identifiers) != len(prompt_assets):
|
|
57
|
+
raise ValueError("Identifiers and media assets must have the same length.")
|
|
58
|
+
|
|
59
|
+
if not prompts and not prompt_assets:
|
|
60
|
+
raise ValueError("At least one of prompts or media assets must be provided.")
|
|
61
|
+
|
|
48
62
|
if len(set(identifiers)) != len(identifiers):
|
|
49
63
|
raise ValueError("Identifiers must be unique.")
|
|
50
64
|
|
|
@@ -55,8 +69,12 @@ class RapidataBenchmarkManager:
|
|
|
55
69
|
)
|
|
56
70
|
|
|
57
71
|
benchmark = RapidataBenchmark(name, benchmark_result.id, self.__openapi_service)
|
|
58
|
-
|
|
59
|
-
|
|
72
|
+
|
|
73
|
+
prompts_list = prompts if prompts is not None else [None] * len(identifiers)
|
|
74
|
+
media_assets_list = prompt_assets if prompt_assets is not None else [None] * len(identifiers)
|
|
75
|
+
|
|
76
|
+
for identifier, prompt, asset in zip(identifiers, prompts_list, media_assets_list):
|
|
77
|
+
benchmark.add_prompt(identifier, prompt, asset)
|
|
60
78
|
|
|
61
79
|
return benchmark
|
|
62
80
|
|
|
@@ -58,7 +58,7 @@ class RapidataOrderBuilder:
|
|
|
58
58
|
self.__settings: Sequence[RapidataSetting] | None = None
|
|
59
59
|
self.__user_filters: list[RapidataFilter] = []
|
|
60
60
|
self.__selections: list[RapidataSelection] = []
|
|
61
|
-
self.__priority: int =
|
|
61
|
+
self.__priority: int | None = None
|
|
62
62
|
self.__assets: Sequence[BaseAsset] = []
|
|
63
63
|
|
|
64
64
|
def _to_model(self) -> CreateOrderModel:
|
|
@@ -93,10 +93,14 @@ class RapidataOrderBuilder:
|
|
|
93
93
|
if self.__settings is not None
|
|
94
94
|
else None
|
|
95
95
|
),
|
|
96
|
-
selections=
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
96
|
+
selections=(
|
|
97
|
+
[
|
|
98
|
+
AbTestSelectionAInner(selection._to_model())
|
|
99
|
+
for selection in self.__selections
|
|
100
|
+
]
|
|
101
|
+
if self.__selections
|
|
102
|
+
else None
|
|
103
|
+
),
|
|
100
104
|
priority=self.__priority,
|
|
101
105
|
)
|
|
102
106
|
|
|
@@ -276,7 +280,7 @@ class RapidataOrderBuilder:
|
|
|
276
280
|
self.__user_filters = filters
|
|
277
281
|
return self
|
|
278
282
|
|
|
279
|
-
def _validation_set_id(self, validation_set_id: str) -> "RapidataOrderBuilder":
|
|
283
|
+
def _validation_set_id(self, validation_set_id: str | None = None) -> "RapidataOrderBuilder":
|
|
280
284
|
"""
|
|
281
285
|
Set the validation set ID for the order.
|
|
282
286
|
|
|
@@ -286,7 +290,7 @@ class RapidataOrderBuilder:
|
|
|
286
290
|
Returns:
|
|
287
291
|
RapidataOrderBuilder: The updated RapidataOrderBuilder instance.
|
|
288
292
|
"""
|
|
289
|
-
if not isinstance(validation_set_id, str):
|
|
293
|
+
if validation_set_id is not None and not isinstance(validation_set_id, str):
|
|
290
294
|
raise TypeError("Validation set ID must be of type str.")
|
|
291
295
|
|
|
292
296
|
self.__validation_set_id = validation_set_id
|
|
@@ -329,7 +333,7 @@ class RapidataOrderBuilder:
|
|
|
329
333
|
self.__selections = selections # type: ignore
|
|
330
334
|
return self
|
|
331
335
|
|
|
332
|
-
def _priority(self, priority: int) -> "RapidataOrderBuilder":
|
|
336
|
+
def _priority(self, priority: int | None = None) -> "RapidataOrderBuilder":
|
|
333
337
|
"""
|
|
334
338
|
Set the priority for the order.
|
|
335
339
|
|
|
@@ -339,7 +343,7 @@ class RapidataOrderBuilder:
|
|
|
339
343
|
Returns:
|
|
340
344
|
RapidataOrderBuilder: The updated RapidataOrderBuilder instance.
|
|
341
345
|
"""
|
|
342
|
-
if not isinstance(priority, int):
|
|
346
|
+
if priority is not None and not isinstance(priority, int):
|
|
343
347
|
raise TypeError("Priority must be of type int.")
|
|
344
348
|
|
|
345
349
|
self.__priority = priority
|
|
@@ -53,13 +53,8 @@ class RapidataOrderManager:
|
|
|
53
53
|
self.filters = RapidataFilters
|
|
54
54
|
self.settings = RapidataSettings
|
|
55
55
|
self.selections = RapidataSelections
|
|
56
|
-
self.__priority =
|
|
56
|
+
self.__priority: int | None = None
|
|
57
57
|
logger.debug("RapidataOrderManager initialized")
|
|
58
|
-
|
|
59
|
-
def __get_selections(self, validation_set_id: str | None, labeling_amount=3) -> Sequence[RapidataSelection]:
|
|
60
|
-
if validation_set_id:
|
|
61
|
-
return [ValidationSelection(validation_set_id=validation_set_id), LabelingSelection(amount=labeling_amount-1)]
|
|
62
|
-
return [LabelingSelection(amount=labeling_amount)]
|
|
63
58
|
|
|
64
59
|
def _create_general_order(self,
|
|
65
60
|
name: str,
|
|
@@ -75,7 +70,6 @@ class RapidataOrderManager:
|
|
|
75
70
|
sentences: list[str] | None = None,
|
|
76
71
|
selections: Sequence[RapidataSelection] = [],
|
|
77
72
|
private_notes: list[str] | None = None,
|
|
78
|
-
default_labeling_amount: int = 3
|
|
79
73
|
) -> RapidataOrder:
|
|
80
74
|
|
|
81
75
|
if not assets:
|
|
@@ -108,9 +102,6 @@ class RapidataOrderManager:
|
|
|
108
102
|
|
|
109
103
|
if selections and validation_set_id:
|
|
110
104
|
logger.warning("Warning: Both selections and validation_set_id provided. Ignoring validation_set_id.")
|
|
111
|
-
|
|
112
|
-
if not selections:
|
|
113
|
-
selections = self.__get_selections(validation_set_id, labeling_amount=default_labeling_amount)
|
|
114
105
|
|
|
115
106
|
prompts_metadata = [PromptMetadata(prompt=prompt) for prompt in contexts] if contexts else None
|
|
116
107
|
sentence_metadata = [SelectWordsMetadata(select_words=sentence) for sentence in sentences] if sentences else None
|
|
@@ -135,6 +126,7 @@ class RapidataOrderManager:
|
|
|
135
126
|
._filters(filters)
|
|
136
127
|
._selections(selections)
|
|
137
128
|
._settings(settings)
|
|
129
|
+
._validation_set_id(validation_set_id if not selections else None)
|
|
138
130
|
._priority(self.__priority)
|
|
139
131
|
._create()
|
|
140
132
|
)
|
|
@@ -398,7 +390,6 @@ class RapidataOrderManager:
|
|
|
398
390
|
filters=filters,
|
|
399
391
|
selections=selections,
|
|
400
392
|
settings=settings,
|
|
401
|
-
default_labeling_amount=1,
|
|
402
393
|
private_notes=private_notes
|
|
403
394
|
)
|
|
404
395
|
|
|
@@ -451,7 +442,6 @@ class RapidataOrderManager:
|
|
|
451
442
|
selections=selections,
|
|
452
443
|
settings=settings,
|
|
453
444
|
sentences=sentences,
|
|
454
|
-
default_labeling_amount=2,
|
|
455
445
|
private_notes=private_notes
|
|
456
446
|
)
|
|
457
447
|
|
|
@@ -623,7 +613,6 @@ class RapidataOrderManager:
|
|
|
623
613
|
filters=filters,
|
|
624
614
|
selections=selections,
|
|
625
615
|
settings=settings,
|
|
626
|
-
default_labeling_amount=2,
|
|
627
616
|
private_notes=private_notes
|
|
628
617
|
)
|
|
629
618
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
rapidata/__init__.py,sha256=
|
|
2
|
-
rapidata/api_client/__init__.py,sha256
|
|
1
|
+
rapidata/__init__.py,sha256=lZGJTZWN6zdNSbKfUglVkPO3Hr0Buj1qlU9GBGUYxq4,865
|
|
2
|
+
rapidata/api_client/__init__.py,sha256=BgSOExnifSldFqbuk1ZWdHbrLKlntelU0IjKYUFf3MM,33738
|
|
3
3
|
rapidata/api_client/api/__init__.py,sha256=V_nI5gljvhY0TmFLOdzpys9e1l9J6PokA8IxeYmynyg,1422
|
|
4
|
-
rapidata/api_client/api/benchmark_api.py,sha256=
|
|
4
|
+
rapidata/api_client/api/benchmark_api.py,sha256=cHyMXlPRmOq0a4ltq4neuCOnIALQ4gEgTIJloIKCejI,129276
|
|
5
5
|
rapidata/api_client/api/campaign_api.py,sha256=406gNDALFb0sJhfx727ZM5_0GDX4iB0w5ym2dExLm4g,49894
|
|
6
6
|
rapidata/api_client/api/client_api.py,sha256=KKgUrEKfqmEAqUCRqcYKRb6G3GLwD6R-JSUsShmo7r8,54313
|
|
7
7
|
rapidata/api_client/api/coco_api.py,sha256=d1ypa-JfIoPFEJwn3l-INZM5bS2wB1ifuJuvYXLSRC4,24165
|
|
@@ -12,7 +12,7 @@ rapidata/api_client/api/dataset_api.py,sha256=96CitdOEPmMxNJyLQoX1yj4M68gCIsTAk-
|
|
|
12
12
|
rapidata/api_client/api/evaluation_workflow_api.py,sha256=E0Phmx54jzXx7LZYGquTqzZSrX2aE5PS9rAs5HdDjvs,15151
|
|
13
13
|
rapidata/api_client/api/feedback_api.py,sha256=-ZI2-1HtQ7wAzBKClgXMmMHtYdgoZtWrpQql3p51qp0,11589
|
|
14
14
|
rapidata/api_client/api/identity_api.py,sha256=LmK6cTXssNjCa1BteOMc8P4FsyRiHQ_Kr30vmWIAYko,55093
|
|
15
|
-
rapidata/api_client/api/leaderboard_api.py,sha256=
|
|
15
|
+
rapidata/api_client/api/leaderboard_api.py,sha256=7h-nUh8EhMo84slSRE2EErZr9rRxiN6P0TBEHFKSIb8,177224
|
|
16
16
|
rapidata/api_client/api/newsletter_api.py,sha256=3NU6HO5Gtm-RH-nx5hcp2CCE4IZmWHwTfCLMMz-Xpq4,22655
|
|
17
17
|
rapidata/api_client/api/order_api.py,sha256=BfMsOGSovNizk1prukw18wH1-e0LrmmsCJy-vQhZdq4,210747
|
|
18
18
|
rapidata/api_client/api/pipeline_api.py,sha256=s1_0GG3Rr-_yFzZ0TcBAgNGVrbQX_cjx2tnv3-1CmZw,96625
|
|
@@ -27,7 +27,7 @@ rapidata/api_client/api_client.py,sha256=EDhxAOUc5JFWvFsF1zc726Q7GoEFkuB8uor5SlG
|
|
|
27
27
|
rapidata/api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
28
28
|
rapidata/api_client/configuration.py,sha256=g472vHVPLBotq8EkfSXP4sbp7xnn-3sb8O8BBlRWK1I,15931
|
|
29
29
|
rapidata/api_client/exceptions.py,sha256=eLLd1fxM0Ygf3IIG6aNx9hdy79drst5Cem0UjI_NamM,5978
|
|
30
|
-
rapidata/api_client/models/__init__.py,sha256=
|
|
30
|
+
rapidata/api_client/models/__init__.py,sha256=HnxPQRDj_6h0FLeItYyO5anP8kxqMI53cWuzCDKfRYM,31775
|
|
31
31
|
rapidata/api_client/models/ab_test_selection.py,sha256=xQcE1BgKSnkTcmIuroeVOAQcAhGkHLlMP9XjakMFgDc,4327
|
|
32
32
|
rapidata/api_client/models/ab_test_selection_a_inner.py,sha256=VsCi27NBGxAtupB_sQZCzUEsTNNgSGV_Mo-Fi0UY1Jw,11657
|
|
33
33
|
rapidata/api_client/models/add_campaign_artifact_result.py,sha256=4IvFVS-tLlL6eHsWp-IZ_ul5T30-h3YEwd2B5ioBbgY,2582
|
|
@@ -206,9 +206,9 @@ rapidata/api_client/models/file_asset_model1_metadata_inner.py,sha256=eo2q1M0mDa
|
|
|
206
206
|
rapidata/api_client/models/file_asset_model2.py,sha256=Chw6rpZcIY9w_VLaJ_7sJuIHeRJtEtp-INBRnu1mD5A,3709
|
|
207
207
|
rapidata/api_client/models/file_asset_model_metadata_inner.py,sha256=nLkvLuLUx9pahaAICIGiNm2BqvdPs5dTbZgwmOqYwLA,12263
|
|
208
208
|
rapidata/api_client/models/file_asset_model_metadata_value.py,sha256=KiA2BENesZtnZTcWAwp0mDCwl8RtOeJ39nJsETkGBiw,17759
|
|
209
|
-
rapidata/api_client/models/file_type.py,sha256=
|
|
210
|
-
rapidata/api_client/models/file_type_metadata.py,sha256=
|
|
211
|
-
rapidata/api_client/models/file_type_metadata_model.py,sha256=
|
|
209
|
+
rapidata/api_client/models/file_type.py,sha256=t7qrK5oEaVWWg7pis5mO2BviaVNuAUh7O1SNib_kfGw,783
|
|
210
|
+
rapidata/api_client/models/file_type_metadata.py,sha256=qvRJ0SWEy2mPfvjGAc1GV5AMRjOm4EMXRAQ-sTupv6Q,3412
|
|
211
|
+
rapidata/api_client/models/file_type_metadata_model.py,sha256=1BHfr0wk3HQSNmMTDWdROPtLsPwE88Z2D1YaEnOte7E,3308
|
|
212
212
|
rapidata/api_client/models/filter.py,sha256=-gje_jVjRXyeguRj9yGuHgyi53hn871Z_2ULs_5yVr8,4541
|
|
213
213
|
rapidata/api_client/models/filter_operator.py,sha256=hVWuGOU6iseDxdJCG4E-b5Pbb8w3rCLT26ukvmwx6G0,889
|
|
214
214
|
rapidata/api_client/models/form_file_wrapper.py,sha256=1KSzAKKGE_-yXTyIyjHi5ctc_CrGCRfkX3EMqlW0IFA,4208
|
|
@@ -376,7 +376,7 @@ rapidata/api_client/models/probabilistic_attach_category_referee_info.py,sha256=
|
|
|
376
376
|
rapidata/api_client/models/problem_details.py,sha256=00OWbk93SWXdEVNs8rceJq6CAlG4KIRYRR1sqasZ35Q,4506
|
|
377
377
|
rapidata/api_client/models/prompt_asset_metadata_input.py,sha256=UAcgFo_lj12aWsUW1sOre-fFCDqhOIE30yM8ZYnwaHs,3487
|
|
378
378
|
rapidata/api_client/models/prompt_asset_metadata_input_asset.py,sha256=lZpDKEIFMRS2wIT7GgHTJjH7sl9axGjHgwYHuwLwCdo,7186
|
|
379
|
-
rapidata/api_client/models/prompt_by_benchmark_result.py,sha256=
|
|
379
|
+
rapidata/api_client/models/prompt_by_benchmark_result.py,sha256=4cM4NqxtGjiIaOdnTWWoXhIr-2M0NZoaKrQXhUcm2_M,3767
|
|
380
380
|
rapidata/api_client/models/prompt_by_benchmark_result_paged_result.py,sha256=v6KQCQCfePRbpge5PfNRkjUZmoC5B0OVs6tIYGCuwXY,3559
|
|
381
381
|
rapidata/api_client/models/prompt_by_leaderboard_result.py,sha256=KRf0XbpOBjCwZPx4VPZk5MFRV7J-KEZG5yUHAC3ODKo,2679
|
|
382
382
|
rapidata/api_client/models/prompt_by_leaderboard_result_paged_result.py,sha256=xOR0FR1Q1JM-DhWircDWLoBOyr8PmXIUgEDiPgmnRcc,3575
|
|
@@ -418,6 +418,9 @@ rapidata/api_client/models/request_password_reset_command.py,sha256=6bSYVzN3KNKd
|
|
|
418
418
|
rapidata/api_client/models/response_count_user_filter_model.py,sha256=oKDakECJuzoRk37epPUq_qBipZTMCrUL2ETLFiKR0T0,3650
|
|
419
419
|
rapidata/api_client/models/retrieval_mode.py,sha256=WkPWR7GdDjILKm8oM7QzoBQjXT6K0Gtk1bWQ5nSnR-4,792
|
|
420
420
|
rapidata/api_client/models/root_filter.py,sha256=oBtXjKE0i3m_HmD1XeHwaLCFFQRkpkWM25CJP-yiaNE,3377
|
|
421
|
+
rapidata/api_client/models/run_status.py,sha256=wtGbdMPDcpR35pMbczVABkYfERTWnocMon2s-uaaaUM,798
|
|
422
|
+
rapidata/api_client/models/runs_by_leaderboard_result.py,sha256=5sRSV7d9rxjBbdTnWk10ke1GW4jVKZ8O5iSMclthryk,3581
|
|
423
|
+
rapidata/api_client/models/runs_by_leaderboard_result_paged_result.py,sha256=Ts5gkkQLKIbISLay6xlVYdu0vyXxAwtY7mwQMKobC-Y,3559
|
|
421
424
|
rapidata/api_client/models/scrub_payload.py,sha256=tX-QU_a8GUQWBPb1GofGLFupucZF5TY2LUpqdyfHDSI,2920
|
|
422
425
|
rapidata/api_client/models/scrub_range.py,sha256=2P__eZ4HeAxWcjFkp-p938Ih8GHf0rJea18sIGxUN0A,2527
|
|
423
426
|
rapidata/api_client/models/scrub_rapid_blueprint.py,sha256=x19PHjchZdhrvnsmRpxOY8_PVlXS5KCGcN7Jluv2QjQ,2956
|
|
@@ -477,9 +480,11 @@ rapidata/api_client/models/translated_prompt_metadata_model.py,sha256=BRKheCvA8e
|
|
|
477
480
|
rapidata/api_client/models/translated_string.py,sha256=AeftEOw-sR4sMaQNOPy5iSo38kXmbyMIi7MmpbLvYew,2900
|
|
478
481
|
rapidata/api_client/models/unlock_order_result.py,sha256=xAyBfOotLJ3mgaIjin7k3b-KLLQLJDwuxMfhkUMJr1Y,2561
|
|
479
482
|
rapidata/api_client/models/update_access_model.py,sha256=E5rpK2aqzUfVYYsz2xAJ64wIluzZs2uf8GM14q5WCKs,2653
|
|
483
|
+
rapidata/api_client/models/update_benchmark_name_model.py,sha256=ve8LzZM92Zcl_kCNF-ymjzX8_EY7kvj2jLorXxqT0fo,2604
|
|
480
484
|
rapidata/api_client/models/update_campaign_model.py,sha256=9mCp3fQZqtecsCQS1SBbfNyESWxTD9Y7t8R9_21NLlQ,3451
|
|
481
485
|
rapidata/api_client/models/update_dataset_name_model.py,sha256=IeGRrxo6G2fKfMwnoBFYj4BW9ksGo_8db21VcLYfLvc,2599
|
|
482
486
|
rapidata/api_client/models/update_dimensions_model.py,sha256=jDg2114Y14AxcQHg_C6oTxMZ17Cq4vEQRtzeNjN70dk,2591
|
|
487
|
+
rapidata/api_client/models/update_leaderboard_name_model.py,sha256=QmEy8MNkrQYyJtXR91MKN1j511YFIIW-ovN3MxvFoWw,2614
|
|
483
488
|
rapidata/api_client/models/update_order_model.py,sha256=RUlxnzLqO6o-w5EEPb8wv1ANRKpkSbs8PhGM42T35uw,2570
|
|
484
489
|
rapidata/api_client/models/update_order_name_model.py,sha256=Cm8qZUJKgx1JTgkhlJcVNdLwPnRV8gqeeo7G4bVDOS4,2582
|
|
485
490
|
rapidata/api_client/models/update_validation_rapid_model.py,sha256=yCmIdsywjK1CsVTeUWz6oFfwmrSXc030_gVWrxwScuE,4083
|
|
@@ -519,7 +524,7 @@ rapidata/api_client/models/workflow_split_model_filter_configs_inner.py,sha256=1
|
|
|
519
524
|
rapidata/api_client/models/workflow_state.py,sha256=5LAK1se76RCoozeVB6oxMPb8p_5bhLZJqn7q5fFQWis,850
|
|
520
525
|
rapidata/api_client/models/zip_entry_file_wrapper.py,sha256=06CoNJD3x511K3rnSmkrwwhc9GbQxwxF-c0ldOyJbAs,4240
|
|
521
526
|
rapidata/api_client/rest.py,sha256=rtIMcgINZOUaDFaJIinJkXRSddNJmXvMRMfgO2Ezk2o,10835
|
|
522
|
-
rapidata/api_client_README.md,sha256=-
|
|
527
|
+
rapidata/api_client_README.md,sha256=-CgEFsbrZGqmyS0tOlIgbgij-ApyqQtdUJcye0kmdXs,58480
|
|
523
528
|
rapidata/rapidata_client/__init__.py,sha256=MLl41ZPDYezE9ookAjHS75wFqfCTOKq-U01GJbHFjrA,1133
|
|
524
529
|
rapidata/rapidata_client/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
525
530
|
rapidata/rapidata_client/api/rapidata_exception.py,sha256=BIdmHRrJUGW-Mqhp1H_suemZaR6w9TgjWq-ZW5iUPdQ,3878
|
|
@@ -532,9 +537,9 @@ rapidata/rapidata_client/assets/_text_asset.py,sha256=bZHBrvbHSzF0qePoJ5LqYq__2Z
|
|
|
532
537
|
rapidata/rapidata_client/assets/data_type_enum.py,sha256=ELC-ymeKnQlfNAzfqsI7MmUuRiGYamCHVcTc0qR6Fm4,185
|
|
533
538
|
rapidata/rapidata_client/benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
534
539
|
rapidata/rapidata_client/benchmark/leaderboard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
535
|
-
rapidata/rapidata_client/benchmark/leaderboard/rapidata_leaderboard.py,sha256=
|
|
536
|
-
rapidata/rapidata_client/benchmark/rapidata_benchmark.py,sha256=
|
|
537
|
-
rapidata/rapidata_client/benchmark/rapidata_benchmark_manager.py,sha256=
|
|
540
|
+
rapidata/rapidata_client/benchmark/leaderboard/rapidata_leaderboard.py,sha256=BDI0xJkTumbZy4dYqkzXy074jC9eaVWoJJDZ84uvatE,3906
|
|
541
|
+
rapidata/rapidata_client/benchmark/rapidata_benchmark.py,sha256=2mMVWX1H4HVoI00QY34FSn1X5zrRUUplTZz2U0LNfDI,13473
|
|
542
|
+
rapidata/rapidata_client/benchmark/rapidata_benchmark_manager.py,sha256=_0ot7zRj1de5admMO7NZ7qVSCkwTYu6xOZI5dUkITuI,4592
|
|
538
543
|
rapidata/rapidata_client/country_codes/__init__.py,sha256=FB9Dcks44J6C6YBSYmTmNZ71tE130x6NO_3aLJ8fKzQ,40
|
|
539
544
|
rapidata/rapidata_client/country_codes/country_codes.py,sha256=ePHqeb7y9DWQZAnddBzPx1puYBcrgUjdR2sbFijuFD8,283
|
|
540
545
|
rapidata/rapidata_client/demographic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -569,9 +574,9 @@ rapidata/rapidata_client/metadata/_public_text_metadata.py,sha256=uXavDp1ucy_9u5
|
|
|
569
574
|
rapidata/rapidata_client/metadata/_select_words_metadata.py,sha256=-MK5yQDi_G3BKEes6aaVyCcobB-sEy29b6bfo5f4pic,594
|
|
570
575
|
rapidata/rapidata_client/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
571
576
|
rapidata/rapidata_client/order/_rapidata_dataset.py,sha256=5OIeIDvqAnb38KfjTsgj5JN7k5xKRhC-1_G-VulzO2c,21216
|
|
572
|
-
rapidata/rapidata_client/order/_rapidata_order_builder.py,sha256=
|
|
577
|
+
rapidata/rapidata_client/order/_rapidata_order_builder.py,sha256=PyRXNazBffj98Qp7S09QmuIGzNTE-YoUhI8YEvlSCps,12838
|
|
573
578
|
rapidata/rapidata_client/order/rapidata_order.py,sha256=bYTa7GtR_TEvfAZJZ1Aliy4yPsc-wo8L8tyqtegupyM,12675
|
|
574
|
-
rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=
|
|
579
|
+
rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=Kdup91It_M4zGveZER-CjTG0e5NJTSJzBiRqGufuT-I,37778
|
|
575
580
|
rapidata/rapidata_client/order/rapidata_results.py,sha256=ZY0JyHMBZlR6-t6SqKt2OLEO6keR_KvKg9Wk6_I29x4,8653
|
|
576
581
|
rapidata/rapidata_client/rapidata_client.py,sha256=jTkpu0YcizoxAzbfNdnY1S0xXX6Q0KEMi8boo0f2F5c,4274
|
|
577
582
|
rapidata/rapidata_client/referee/__init__.py,sha256=q0Hv9nmfEpyChejtyMLT8hWKL0vTTf_UgUXPYNJ-H6M,153
|
|
@@ -625,7 +630,7 @@ rapidata/service/__init__.py,sha256=s9bS1AJZaWIhLtJX_ZA40_CK39rAAkwdAmymTMbeWl4,
|
|
|
625
630
|
rapidata/service/credential_manager.py,sha256=pUEEtp6VrFWYhfUUtyqmS0AlRqe2Y0kFkY6o22IT4KM,8682
|
|
626
631
|
rapidata/service/local_file_service.py,sha256=pgorvlWcx52Uh3cEG6VrdMK_t__7dacQ_5AnfY14BW8,877
|
|
627
632
|
rapidata/service/openapi_service.py,sha256=xoGBACpUhG0H-tadSBa8A91LHyfI7n-FCT2JlrERqco,5221
|
|
628
|
-
rapidata-2.
|
|
629
|
-
rapidata-2.
|
|
630
|
-
rapidata-2.
|
|
631
|
-
rapidata-2.
|
|
633
|
+
rapidata-2.30.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
634
|
+
rapidata-2.30.0.dist-info/METADATA,sha256=O2h84JP3EaVGDaxeuGTLcnerkEES1kaCB12aY6WOWuc,1264
|
|
635
|
+
rapidata-2.30.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
636
|
+
rapidata-2.30.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|