rapidata 2.40.7__py3-none-any.whl → 2.41.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 +2 -1
- rapidata/api_client/__init__.py +5 -3
- rapidata/api_client/api/benchmark_api.py +610 -7
- rapidata/api_client/api/campaign_api.py +283 -0
- rapidata/api_client/api/evaluation_workflow_api.py +18 -72
- rapidata/api_client/api/identity_api.py +0 -278
- rapidata/api_client/api/leaderboard_api.py +9 -9
- rapidata/api_client/api/validation_set_api.py +5 -15
- rapidata/api_client/models/__init__.py +5 -3
- rapidata/api_client/models/benchmark_query_result.py +3 -1
- rapidata/api_client/models/create_benchmark_participant_result.py +2 -2
- rapidata/api_client/models/create_benchmark_prompt_result.py +87 -0
- rapidata/api_client/models/get_benchmark_by_id_result.py +4 -2
- rapidata/api_client/models/get_evaluation_workflow_results_model.py +114 -0
- rapidata/api_client/models/get_participant_by_id_result.py +2 -4
- rapidata/api_client/models/get_standing_by_id_result.py +2 -9
- rapidata/api_client/models/labeling_selection.py +9 -2
- rapidata/api_client/models/participant_by_benchmark.py +1 -3
- rapidata/api_client/models/standing_by_benchmark.py +113 -0
- rapidata/api_client/models/standing_by_leaderboard.py +1 -3
- rapidata/api_client/models/standings_by_benchmark_result.py +95 -0
- rapidata/api_client/models/sticky_state.py +1 -0
- rapidata/api_client/models/update_benchmark_model.py +5 -3
- rapidata/api_client/models/update_priority_model.py +87 -0
- rapidata/api_client/models/validation_set_model.py +32 -2
- rapidata/api_client_README.md +9 -5
- rapidata/rapidata_client/__init__.py +1 -0
- rapidata/rapidata_client/settings/__init__.py +1 -0
- rapidata/rapidata_client/settings/rapidata_settings.py +3 -0
- rapidata/rapidata_client/settings/swap_context_instruction.py +20 -0
- rapidata/rapidata_client/validation/rapids/rapids.py +13 -0
- {rapidata-2.40.7.dist-info → rapidata-2.41.0.dist-info}/METADATA +1 -1
- {rapidata-2.40.7.dist-info → rapidata-2.41.0.dist-info}/RECORD +35 -29
- {rapidata-2.40.7.dist-info → rapidata-2.41.0.dist-info}/LICENSE +0 -0
- {rapidata-2.40.7.dist-info → rapidata-2.41.0.dist-info}/WHEEL +0 -0
rapidata/api_client_README.md
CHANGED
|
@@ -74,18 +74,21 @@ Class | Method | HTTP request | Description
|
|
|
74
74
|
------------ | ------------- | ------------- | -------------
|
|
75
75
|
*BenchmarkApi* | [**benchmark_benchmark_id_delete**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_delete) | **DELETE** /benchmark/{benchmarkId} | Deletes a single benchmark.
|
|
76
76
|
*BenchmarkApi* | [**benchmark_benchmark_id_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_get) | **GET** /benchmark/{benchmarkId} | Returns a single benchmark by its ID.
|
|
77
|
+
*BenchmarkApi* | [**benchmark_benchmark_id_leaderboards_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_leaderboards_get) | **GET** /benchmark/{benchmarkId}/leaderboards | Queries all leaderboards for the current user's benchmarks.
|
|
77
78
|
*BenchmarkApi* | [**benchmark_benchmark_id_participants_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_participants_get) | **GET** /benchmark/{benchmarkId}/participants | Query all participants within a benchmark
|
|
78
79
|
*BenchmarkApi* | [**benchmark_benchmark_id_participants_post**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_participants_post) | **POST** /benchmark/{benchmarkId}/participants | Creates a participant in a benchmark.
|
|
79
80
|
*BenchmarkApi* | [**benchmark_benchmark_id_patch**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_patch) | **PATCH** /benchmark/{benchmarkId} | Updates a benchmark using patch semantics.
|
|
80
81
|
*BenchmarkApi* | [**benchmark_benchmark_id_prompt_post**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_prompt_post) | **POST** /benchmark/{benchmarkId}/prompt | Adds a new prompt to a benchmark.
|
|
81
82
|
*BenchmarkApi* | [**benchmark_benchmark_id_prompts_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_prompts_get) | **GET** /benchmark/{benchmarkId}/prompts | Returns the paged prompts of a benchmark by its ID.
|
|
82
83
|
*BenchmarkApi* | [**benchmark_benchmark_id_samples_identifier_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_samples_identifier_get) | **GET** /benchmark/{benchmarkId}/samples/{identifier} | Returns the paged prompts of a benchmark by its ID.
|
|
84
|
+
*BenchmarkApi* | [**benchmark_benchmark_id_standings_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_standings_get) | **GET** /benchmark/{benchmarkId}/standings | Queries all the standings for a benchmark by its ID.
|
|
83
85
|
*BenchmarkApi* | [**benchmark_benchmark_id_tags_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_benchmark_id_tags_get) | **GET** /benchmark/{benchmarkId}/tags | Query all tags within a benchmark
|
|
84
86
|
*BenchmarkApi* | [**benchmark_post**](rapidata/api_client/docs/BenchmarkApi.md#benchmark_post) | **POST** /benchmark | Creates a benchmark
|
|
85
87
|
*BenchmarkApi* | [**benchmarks_get**](rapidata/api_client/docs/BenchmarkApi.md#benchmarks_get) | **GET** /benchmarks | Queries all benchmarks of the user.
|
|
86
88
|
*CampaignApi* | [**campaign_boost_put**](rapidata/api_client/docs/CampaignApi.md#campaign_boost_put) | **PUT** /campaign/boost | Updates the boost with manual boosts.
|
|
87
89
|
*CampaignApi* | [**campaign_boost_status_get**](rapidata/api_client/docs/CampaignApi.md#campaign_boost_status_get) | **GET** /campaign/boost/status | Gets the status of the boost.
|
|
88
90
|
*CampaignApi* | [**campaign_campaign_id_pause_post**](rapidata/api_client/docs/CampaignApi.md#campaign_campaign_id_pause_post) | **POST** /campaign/{campaignId}/pause | Pauses a campaign.
|
|
91
|
+
*CampaignApi* | [**campaign_campaign_id_priority_put**](rapidata/api_client/docs/CampaignApi.md#campaign_campaign_id_priority_put) | **PUT** /campaign/{campaignId}/priority | Updates the priority of a campaign.
|
|
89
92
|
*CampaignApi* | [**campaign_campaign_id_resume_post**](rapidata/api_client/docs/CampaignApi.md#campaign_campaign_id_resume_post) | **POST** /campaign/{campaignId}/resume | Resumes a campaign.
|
|
90
93
|
*CampaignApi* | [**campaign_monitor_get**](rapidata/api_client/docs/CampaignApi.md#campaign_monitor_get) | **GET** /campaign/monitor | The monitor endpoint is used to monitor the health of the service
|
|
91
94
|
*CampaignApi* | [**campaigns_get**](rapidata/api_client/docs/CampaignApi.md#campaigns_get) | **GET** /campaigns | Queries orders based on a filter, page, and sort criteria.
|
|
@@ -124,7 +127,6 @@ Class | Method | HTTP request | Description
|
|
|
124
127
|
*IdentityApi* | [**identity_bridge_token_post**](rapidata/api_client/docs/IdentityApi.md#identity_bridge_token_post) | **POST** /identity/bridge-token | Creates a pair of read and write keys for a client. The write key is used to store the authentication result. The read key is used to retrieve the authentication result.
|
|
125
128
|
*IdentityApi* | [**identity_google_one_tap_post**](rapidata/api_client/docs/IdentityApi.md#identity_google_one_tap_post) | **POST** /identity/google-one-tap | Signs in a user using a token received from Google One Tap.
|
|
126
129
|
*IdentityApi* | [**identity_referrer_post**](rapidata/api_client/docs/IdentityApi.md#identity_referrer_post) | **POST** /identity/referrer | Sets the referrer for the current customer.
|
|
127
|
-
*IdentityApi* | [**identity_temporary_post**](rapidata/api_client/docs/IdentityApi.md#identity_temporary_post) | **POST** /identity/temporary | Registers and logs in a temporary customer.
|
|
128
130
|
*LeaderboardApi* | [**benchmark_standing_leaderboard_id_participant_id_get**](rapidata/api_client/docs/LeaderboardApi.md#benchmark_standing_leaderboard_id_participant_id_get) | **GET** /benchmark/standing/{leaderboardId}/{participantId} | Gets a standing by leaderboardId and participantId.
|
|
129
131
|
*LeaderboardApi* | [**leaderboard_leaderboard_id_boost_post**](rapidata/api_client/docs/LeaderboardApi.md#leaderboard_leaderboard_id_boost_post) | **POST** /leaderboard/{leaderboardId}/boost | Boosts a subset of participants within a leaderboard.
|
|
130
132
|
*LeaderboardApi* | [**leaderboard_leaderboard_id_delete**](rapidata/api_client/docs/LeaderboardApi.md#leaderboard_leaderboard_id_delete) | **DELETE** /leaderboard/{leaderboardId} | Deletes a leaderboard by its ID.
|
|
@@ -133,7 +135,7 @@ Class | Method | HTTP request | Description
|
|
|
133
135
|
*LeaderboardApi* | [**leaderboard_leaderboard_id_runs_get**](rapidata/api_client/docs/LeaderboardApi.md#leaderboard_leaderboard_id_runs_get) | **GET** /leaderboard/{leaderboardId}/runs | Gets the runs related to a leaderboard
|
|
134
136
|
*LeaderboardApi* | [**leaderboard_leaderboard_id_standings_get**](rapidata/api_client/docs/LeaderboardApi.md#leaderboard_leaderboard_id_standings_get) | **GET** /leaderboard/{leaderboardId}/standings | queries all the participants connected to leaderboard by its ID.
|
|
135
137
|
*LeaderboardApi* | [**leaderboard_post**](rapidata/api_client/docs/LeaderboardApi.md#leaderboard_post) | **POST** /leaderboard | Creates a new leaderboard with the specified name and criteria.
|
|
136
|
-
*LeaderboardApi* | [**leaderboards_get**](rapidata/api_client/docs/LeaderboardApi.md#leaderboards_get) | **GET** /leaderboards | Queries all leaderboards
|
|
138
|
+
*LeaderboardApi* | [**leaderboards_get**](rapidata/api_client/docs/LeaderboardApi.md#leaderboards_get) | **GET** /leaderboards | Queries all leaderboards for a specific benchmark.
|
|
137
139
|
*NewsletterApi* | [**newsletter_subscribe_post**](rapidata/api_client/docs/NewsletterApi.md#newsletter_subscribe_post) | **POST** /newsletter/subscribe | Signs a user up to the newsletter.
|
|
138
140
|
*NewsletterApi* | [**newsletter_unsubscribe_post**](rapidata/api_client/docs/NewsletterApi.md#newsletter_unsubscribe_post) | **POST** /newsletter/unsubscribe | Unsubscribes a user from the newsletter.
|
|
139
141
|
*OrderApi* | [**order_complex_post**](rapidata/api_client/docs/OrderApi.md#order_complex_post) | **POST** /order/complex | Creates a new order with a custom pipeline.
|
|
@@ -209,7 +211,6 @@ Class | Method | HTTP request | Description
|
|
|
209
211
|
- [AddValidationRapidModel](rapidata/api_client/docs/AddValidationRapidModel.md)
|
|
210
212
|
- [AddValidationRapidModelPayload](rapidata/api_client/docs/AddValidationRapidModelPayload.md)
|
|
211
213
|
- [AddValidationRapidModelTruth](rapidata/api_client/docs/AddValidationRapidModelTruth.md)
|
|
212
|
-
- [AddValidationRapidResult](rapidata/api_client/docs/AddValidationRapidResult.md)
|
|
213
214
|
- [AgeGroup](rapidata/api_client/docs/AgeGroup.md)
|
|
214
215
|
- [AgeUserFilterModel](rapidata/api_client/docs/AgeUserFilterModel.md)
|
|
215
216
|
- [AggregatorType](rapidata/api_client/docs/AggregatorType.md)
|
|
@@ -277,6 +278,7 @@ Class | Method | HTTP request | Description
|
|
|
277
278
|
- [CreateBenchmarkModel](rapidata/api_client/docs/CreateBenchmarkModel.md)
|
|
278
279
|
- [CreateBenchmarkParticipantModel](rapidata/api_client/docs/CreateBenchmarkParticipantModel.md)
|
|
279
280
|
- [CreateBenchmarkParticipantResult](rapidata/api_client/docs/CreateBenchmarkParticipantResult.md)
|
|
281
|
+
- [CreateBenchmarkPromptResult](rapidata/api_client/docs/CreateBenchmarkPromptResult.md)
|
|
280
282
|
- [CreateBenchmarkResult](rapidata/api_client/docs/CreateBenchmarkResult.md)
|
|
281
283
|
- [CreateBridgeTokenResult](rapidata/api_client/docs/CreateBridgeTokenResult.md)
|
|
282
284
|
- [CreateClientModel](rapidata/api_client/docs/CreateClientModel.md)
|
|
@@ -361,6 +363,7 @@ Class | Method | HTTP request | Description
|
|
|
361
363
|
- [GetDatapointByIdResult](rapidata/api_client/docs/GetDatapointByIdResult.md)
|
|
362
364
|
- [GetDatasetByIdResult](rapidata/api_client/docs/GetDatasetByIdResult.md)
|
|
363
365
|
- [GetDatasetProgressResult](rapidata/api_client/docs/GetDatasetProgressResult.md)
|
|
366
|
+
- [GetEvaluationWorkflowResultsModel](rapidata/api_client/docs/GetEvaluationWorkflowResultsModel.md)
|
|
364
367
|
- [GetFailedDatapointsResult](rapidata/api_client/docs/GetFailedDatapointsResult.md)
|
|
365
368
|
- [GetLeaderboardByIdResult](rapidata/api_client/docs/GetLeaderboardByIdResult.md)
|
|
366
369
|
- [GetOrderByIdResult](rapidata/api_client/docs/GetOrderByIdResult.md)
|
|
@@ -496,8 +499,6 @@ Class | Method | HTTP request | Description
|
|
|
496
499
|
- [RapidSkippedModel](rapidata/api_client/docs/RapidSkippedModel.md)
|
|
497
500
|
- [RapidState](rapidata/api_client/docs/RapidState.md)
|
|
498
501
|
- [ReadBridgeTokenKeysResult](rapidata/api_client/docs/ReadBridgeTokenKeysResult.md)
|
|
499
|
-
- [RegisterTemporaryCustomerModel](rapidata/api_client/docs/RegisterTemporaryCustomerModel.md)
|
|
500
|
-
- [RegisterTemporaryCustomerResult](rapidata/api_client/docs/RegisterTemporaryCustomerResult.md)
|
|
501
502
|
- [ReportModel](rapidata/api_client/docs/ReportModel.md)
|
|
502
503
|
- [ResponseCountFilter](rapidata/api_client/docs/ResponseCountFilter.md)
|
|
503
504
|
- [ResponseCountUserFilterModel](rapidata/api_client/docs/ResponseCountUserFilterModel.md)
|
|
@@ -530,9 +531,11 @@ Class | Method | HTTP request | Description
|
|
|
530
531
|
- [SortDirection](rapidata/api_client/docs/SortDirection.md)
|
|
531
532
|
- [SourceUrlMetadata](rapidata/api_client/docs/SourceUrlMetadata.md)
|
|
532
533
|
- [SourceUrlMetadataModel](rapidata/api_client/docs/SourceUrlMetadataModel.md)
|
|
534
|
+
- [StandingByBenchmark](rapidata/api_client/docs/StandingByBenchmark.md)
|
|
533
535
|
- [StandingByLeaderboard](rapidata/api_client/docs/StandingByLeaderboard.md)
|
|
534
536
|
- [StandingByLeaderboardPagedResult](rapidata/api_client/docs/StandingByLeaderboardPagedResult.md)
|
|
535
537
|
- [StandingStatus](rapidata/api_client/docs/StandingStatus.md)
|
|
538
|
+
- [StandingsByBenchmarkResult](rapidata/api_client/docs/StandingsByBenchmarkResult.md)
|
|
536
539
|
- [StandingsByLeaderboardResult](rapidata/api_client/docs/StandingsByLeaderboardResult.md)
|
|
537
540
|
- [StaticSelection](rapidata/api_client/docs/StaticSelection.md)
|
|
538
541
|
- [StickyState](rapidata/api_client/docs/StickyState.md)
|
|
@@ -572,6 +575,7 @@ Class | Method | HTTP request | Description
|
|
|
572
575
|
- [UpdateOrderNameModel](rapidata/api_client/docs/UpdateOrderNameModel.md)
|
|
573
576
|
- [UpdateParticipantModel](rapidata/api_client/docs/UpdateParticipantModel.md)
|
|
574
577
|
- [UpdateParticipantNameModel](rapidata/api_client/docs/UpdateParticipantNameModel.md)
|
|
578
|
+
- [UpdatePriorityModel](rapidata/api_client/docs/UpdatePriorityModel.md)
|
|
575
579
|
- [UpdatePromptTagsModel](rapidata/api_client/docs/UpdatePromptTagsModel.md)
|
|
576
580
|
- [UpdateShouldAlertModel](rapidata/api_client/docs/UpdateShouldAlertModel.md)
|
|
577
581
|
- [UpdateValidationRapidModel](rapidata/api_client/docs/UpdateValidationRapidModel.md)
|
|
@@ -7,4 +7,5 @@ from .play_video_until_the_end import PlayVideoUntilTheEnd
|
|
|
7
7
|
from .custom_setting import CustomSetting
|
|
8
8
|
from ._rapidata_setting import RapidataSetting
|
|
9
9
|
from .allow_neither_both import AllowNeitherBoth
|
|
10
|
+
from .swap_context_instruction import SwapContextInstruction
|
|
10
11
|
from .rapidata_settings import RapidataSettings
|
|
@@ -5,6 +5,7 @@ from rapidata.rapidata_client.settings import (
|
|
|
5
5
|
NoShuffle,
|
|
6
6
|
PlayVideoUntilTheEnd,
|
|
7
7
|
AllowNeitherBoth,
|
|
8
|
+
SwapContextInstruction,
|
|
8
9
|
)
|
|
9
10
|
|
|
10
11
|
|
|
@@ -21,6 +22,7 @@ class RapidataSettings:
|
|
|
21
22
|
no_shuffle (NoShuffle): Only for classification and compare tasks. If true, the order of the categories / images will not be shuffled and presented in the same order as specified.
|
|
22
23
|
play_video_until_the_end (PlayVideoUntilTheEnd): Allows users to only answer once the video has finished playing.
|
|
23
24
|
allow_neither_both (AllowNeitherBoth): Only for compare tasks. If true, the users will be able to select neither or both instead of exclusively one of the options.
|
|
25
|
+
swap_context_instruction (SwapContextInstruction): Swap the place of the context and instruction.
|
|
24
26
|
|
|
25
27
|
Example:
|
|
26
28
|
```python
|
|
@@ -37,3 +39,4 @@ class RapidataSettings:
|
|
|
37
39
|
no_shuffle = NoShuffle
|
|
38
40
|
play_video_until_the_end = PlayVideoUntilTheEnd
|
|
39
41
|
allow_neither_both = AllowNeitherBoth
|
|
42
|
+
swap_context_instruction = SwapContextInstruction
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from rapidata.rapidata_client.settings._rapidata_setting import RapidataSetting
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class SwapContextInstruction(RapidataSetting):
|
|
5
|
+
"""
|
|
6
|
+
Swap the place of the context and instruction.
|
|
7
|
+
|
|
8
|
+
If set to true, the instruction will be shown on top and the context below. if collapsed, only the instruction will be shown.
|
|
9
|
+
|
|
10
|
+
By default, the context will be shown on top and the instruction below.
|
|
11
|
+
|
|
12
|
+
Args:
|
|
13
|
+
value (bool): Whether to swap the place of the context and instruction.
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
def __init__(self, value: bool = True):
|
|
17
|
+
if not isinstance(value, bool):
|
|
18
|
+
raise ValueError("The value must be a boolean.")
|
|
19
|
+
|
|
20
|
+
super().__init__(key="swap_question_and_prompt", value=value)
|
|
@@ -30,6 +30,19 @@ class Rapid:
|
|
|
30
30
|
explanation: str | None = None,
|
|
31
31
|
settings: Sequence[RapidataSetting] | None = None,
|
|
32
32
|
):
|
|
33
|
+
if not isinstance(asset, (MediaAsset, TextAsset, MultiAsset)):
|
|
34
|
+
raise ValueError("Asset must be a MediaAsset, TextAsset, or MultiAsset")
|
|
35
|
+
if not isinstance(metadata, (list, type(None))):
|
|
36
|
+
raise ValueError("Metadata must be a list or None")
|
|
37
|
+
if metadata and not all(isinstance(meta, Metadata) for meta in metadata):
|
|
38
|
+
raise ValueError("Metadata must be a list of Metadata objects")
|
|
39
|
+
if not isinstance(settings, (list, type(None))):
|
|
40
|
+
raise ValueError("Settings must be a list or None")
|
|
41
|
+
if settings and not all(
|
|
42
|
+
isinstance(setting, RapidataSetting) for setting in settings
|
|
43
|
+
):
|
|
44
|
+
raise ValueError("Settings must be a list of RapidataSetting objects")
|
|
45
|
+
|
|
33
46
|
self.asset = asset
|
|
34
47
|
self.metadata = metadata
|
|
35
48
|
self.payload = payload
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
rapidata/__init__.py,sha256=
|
|
2
|
-
rapidata/api_client/__init__.py,sha256=
|
|
1
|
+
rapidata/__init__.py,sha256=Bzpb_tqjF7mmdtdZxH6CV58kUvm0C8I1gdlWsKlduOc,945
|
|
2
|
+
rapidata/api_client/__init__.py,sha256=eIesy_eZVZePF62wJYsWCO68jjK25lEmbciv83H1NWE,36181
|
|
3
3
|
rapidata/api_client/api/__init__.py,sha256=07qqwzQiBYt5V2BtnzbXhZL2cmVHATyZmCSGshIXLck,1603
|
|
4
|
-
rapidata/api_client/api/benchmark_api.py,sha256=
|
|
5
|
-
rapidata/api_client/api/campaign_api.py,sha256=
|
|
4
|
+
rapidata/api_client/api/benchmark_api.py,sha256=Ev_oZjEkmAn67OAguyFrgWMS2YgpCj-0W4zUktHaf_Q,146069
|
|
5
|
+
rapidata/api_client/api/campaign_api.py,sha256=w23m800qXWkdtuUDniA7TVQN7H_3q3KoD0ZDf6T9gG0,71804
|
|
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
|
|
8
8
|
rapidata/api_client/api/compare_workflow_api.py,sha256=BG_cNnR1UO48Jfy2_ZLEcR2mknD0wXbDYKHLNVt4Szw,12833
|
|
9
9
|
rapidata/api_client/api/customer_rapid_api.py,sha256=VpQF68Oiqf_QQI-WGzTdQP9y9wkyhp8sxAjnipaDDjA,89723
|
|
10
10
|
rapidata/api_client/api/datapoint_api.py,sha256=bLNOJWtk3TBMU5tvFBSIbDk34YwkyEHarJgrISN4J3w,21308
|
|
11
11
|
rapidata/api_client/api/dataset_api.py,sha256=DUCEfP7jlMAAMdvEa-47xq0mq3MGcyk4DA56f9OXZ2w,139572
|
|
12
|
-
rapidata/api_client/api/evaluation_workflow_api.py,sha256=
|
|
12
|
+
rapidata/api_client/api/evaluation_workflow_api.py,sha256=0I81FTCZwz8EMUDB76Nl-zUHFYM11javS4Sg71FruJc,12810
|
|
13
13
|
rapidata/api_client/api/feedback_api.py,sha256=-ZI2-1HtQ7wAzBKClgXMmMHtYdgoZtWrpQql3p51qp0,11589
|
|
14
|
-
rapidata/api_client/api/identity_api.py,sha256=
|
|
15
|
-
rapidata/api_client/api/leaderboard_api.py,sha256=
|
|
14
|
+
rapidata/api_client/api/identity_api.py,sha256=UnJzNHsvFJxWmTyHyfGh0k14Y-AKDxp168ukG4avRuo,43376
|
|
15
|
+
rapidata/api_client/api/leaderboard_api.py,sha256=LiYjuI7-2LGsZG1KY1DUrG7_2GExa9_AzAkVbe-x-fo,102053
|
|
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=6hD7a_8LVGuGdT_k1lE-gQKCWcSAcFMJO5Nsdc8xgbM,214715
|
|
18
18
|
rapidata/api_client/api/participant_api.py,sha256=dgaqllkhL3-O_RRYqYCVMOTjHDTXt8GWYMGRVlmoRmc,87595
|
|
@@ -24,13 +24,13 @@ rapidata/api_client/api/sample_api.py,sha256=56hg3RF_0zXtQ3UkwWSRcdKF_jLsVaL0j1b
|
|
|
24
24
|
rapidata/api_client/api/simple_workflow_api.py,sha256=yauSlkSwoZOl4P-1Wu0yU92GcEArpEd3xjFqImU2K1g,12763
|
|
25
25
|
rapidata/api_client/api/user_info_api.py,sha256=FuuA95Beeky-rnqIoSUe2-WQ7oVTfq0RElX0jfKXT0w,10042
|
|
26
26
|
rapidata/api_client/api/user_rapid_api.py,sha256=RXHAzSSGFohQqLUAZOKSaHt9EcT-7_n2vMto1SkSy4o,54323
|
|
27
|
-
rapidata/api_client/api/validation_set_api.py,sha256=
|
|
27
|
+
rapidata/api_client/api/validation_set_api.py,sha256=Y4i41eN9uHTkTjDYv6DFtAINZQHiW4Nc1B9Cmjp-_L8,166926
|
|
28
28
|
rapidata/api_client/api/workflow_api.py,sha256=a5gMW-E7Mie-OK74J5SRoV6Wl1D4-AFCCfpxQ8ewCkQ,66871
|
|
29
29
|
rapidata/api_client/api_client.py,sha256=EDhxAOUc5JFWvFsF1zc726Q7GoEFkuB8uor5SlGx9K4,27503
|
|
30
30
|
rapidata/api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
31
31
|
rapidata/api_client/configuration.py,sha256=g472vHVPLBotq8EkfSXP4sbp7xnn-3sb8O8BBlRWK1I,15931
|
|
32
32
|
rapidata/api_client/exceptions.py,sha256=eLLd1fxM0Ygf3IIG6aNx9hdy79drst5Cem0UjI_NamM,5978
|
|
33
|
-
rapidata/api_client/models/__init__.py,sha256=
|
|
33
|
+
rapidata/api_client/models/__init__.py,sha256=IhigGLrkG8GerjBFpLbIDnVjWeuEm_TG8R9ShTiZwXM,34037
|
|
34
34
|
rapidata/api_client/models/ab_test_selection.py,sha256=xQcE1BgKSnkTcmIuroeVOAQcAhGkHLlMP9XjakMFgDc,4327
|
|
35
35
|
rapidata/api_client/models/ab_test_selection_a_inner.py,sha256=lCogtlS-f7NhUa6UaUWPoQcs5SuW3WWJ6-aif354uNo,11657
|
|
36
36
|
rapidata/api_client/models/add_campaign_artifact_result.py,sha256=4IvFVS-tLlL6eHsWp-IZ_ul5T30-h3YEwd2B5ioBbgY,2582
|
|
@@ -62,7 +62,7 @@ rapidata/api_client/models/attach_category_rapid_blueprint.py,sha256=sdPTViyuCnE
|
|
|
62
62
|
rapidata/api_client/models/attach_category_result.py,sha256=xLM9576NxYblinC2bjUGAQ7eAqp8H1YK8i7_zS5S278,3095
|
|
63
63
|
rapidata/api_client/models/attach_category_truth.py,sha256=XAc0_cCEPP0iNEaak6ihK9_lExQSGboMBIlO6SebU6o,3062
|
|
64
64
|
rapidata/api_client/models/base_error.py,sha256=734KUVW0G_v0GXhU7SiQi4XXVeK5nd8N2hUs2YHzU7M,2562
|
|
65
|
-
rapidata/api_client/models/benchmark_query_result.py,sha256=
|
|
65
|
+
rapidata/api_client/models/benchmark_query_result.py,sha256=yJjxDsmyzy3x7-LvB7TscWaP055oonRcpRZRAP9l0_Y,3056
|
|
66
66
|
rapidata/api_client/models/benchmark_query_result_paged_result.py,sha256=cJdtI4L6ZmR8s6mnlagDXRON3CFUHMGnjN67VkVx9Ec,3534
|
|
67
67
|
rapidata/api_client/models/boost_leaderboard_model.py,sha256=FPT87eDxWC67Z64MCCAMW-8GX2wffjFRWSX-JsbwLlU,2907
|
|
68
68
|
rapidata/api_client/models/boost_mode.py,sha256=De9eewbkmBcWMK1w7ciDD1nMl3lwklti0lsm5EM3i8I,752
|
|
@@ -128,7 +128,8 @@ rapidata/api_client/models/country_filter.py,sha256=dkIDzAvlEQin_P-pCHfIvuch_LtU
|
|
|
128
128
|
rapidata/api_client/models/country_user_filter_model.py,sha256=8DjS-0yga8yRBMze691dU7IWOJYuw4iTo8ih3H132cs,2982
|
|
129
129
|
rapidata/api_client/models/create_benchmark_model.py,sha256=OSbjrqtZJhA2_oIDLGX4gKtG0b2-3LCMc6WV1tcLQUI,2573
|
|
130
130
|
rapidata/api_client/models/create_benchmark_participant_model.py,sha256=M-DgGPaO3vRyIfAewBUXpYtnPGoLaurtaDckGQUZ1Yk,2624
|
|
131
|
-
rapidata/api_client/models/create_benchmark_participant_result.py,sha256=
|
|
131
|
+
rapidata/api_client/models/create_benchmark_participant_result.py,sha256=dt0Gjr7GhUVQAE25wfFp76kQP3pYCIDA3mb6EVRyaFc,2772
|
|
132
|
+
rapidata/api_client/models/create_benchmark_prompt_result.py,sha256=flCXmbqwTekRgkvS8Q4iwfJBC50ryKYsZgM0vG482dc,2522
|
|
132
133
|
rapidata/api_client/models/create_benchmark_result.py,sha256=cizADq-EItVBCFAojEEZ8PoLWS5_YIgquktTpPVPgDY,2498
|
|
133
134
|
rapidata/api_client/models/create_bridge_token_result.py,sha256=GWyYfjBSoZhQiAWaf-JHeRIoH1ZGs3BUGpSUFDuDEDY,2667
|
|
134
135
|
rapidata/api_client/models/create_client_model.py,sha256=dKJ6yhkDvgT8ipp_I8spaZLoiYz0THFZ7kbbJ4MMqwg,3327
|
|
@@ -236,7 +237,7 @@ rapidata/api_client/models/get_available_validation_sets_result.py,sha256=6Tam9T
|
|
|
236
237
|
rapidata/api_client/models/get_benchmark_by_id_query.py,sha256=Qs_4LXjifBIFnAw7UsbxSTfnmAPAz_yK0NAK46Kn9Wo,3042
|
|
237
238
|
rapidata/api_client/models/get_benchmark_by_id_query_result.py,sha256=83_SG_sSR7C-HkW_flQLflBu7lHPq3M0yIFvpXPUZYw,2849
|
|
238
239
|
rapidata/api_client/models/get_benchmark_by_id_query_result_paged_result.py,sha256=hx0hH-tq1d-M5iJKhTOfgYx9aUiwTgPUxEeYgEx_k_4,3593
|
|
239
|
-
rapidata/api_client/models/get_benchmark_by_id_result.py,sha256=
|
|
240
|
+
rapidata/api_client/models/get_benchmark_by_id_result.py,sha256=mbZ8oJ_MlNW5WmSrg-NPqwaJJJZwS907p6teYv0a4t4,2950
|
|
240
241
|
rapidata/api_client/models/get_classify_workflow_result_overview_result.py,sha256=ofGYUKxXOphdGevqxoJd4xflT_nAqxncISIWCHjG124,6747
|
|
241
242
|
rapidata/api_client/models/get_compare_ab_summary_result.py,sha256=0iy1UkY09WU_1DAzE96NAyVqslkz1qKPuacRklXro0w,2792
|
|
242
243
|
rapidata/api_client/models/get_compare_workflow_result_overview_result.py,sha256=x8T7N15i-5R8iM4fZgsj688nWCl6npVsvKYFH_kOmdo,4799
|
|
@@ -249,11 +250,12 @@ rapidata/api_client/models/get_datapoint_by_id_result.py,sha256=wj4PCU0xl9ZTICei
|
|
|
249
250
|
rapidata/api_client/models/get_datapoints_by_dataset_id_result.py,sha256=u8DHnbnIJoZgYvr5XJdyId8wpKehuVqqUmW3u4QSC68,3004
|
|
250
251
|
rapidata/api_client/models/get_dataset_by_id_result.py,sha256=buK_gpa_G4uTQ3g05A3P7kW9v1pfsWU_l1EXCAGyC_o,2502
|
|
251
252
|
rapidata/api_client/models/get_dataset_progress_result.py,sha256=Zh0ALJyjWXD87FDmwQwUGOXj3cP1ozLsTHwWxQ4404E,2741
|
|
253
|
+
rapidata/api_client/models/get_evaluation_workflow_results_model.py,sha256=FGWcTdqteufd14WwIcOuCGTiZ6aRYwKV9WU7CFKA50Y,4301
|
|
252
254
|
rapidata/api_client/models/get_failed_datapoints_result.py,sha256=yx9mD0YVaP3NCs-3MJ2lxJTUb3VfjtYqYdb4XMjQw88,3035
|
|
253
255
|
rapidata/api_client/models/get_leaderboard_by_id_result.py,sha256=-ZXNGe3BU1Etb0O0xg9wxDBSrmnYEubSD8tM25KKmis,5378
|
|
254
256
|
rapidata/api_client/models/get_order_by_id_result.py,sha256=46bKh7NsaCprCpROqRsgo4-Cr6XkG5iTfJ3H8Ni-zhY,3236
|
|
255
257
|
rapidata/api_client/models/get_order_results_result.py,sha256=zHCTEa1VgbIoGXHsBtJ3z8wZ9X8hy0zRh_GpA4pT0vA,2830
|
|
256
|
-
rapidata/api_client/models/get_participant_by_id_result.py,sha256=
|
|
258
|
+
rapidata/api_client/models/get_participant_by_id_result.py,sha256=2ZJrhkxMuv7kDH6c0ewBrcjB3PzpN2i0U-z7op0lcFE,2705
|
|
257
259
|
rapidata/api_client/models/get_pipeline_by_id_result.py,sha256=UfedDCodsDJHrKnY5ZEGozML3YkcLbq3yPOQtvmof4E,3929
|
|
258
260
|
rapidata/api_client/models/get_pipeline_by_id_result_artifacts_value.py,sha256=tvh4GD4YeU9VnXKWLiqTfqGsC-90hUa_zAd-qkcwEPs,8476
|
|
259
261
|
rapidata/api_client/models/get_public_orders_result.py,sha256=1Eq-R7wX2fKREuu-o1u5pVqHnc89-_--pkz78y80oEM,3001
|
|
@@ -266,7 +268,7 @@ rapidata/api_client/models/get_simple_workflow_result_overview_result.py,sha256=
|
|
|
266
268
|
rapidata/api_client/models/get_simple_workflow_results_model.py,sha256=r4DZspzPrwaI4DrC4OH-mwUvibcS0TzK9O8CFnsURSc,4289
|
|
267
269
|
rapidata/api_client/models/get_simple_workflow_results_result.py,sha256=WNBHFW-D6tlMzNp9P7nGfoDoarjjwb2YwjlCCV1tA00,4411
|
|
268
270
|
rapidata/api_client/models/get_simple_workflow_results_result_paged_result.py,sha256=DWimv7FmvJmixjQvDFeTE_Q5jHLpLdQmPlXF_9iWSiY,3616
|
|
269
|
-
rapidata/api_client/models/get_standing_by_id_result.py,sha256=
|
|
271
|
+
rapidata/api_client/models/get_standing_by_id_result.py,sha256=szWEVw9wD9t_V71oZPnKAafiV6A-MWBOguHPNTji9Vk,2972
|
|
270
272
|
rapidata/api_client/models/get_validation_rapids_query.py,sha256=teC4ryyIXJkRwafaSorysBIsKJuO5C1L8f6juJMwrNs,4894
|
|
271
273
|
rapidata/api_client/models/get_validation_rapids_query_paged_result.py,sha256=ifyJ7Iy7VzTWxtwb2q5q5id927Iil00V3Nk9QqclsDo,3567
|
|
272
274
|
rapidata/api_client/models/get_validation_rapids_result.py,sha256=Rr_QECcIxnyxlS0txatSZ1bdISIS4Uh2aMLne_V3xvU,6518
|
|
@@ -296,7 +298,7 @@ rapidata/api_client/models/issue_auth_token_result.py,sha256=CkXxxJXAhN1ibABO4VV
|
|
|
296
298
|
rapidata/api_client/models/issue_client_auth_token_result.py,sha256=VDZ3-wCqDh4S0KCA3Z8crojS9tjgebLta07JS5w0oYA,2581
|
|
297
299
|
rapidata/api_client/models/json_web_key.py,sha256=-rzhQcNFhAwLp0NzNIBBrxW3kMy9eXrTBVjLx7gGah0,9197
|
|
298
300
|
rapidata/api_client/models/json_web_key_set.py,sha256=p-28nu1i9n3s-29i_cX-QbtCFogP253IWgjIqE_aS1o,3812
|
|
299
|
-
rapidata/api_client/models/labeling_selection.py,sha256=
|
|
301
|
+
rapidata/api_client/models/labeling_selection.py,sha256=GfDxJuTFJfi3eg1bQ1_3caAZlkP4vOFyxyDdomCWHMA,3981
|
|
300
302
|
rapidata/api_client/models/language_filter.py,sha256=GVLzrMF7yf9muQM7SA8SgFQmCRfH8uud7sWiwUtUt-s,3137
|
|
301
303
|
rapidata/api_client/models/language_user_filter_model.py,sha256=PZqalLtE_mlZ9ND8h4NU1fnbtT-zcIe1uxRSeWwHvqI,2990
|
|
302
304
|
rapidata/api_client/models/leaderboard_query_result.py,sha256=4rqxLpdMxmNvFTHVr464UeUhzSeKRi81zkWyirIr5EY,5370
|
|
@@ -371,7 +373,7 @@ rapidata/api_client/models/order_state.py,sha256=Vnt5CdDKom-CVsoG0sDaAXYgNkUTnkT
|
|
|
371
373
|
rapidata/api_client/models/original_filename_metadata.py,sha256=8MGvIP4hMZtCgy61oA4OKik-Egz_4HxO5G478lY5304,3655
|
|
372
374
|
rapidata/api_client/models/original_filename_metadata_model.py,sha256=LsbJg_t1FdhwdfF4URn6rxB2huUim6e15PrdxLTcaQo,3111
|
|
373
375
|
rapidata/api_client/models/page_info.py,sha256=8vmnkRGqq38mIQCOMInYrPLFDBALxkWZUM-Z_M1-XK4,2766
|
|
374
|
-
rapidata/api_client/models/participant_by_benchmark.py,sha256=
|
|
376
|
+
rapidata/api_client/models/participant_by_benchmark.py,sha256=8vah_y9IFQETzGJ5hLEPBRCYBxful347yqHRuiYAs9E,2854
|
|
375
377
|
rapidata/api_client/models/participant_by_benchmark_paged_result.py,sha256=VEnfUsy8-s47_3SogL0EKMH4IErrYL3ecIe0yZBseYM,3550
|
|
376
378
|
rapidata/api_client/models/participant_by_leaderboard.py,sha256=155CAfOxIYdXMLT481GY2IEkPG3IJWmpasFQwnmhfU0,3790
|
|
377
379
|
rapidata/api_client/models/participant_by_leaderboard_paged_result.py,sha256=r92XzY-nGOdV2_TYHZe9kG5ksPDzyBQ8Nwkqs_c5yoE,3566
|
|
@@ -476,13 +478,15 @@ rapidata/api_client/models/sort_criterion.py,sha256=1m2SDK4nDvbNuLVrStkCKVk2WmRK
|
|
|
476
478
|
rapidata/api_client/models/sort_direction.py,sha256=yNLZqvgL5fHbD98kMWFAsfgqn3gKM_GFIyRVfheZydI,748
|
|
477
479
|
rapidata/api_client/models/source_url_metadata.py,sha256=7u3Mw9iETE51yZDOJ8aDbAUozEBcFgYBIJzELEDmgQA,3512
|
|
478
480
|
rapidata/api_client/models/source_url_metadata_model.py,sha256=UWd1nG-awsV5Q2fsrqdPDgc7bI_pGag0ubIlwEEKMZk,2988
|
|
479
|
-
rapidata/api_client/models/
|
|
481
|
+
rapidata/api_client/models/standing_by_benchmark.py,sha256=NbNRH6ohYIvEks5a3Cmj78Pf2jThDrklhkTu7M_I8bc,4109
|
|
482
|
+
rapidata/api_client/models/standing_by_leaderboard.py,sha256=Ki9PKDdWeS0uL833uA62VNMqb2OeYn5DpaPN77mo6y4,4127
|
|
480
483
|
rapidata/api_client/models/standing_by_leaderboard_paged_result.py,sha256=zOlbN2Pxc0y5M9MaDTB5znl0V-6CZIzGZWBlcZGdeVg,3542
|
|
481
484
|
rapidata/api_client/models/standing_status.py,sha256=1uIPH2EDit3fsq9LAnspG1xRzZrgFyKAju6Dq7Vka4M,781
|
|
485
|
+
rapidata/api_client/models/standings_by_benchmark_result.py,sha256=yHly_g1F48kIZRz8UcPXnRi0SHUsIbVcvWsMNzAiJIU,3021
|
|
482
486
|
rapidata/api_client/models/standings_by_leaderboard_result.py,sha256=BUBJsX0cH1HLTKKSaeneVEWaXQY4LxoEcwxoIsHvoPQ,3037
|
|
483
487
|
rapidata/api_client/models/static_rapid_selection_config.py,sha256=RnjyRhAOaxmJ2PW-X2m4G0QZlm-8vw2d9ZO5uneNOtg,3073
|
|
484
488
|
rapidata/api_client/models/static_selection.py,sha256=tvILdoApT7qKYEA2RmT2lsNZGhS9O0fDHJrhJtsXERg,2985
|
|
485
|
-
rapidata/api_client/models/sticky_state.py,sha256=
|
|
489
|
+
rapidata/api_client/models/sticky_state.py,sha256=wrVmlugOCECqGWjq-bgoQSkPy4_VnIVpHm_gL6Ge4ZA,806
|
|
486
490
|
rapidata/api_client/models/stream_file_wrapper.py,sha256=Mb33G6pJq34PeCyY8r4HjW9YFF3dV_e9z7WtfV04Qvw,4130
|
|
487
491
|
rapidata/api_client/models/streams_metadata.py,sha256=PKopk9e_MPkoi-Btd_38H0E-HfEOXq-ujtLRO3Vwmu0,3866
|
|
488
492
|
rapidata/api_client/models/streams_metadata_model.py,sha256=ZAk1vM73gMNNce3XgNW8xCNCUTB9KU3402DXMdPeUPI,3250
|
|
@@ -513,7 +517,7 @@ rapidata/api_client/models/translated_prompt_metadata_model.py,sha256=BRKheCvA8e
|
|
|
513
517
|
rapidata/api_client/models/translated_string.py,sha256=AeftEOw-sR4sMaQNOPy5iSo38kXmbyMIi7MmpbLvYew,2900
|
|
514
518
|
rapidata/api_client/models/unlock_order_result.py,sha256=xAyBfOotLJ3mgaIjin7k3b-KLLQLJDwuxMfhkUMJr1Y,2561
|
|
515
519
|
rapidata/api_client/models/update_access_model.py,sha256=E5rpK2aqzUfVYYsz2xAJ64wIluzZs2uf8GM14q5WCKs,2653
|
|
516
|
-
rapidata/api_client/models/update_benchmark_model.py,sha256=
|
|
520
|
+
rapidata/api_client/models/update_benchmark_model.py,sha256=5M4qXOyNPdT35CYdBrUk791pZOjkpoEDQIrR5mc1uZQ,2698
|
|
517
521
|
rapidata/api_client/models/update_benchmark_name_model.py,sha256=ve8LzZM92Zcl_kCNF-ymjzX8_EY7kvj2jLorXxqT0fo,2604
|
|
518
522
|
rapidata/api_client/models/update_campaign_model.py,sha256=9mCp3fQZqtecsCQS1SBbfNyESWxTD9Y7t8R9_21NLlQ,3451
|
|
519
523
|
rapidata/api_client/models/update_dataset_name_model.py,sha256=IeGRrxo6G2fKfMwnoBFYj4BW9ksGo_8db21VcLYfLvc,2599
|
|
@@ -525,6 +529,7 @@ rapidata/api_client/models/update_order_model.py,sha256=RUlxnzLqO6o-w5EEPb8wv1AN
|
|
|
525
529
|
rapidata/api_client/models/update_order_name_model.py,sha256=Cm8qZUJKgx1JTgkhlJcVNdLwPnRV8gqeeo7G4bVDOS4,2582
|
|
526
530
|
rapidata/api_client/models/update_participant_model.py,sha256=0bIWql2sTI3EuCtt18Pc8JnGCyaR6xredouo0_JvQrI,2554
|
|
527
531
|
rapidata/api_client/models/update_participant_name_model.py,sha256=PPXeS5euTpMt7QrmLWordYU1tGS1gZ-zwjgQDglld_g,2614
|
|
532
|
+
rapidata/api_client/models/update_priority_model.py,sha256=JeUkmzuZZEkUKpEh1JrrN4zgUPxBN_7bcpsc8TwN0Xo,2608
|
|
528
533
|
rapidata/api_client/models/update_prompt_tags_model.py,sha256=4y9brW5gxhjEE88jbKGNruev8rkK77LI1lb866QXZaM,2607
|
|
529
534
|
rapidata/api_client/models/update_should_alert_model.py,sha256=OxxcSko6KT1PIQpvkpdLpXwzZus1xCHgi0zCZZgt7a8,2735
|
|
530
535
|
rapidata/api_client/models/update_validation_rapid_model.py,sha256=yCmIdsywjK1CsVTeUWz6oFfwmrSXc030_gVWrxwScuE,4083
|
|
@@ -549,7 +554,7 @@ rapidata/api_client/models/validation_import_post_request_blueprint.py,sha256=O2
|
|
|
549
554
|
rapidata/api_client/models/validation_rapid_selection_config.py,sha256=T6RoGq_YSytk_TAcWsfOsU_7nfQlLmnO4Qn0CkQok7k,3219
|
|
550
555
|
rapidata/api_client/models/validation_selection.py,sha256=sgq3YtlKdAx2Ec41jFlZG1QNkN1NVwOJL-ALGxq3iL4,3131
|
|
551
556
|
rapidata/api_client/models/validation_set.py,sha256=8ogEXVaKNB9pR2xuouf_Ckz_6-ryV0usGxx2qPqKjQk,3386
|
|
552
|
-
rapidata/api_client/models/validation_set_model.py,sha256=
|
|
557
|
+
rapidata/api_client/models/validation_set_model.py,sha256=hvjsjMiZz6Kn4PL8_35GpuQJFS3DEqN9JectoObfTfs,4548
|
|
553
558
|
rapidata/api_client/models/validation_set_model_paged_result.py,sha256=KFdXjw6qkzGXLIHYlVSxfSYPpBPHTxEi4e6qGBzCIlk,3518
|
|
554
559
|
rapidata/api_client/models/validation_set_overview_model.py,sha256=wlrjXg1dmlFmP8rIKDR88pGzpUEg15t8esr63BfYaaE,2693
|
|
555
560
|
rapidata/api_client/models/validation_set_paged_result.py,sha256=3ch0KcbcH7qn8iJPY90WIiTF_MAIPJxWa3DUNfKwSI0,3477
|
|
@@ -568,8 +573,8 @@ rapidata/api_client/models/workflow_split_model_filter_configs_inner.py,sha256=1
|
|
|
568
573
|
rapidata/api_client/models/workflow_state.py,sha256=5LAK1se76RCoozeVB6oxMPb8p_5bhLZJqn7q5fFQWis,850
|
|
569
574
|
rapidata/api_client/models/zip_entry_file_wrapper.py,sha256=06CoNJD3x511K3rnSmkrwwhc9GbQxwxF-c0ldOyJbAs,4240
|
|
570
575
|
rapidata/api_client/rest.py,sha256=rtIMcgINZOUaDFaJIinJkXRSddNJmXvMRMfgO2Ezk2o,10835
|
|
571
|
-
rapidata/api_client_README.md,sha256=
|
|
572
|
-
rapidata/rapidata_client/__init__.py,sha256=
|
|
576
|
+
rapidata/api_client_README.md,sha256=P7bY0KQw8QLgfYhk4PicYWsNXKcaIBToBRltw-_4U8k,61311
|
|
577
|
+
rapidata/rapidata_client/__init__.py,sha256=ONjOwjqGEWhMrSWijurvvBL5PXf69ycVhM4GhFGl9hs,1204
|
|
573
578
|
rapidata/rapidata_client/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
574
579
|
rapidata/rapidata_client/api/rapidata_api_client.py,sha256=9385bND7sDuXfmq0AFgea_RrtuT73NA2CWG_9aIoGok,8945
|
|
575
580
|
rapidata/rapidata_client/benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -655,7 +660,7 @@ rapidata/rapidata_client/selection/rapidata_selections.py,sha256=yDoh8afm0GayAiY
|
|
|
655
660
|
rapidata/rapidata_client/selection/shuffling_selection.py,sha256=UUVVyS3o5KjIN0LlffEWvjmq_izaF8au_AKGxzfVH1s,1202
|
|
656
661
|
rapidata/rapidata_client/selection/static_selection.py,sha256=_NpAhyUy8_zGkU4hH7CxRyd_Ct6o6CtEJsti-H1z_YY,514
|
|
657
662
|
rapidata/rapidata_client/selection/validation_selection.py,sha256=3LuyDVSj14j3ttXnZOqQsO875QP9HDYhLF7lu8FA3ZQ,898
|
|
658
|
-
rapidata/rapidata_client/settings/__init__.py,sha256=
|
|
663
|
+
rapidata/rapidata_client/settings/__init__.py,sha256=UC_6nrhS4q7zqio30-T1dMT9AtFhIfu5g_xhhIeAH1Y,568
|
|
659
664
|
rapidata/rapidata_client/settings/_rapidata_setting.py,sha256=ZiTzyEr9ihFif0av9CroY1KJ4PfFMB_cV_nrvBsG--s,583
|
|
660
665
|
rapidata/rapidata_client/settings/alert_on_fast_response.py,sha256=VYOQ1EfKolYmsNNI4gJPx-_UWFl9dtrroca796jrAZI,1007
|
|
661
666
|
rapidata/rapidata_client/settings/allow_neither_both.py,sha256=c92e3d-TAB7-Isv3O3zPibaGm_Uj2Uy-NhyCzdyhnXM,540
|
|
@@ -665,13 +670,14 @@ rapidata/rapidata_client/settings/models/__init__.py,sha256=IW7OuWg7xWIwFYrMAOX5
|
|
|
665
670
|
rapidata/rapidata_client/settings/models/translation_behaviour_options.py,sha256=shbCpoi8bOqIArcZtnBL9ZRvUsyVXwjs3nRj9-uzZw4,472
|
|
666
671
|
rapidata/rapidata_client/settings/no_shuffle.py,sha256=RJKJl76vyakEQ6tyA-06GSo3wF57uxTjF-4f07gK_Gg,674
|
|
667
672
|
rapidata/rapidata_client/settings/play_video_until_the_end.py,sha256=vPtIYql197Q0h6N_TlYuI3AbakBJUmnYUmhoSns9EWc,754
|
|
668
|
-
rapidata/rapidata_client/settings/rapidata_settings.py,sha256=
|
|
673
|
+
rapidata/rapidata_client/settings/rapidata_settings.py,sha256=ufVs6n4dKKT1-Q5ijCzj9lSrYNMqC7qy3HtWlIcbMJQ,2009
|
|
674
|
+
rapidata/rapidata_client/settings/swap_context_instruction.py,sha256=DLa1CDKIHVWC0VBOYTbb9HZBebzsaIGT_2DHq9I0ovs,712
|
|
669
675
|
rapidata/rapidata_client/settings/translation_behaviour.py,sha256=iH-c-oGig6XuGV1vOeUQ7GCjzSJz0ucn8-U49KyjA4s,735
|
|
670
676
|
rapidata/rapidata_client/validation/__init__.py,sha256=s5wHVtcJkncXSFuL9I0zNwccNOKpWAqxqUjkeohzi2E,24
|
|
671
677
|
rapidata/rapidata_client/validation/rapidata_validation_set.py,sha256=cz1loj46tcgo2JUh9_rP17rWof8lsjxAHw-vA3fgVpc,4475
|
|
672
678
|
rapidata/rapidata_client/validation/rapids/__init__.py,sha256=WU5PPwtTJlte6U90MDakzx4I8Y0laj7siw9teeXj5R0,21
|
|
673
679
|
rapidata/rapidata_client/validation/rapids/box.py,sha256=Tm2_fVdOuj-eTT8hDMajlpgWQLNtKZqw5_ud2xvjR2w,587
|
|
674
|
-
rapidata/rapidata_client/validation/rapids/rapids.py,sha256=
|
|
680
|
+
rapidata/rapidata_client/validation/rapids/rapids.py,sha256=8TtFCk_VZ0UFGr96c2oHbyYK-MuVkMME0CFA2x9DPcA,5579
|
|
675
681
|
rapidata/rapidata_client/validation/rapids/rapids_manager.py,sha256=H4pjPghUUQS8Bk2mqcnxVmononVb14erpCvZm6q-kOk,14137
|
|
676
682
|
rapidata/rapidata_client/validation/validation_set_manager.py,sha256=XdXpa0zko0tpTgowGrE5DAjnIM9lM8WKemGYibZeAa8,34864
|
|
677
683
|
rapidata/rapidata_client/workflow/__init__.py,sha256=6kfMN7TQVpiQNGjNHg3X7KdnCyYe3K2TIq7ZVEatQcU,476
|
|
@@ -690,7 +696,7 @@ rapidata/service/credential_manager.py,sha256=T3yL4tXVnibRytxjQkOC-ex3kFGQR5KcKU
|
|
|
690
696
|
rapidata/service/local_file_service.py,sha256=0Q4LdoEtPFKzgXK2oZ1cQ-X7FipakscjGnnBH8dRFRQ,855
|
|
691
697
|
rapidata/service/openapi_service.py,sha256=k3V4eMNcAjBcxEv17lDivK8LV5TEjRTL9B_5KBlhcas,5482
|
|
692
698
|
rapidata/types/__init__.py,sha256=gSGrmWV5gEA6pPfAR5vwSy_DvibO5IjCZDiB7LtlMOQ,6134
|
|
693
|
-
rapidata-2.
|
|
694
|
-
rapidata-2.
|
|
695
|
-
rapidata-2.
|
|
696
|
-
rapidata-2.
|
|
699
|
+
rapidata-2.41.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
700
|
+
rapidata-2.41.0.dist-info/METADATA,sha256=i9UoFK-vepT0DkUd4GB1Q_17Csdbiv-r_ZSCM0abbW8,1406
|
|
701
|
+
rapidata-2.41.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
702
|
+
rapidata-2.41.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|