rapidata 2.39.0__py3-none-any.whl → 2.40.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 +3 -1
- rapidata/api_client/api/benchmark_api.py +0 -836
- rapidata/api_client/api/leaderboard_api.py +27 -2286
- rapidata/api_client/api/participant_api.py +0 -286
- rapidata/api_client/api/validation_set_api.py +0 -572
- rapidata/api_client_README.md +0 -14
- rapidata/rapidata_client/config/order_config.py +1 -0
- rapidata/rapidata_client/order/_rapidata_order_builder.py +34 -9
- rapidata/rapidata_client/rapidata_client.py +24 -3
- rapidata/rapidata_client/validation/rapidata_validation_set.py +10 -0
- rapidata/rapidata_client/validation/validation_set_manager.py +4 -0
- rapidata/types/__init__.py +167 -0
- {rapidata-2.39.0.dist-info → rapidata-2.40.0.dist-info}/METADATA +1 -1
- {rapidata-2.39.0.dist-info → rapidata-2.40.0.dist-info}/RECORD +16 -15
- {rapidata-2.39.0.dist-info → rapidata-2.40.0.dist-info}/LICENSE +0 -0
- {rapidata-2.39.0.dist-info → rapidata-2.40.0.dist-info}/WHEEL +0 -0
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
from typing import Literal, Optional, Sequence
|
|
2
2
|
import random
|
|
3
|
+
import urllib.parse
|
|
4
|
+
import webbrowser
|
|
5
|
+
|
|
6
|
+
from colorama import Fore
|
|
3
7
|
from rapidata.api_client.models.ab_test_selection_a_inner import AbTestSelectionAInner
|
|
4
8
|
from rapidata.api_client.models.and_user_filter_model_filters_inner import (
|
|
5
9
|
AndUserFilterModelFiltersInner,
|
|
@@ -38,7 +42,6 @@ from rapidata.rapidata_client.workflow import Workflow
|
|
|
38
42
|
from rapidata.service.openapi_service import OpenAPIService
|
|
39
43
|
from rapidata.rapidata_client.api.rapidata_api_client import (
|
|
40
44
|
suppress_rapidata_error_logging,
|
|
41
|
-
RapidataApiClient,
|
|
42
45
|
)
|
|
43
46
|
|
|
44
47
|
|
|
@@ -124,16 +127,19 @@ class RapidataOrderBuilder:
|
|
|
124
127
|
),
|
|
125
128
|
)
|
|
126
129
|
|
|
127
|
-
def _set_validation_set_id(self) ->
|
|
130
|
+
def _set_validation_set_id(self) -> bool:
|
|
128
131
|
"""
|
|
129
132
|
Get the validation set ID for the order.
|
|
133
|
+
|
|
134
|
+
Returns:
|
|
135
|
+
bool: True if a new validation set was created, False otherwise.
|
|
130
136
|
"""
|
|
131
137
|
assert self.__workflow is not None
|
|
132
138
|
if self.__validation_set_id:
|
|
133
139
|
logger.debug(
|
|
134
140
|
"Using specified validation set with ID: %s", self.__validation_set_id
|
|
135
141
|
)
|
|
136
|
-
return
|
|
142
|
+
return False
|
|
137
143
|
|
|
138
144
|
try:
|
|
139
145
|
with suppress_rapidata_error_logging():
|
|
@@ -163,14 +169,12 @@ class RapidataOrderBuilder:
|
|
|
163
169
|
logger.debug(
|
|
164
170
|
"No recommended validation set found, dataset too small to create one."
|
|
165
171
|
)
|
|
166
|
-
return
|
|
172
|
+
return False
|
|
167
173
|
|
|
168
174
|
logger.info("No recommended validation set found, creating new one.")
|
|
169
175
|
|
|
170
176
|
managed_print()
|
|
171
|
-
managed_print(
|
|
172
|
-
f"No recommended validation set found, new one will be created.\nWe recommend adding some truths to ensure the order is accurate."
|
|
173
|
-
)
|
|
177
|
+
managed_print(f"No recommended validation set found, new one will be created.")
|
|
174
178
|
validation_set = self.__validation_set_manager._create_order_validation_set(
|
|
175
179
|
workflow=self.__workflow,
|
|
176
180
|
order_name=self._name,
|
|
@@ -185,6 +189,7 @@ class RapidataOrderBuilder:
|
|
|
185
189
|
|
|
186
190
|
logger.debug("New validation set created for order: %s", validation_set)
|
|
187
191
|
self.__validation_set_id = validation_set.id
|
|
192
|
+
return True
|
|
188
193
|
|
|
189
194
|
def _create(self) -> RapidataOrder:
|
|
190
195
|
"""
|
|
@@ -197,8 +202,10 @@ class RapidataOrderBuilder:
|
|
|
197
202
|
Returns:
|
|
198
203
|
RapidataOrder: The created RapidataOrder instance.
|
|
199
204
|
"""
|
|
200
|
-
if rapidata_config.
|
|
201
|
-
self._set_validation_set_id()
|
|
205
|
+
if rapidata_config.order.autoValidationSetCreation:
|
|
206
|
+
new_validation_set = self._set_validation_set_id()
|
|
207
|
+
else:
|
|
208
|
+
new_validation_set = False
|
|
202
209
|
|
|
203
210
|
order_model = self._to_model()
|
|
204
211
|
logger.debug("Creating order with model: %s", order_model)
|
|
@@ -210,6 +217,24 @@ class RapidataOrderBuilder:
|
|
|
210
217
|
self.order_id = str(result.order_id)
|
|
211
218
|
logger.debug("Order created with ID: %s", self.order_id)
|
|
212
219
|
|
|
220
|
+
if rapidata_config.order.autoValidationSetCreation and new_validation_set:
|
|
221
|
+
required_amount = min(int(len(self.__datapoints) * 0.01) or 1, 10)
|
|
222
|
+
managed_print()
|
|
223
|
+
managed_print(
|
|
224
|
+
Fore.YELLOW
|
|
225
|
+
+ f"A new validation set was created. Please annotate {required_amount} datapoint{('s' if required_amount != 1 else '')} so the order runs correctly."
|
|
226
|
+
+ Fore.RESET
|
|
227
|
+
)
|
|
228
|
+
link = f"https://app.{self.__openapi_service.environment}/validation-set/detail/{self.__validation_set_id}/annotate?orderId={self.order_id}&required={required_amount}"
|
|
229
|
+
could_open_browser = webbrowser.open(link)
|
|
230
|
+
if not could_open_browser:
|
|
231
|
+
encoded_url = urllib.parse.quote(link, safe="%/:=&?~#+!$,;'@()*[]")
|
|
232
|
+
managed_print(
|
|
233
|
+
Fore.RED
|
|
234
|
+
+ f"Please open this URL in your browser: '{encoded_url}'"
|
|
235
|
+
+ Fore.RESET
|
|
236
|
+
)
|
|
237
|
+
|
|
213
238
|
self.__dataset = (
|
|
214
239
|
RapidataDataset(result.dataset_id, self.__openapi_service)
|
|
215
240
|
if result.dataset_id
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import json
|
|
2
|
+
from typing import Any
|
|
1
3
|
import requests
|
|
2
4
|
from packaging import version
|
|
3
5
|
from rapidata import __version__
|
|
@@ -31,7 +33,7 @@ class RapidataClient:
|
|
|
31
33
|
client_id: str | None = None,
|
|
32
34
|
client_secret: str | None = None,
|
|
33
35
|
environment: str = "rapidata.ai",
|
|
34
|
-
oauth_scope: str = "openid",
|
|
36
|
+
oauth_scope: str = "openid roles",
|
|
35
37
|
cert_path: str | None = None,
|
|
36
38
|
token: dict | None = None,
|
|
37
39
|
leeway: int = 60,
|
|
@@ -51,10 +53,14 @@ class RapidataClient:
|
|
|
51
53
|
Attributes:
|
|
52
54
|
order (RapidataOrderManager): The RapidataOrderManager instance.
|
|
53
55
|
validation (ValidationSetManager): The ValidationSetManager instance.
|
|
56
|
+
demographic (DemographicManager): The DemographicManager instance.
|
|
57
|
+
mri (RapidataBenchmarkManager): The RapidataBenchmarkManager instance.
|
|
54
58
|
"""
|
|
55
59
|
with tracer.start_as_current_span("RapidataClient.__init__"):
|
|
56
60
|
logger.debug("Checking version")
|
|
57
61
|
self._check_version()
|
|
62
|
+
if environment != "rapidata.ai":
|
|
63
|
+
rapidata_config.logging.enable_otlp = False
|
|
58
64
|
|
|
59
65
|
logger.debug("Initializing OpenAPIService")
|
|
60
66
|
self._openapi_service = OpenAPIService(
|
|
@@ -83,13 +89,28 @@ class RapidataClient:
|
|
|
83
89
|
logger.debug("Initializing RapidataBenchmarkManager")
|
|
84
90
|
self.mri = RapidataBenchmarkManager(openapi_service=self._openapi_service)
|
|
85
91
|
|
|
92
|
+
self._check_beta_features()
|
|
93
|
+
|
|
86
94
|
def reset_credentials(self):
|
|
87
95
|
"""Reset the credentials saved in the configuration file for the current environment."""
|
|
88
96
|
self._openapi_service.reset_credentials()
|
|
89
97
|
|
|
90
|
-
def
|
|
98
|
+
def _check_beta_features(self):
|
|
91
99
|
"""Enable beta features for the client."""
|
|
92
|
-
|
|
100
|
+
result: dict[str, Any] = json.loads(
|
|
101
|
+
self._openapi_service.api_client.call_api(
|
|
102
|
+
"GET",
|
|
103
|
+
f"https://auth.{self._openapi_service.environment}/connect/userinfo",
|
|
104
|
+
)
|
|
105
|
+
.read()
|
|
106
|
+
.decode("utf-8")
|
|
107
|
+
)
|
|
108
|
+
logger.debug("Userinfo: %s", result)
|
|
109
|
+
if result.get("role") != ["Admin"]:
|
|
110
|
+
logger.debug("User is not an admin, not enabling beta features")
|
|
111
|
+
return
|
|
112
|
+
|
|
113
|
+
logger.debug("User is an admin, enabling beta features")
|
|
93
114
|
rapidata_config.enableBetaFeatures = True
|
|
94
115
|
|
|
95
116
|
def _check_version(self):
|
|
@@ -93,6 +93,16 @@ class RapidataValidationSet:
|
|
|
93
93
|
+ Fore.RESET
|
|
94
94
|
)
|
|
95
95
|
|
|
96
|
+
def delete(self) -> None:
|
|
97
|
+
"""Deletes the validation set"""
|
|
98
|
+
with tracer.start_as_current_span("RapidataValidationSet.delete"):
|
|
99
|
+
logger.info("Deleting ValidationSet '%s'", self)
|
|
100
|
+
self.__openapi_service.validation_api.validation_set_validation_set_id_delete(
|
|
101
|
+
self.id
|
|
102
|
+
)
|
|
103
|
+
logger.debug("ValidationSet '%s' has been deleted.", self)
|
|
104
|
+
managed_print(f"ValidationSet '{self}' has been deleted.")
|
|
105
|
+
|
|
96
106
|
def __str__(self):
|
|
97
107
|
return f"name: '{self.name}' id: {self.id}"
|
|
98
108
|
|
|
@@ -641,6 +641,10 @@ class ValidationSetManager:
|
|
|
641
641
|
if dimensions:
|
|
642
642
|
validation_set.update_dimensions(dimensions)
|
|
643
643
|
|
|
644
|
+
self.__openapi_service.validation_api.validation_set_validation_set_id_update_labeling_hints_post(
|
|
645
|
+
validation_set_id=validation_set_id
|
|
646
|
+
)
|
|
647
|
+
|
|
644
648
|
return validation_set
|
|
645
649
|
|
|
646
650
|
def get_validation_set_by_id(self, validation_set_id: str) -> RapidataValidationSet:
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
# Main Client and Core Types
|
|
2
|
+
from rapidata.rapidata_client.rapidata_client import RapidataClient
|
|
3
|
+
|
|
4
|
+
# Order Types
|
|
5
|
+
from rapidata.rapidata_client.order.rapidata_order import RapidataOrder
|
|
6
|
+
from rapidata.rapidata_client.order.rapidata_order_manager import RapidataOrderManager
|
|
7
|
+
from rapidata.rapidata_client.order.rapidata_results import RapidataResults
|
|
8
|
+
|
|
9
|
+
# Validation Types
|
|
10
|
+
from rapidata.rapidata_client.validation.rapidata_validation_set import (
|
|
11
|
+
RapidataValidationSet,
|
|
12
|
+
)
|
|
13
|
+
from rapidata.rapidata_client.validation.validation_set_manager import (
|
|
14
|
+
ValidationSetManager,
|
|
15
|
+
)
|
|
16
|
+
from rapidata.rapidata_client.validation.rapids.rapids import Rapid
|
|
17
|
+
from rapidata.rapidata_client.validation.rapids.box import Box
|
|
18
|
+
from rapidata.rapidata_client.validation.rapids.rapids_manager import RapidsManager
|
|
19
|
+
|
|
20
|
+
# Benchmark Types
|
|
21
|
+
from rapidata.rapidata_client.benchmark.rapidata_benchmark import RapidataBenchmark
|
|
22
|
+
from rapidata.rapidata_client.benchmark.rapidata_benchmark_manager import (
|
|
23
|
+
RapidataBenchmarkManager,
|
|
24
|
+
)
|
|
25
|
+
from rapidata.rapidata_client.benchmark.leaderboard.rapidata_leaderboard import (
|
|
26
|
+
RapidataLeaderboard,
|
|
27
|
+
)
|
|
28
|
+
|
|
29
|
+
# Selection Types
|
|
30
|
+
from rapidata.rapidata_client.selection.ab_test_selection import AbTestSelection
|
|
31
|
+
from rapidata.rapidata_client.selection.capped_selection import CappedSelection
|
|
32
|
+
from rapidata.rapidata_client.selection.conditional_validation_selection import (
|
|
33
|
+
ConditionalValidationSelection,
|
|
34
|
+
)
|
|
35
|
+
from rapidata.rapidata_client.selection.demographic_selection import (
|
|
36
|
+
DemographicSelection,
|
|
37
|
+
)
|
|
38
|
+
from rapidata.rapidata_client.selection.effort_selection import EffortSelection
|
|
39
|
+
from rapidata.rapidata_client.selection.labeling_selection import LabelingSelection
|
|
40
|
+
from rapidata.rapidata_client.selection.shuffling_selection import ShufflingSelection
|
|
41
|
+
from rapidata.rapidata_client.selection.static_selection import StaticSelection
|
|
42
|
+
from rapidata.rapidata_client.selection.validation_selection import ValidationSelection
|
|
43
|
+
from rapidata.rapidata_client.selection.rapidata_retrieval_modes import (
|
|
44
|
+
RapidataRetrievalMode,
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
# Filter Types
|
|
48
|
+
from rapidata.rapidata_client.filter.age_filter import AgeFilter
|
|
49
|
+
from rapidata.rapidata_client.filter.and_filter import AndFilter
|
|
50
|
+
from rapidata.rapidata_client.filter.campaign_filter import CampaignFilter
|
|
51
|
+
from rapidata.rapidata_client.filter.country_filter import CountryFilter
|
|
52
|
+
from rapidata.rapidata_client.filter.custom_filter import CustomFilter
|
|
53
|
+
from rapidata.rapidata_client.filter.gender_filter import GenderFilter
|
|
54
|
+
from rapidata.rapidata_client.filter.language_filter import LanguageFilter
|
|
55
|
+
from rapidata.rapidata_client.filter.new_user_filter import NewUserFilter
|
|
56
|
+
from rapidata.rapidata_client.filter.not_filter import NotFilter
|
|
57
|
+
from rapidata.rapidata_client.filter.or_filter import OrFilter
|
|
58
|
+
from rapidata.rapidata_client.filter.response_count_filter import ResponseCountFilter
|
|
59
|
+
from rapidata.rapidata_client.filter.user_score_filter import UserScoreFilter
|
|
60
|
+
|
|
61
|
+
# Filter Model Types
|
|
62
|
+
from rapidata.rapidata_client.filter.models.age_group import AgeGroup
|
|
63
|
+
from rapidata.rapidata_client.filter.models.gender import Gender
|
|
64
|
+
|
|
65
|
+
# Settings Types
|
|
66
|
+
from rapidata.rapidata_client.settings.alert_on_fast_response import AlertOnFastResponse
|
|
67
|
+
from rapidata.rapidata_client.settings.allow_neither_both import AllowNeitherBoth
|
|
68
|
+
from rapidata.rapidata_client.settings.custom_setting import CustomSetting
|
|
69
|
+
from rapidata.rapidata_client.settings.free_text_minimum_characters import (
|
|
70
|
+
FreeTextMinimumCharacters,
|
|
71
|
+
)
|
|
72
|
+
from rapidata.rapidata_client.settings.no_shuffle import NoShuffle
|
|
73
|
+
from rapidata.rapidata_client.settings.play_video_until_the_end import (
|
|
74
|
+
PlayVideoUntilTheEnd,
|
|
75
|
+
)
|
|
76
|
+
from rapidata.rapidata_client.settings.rapidata_settings import RapidataSettings
|
|
77
|
+
from rapidata.rapidata_client.settings.translation_behaviour import TranslationBehaviour
|
|
78
|
+
from rapidata.rapidata_client.settings.models.translation_behaviour_options import (
|
|
79
|
+
TranslationBehaviourOptions,
|
|
80
|
+
)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
# Configuration Types
|
|
84
|
+
from rapidata.rapidata_client.config.order_config import OrderConfig
|
|
85
|
+
from rapidata.rapidata_client.config.upload_config import UploadConfig
|
|
86
|
+
from rapidata.rapidata_client.config.rapidata_config import RapidataConfig
|
|
87
|
+
from rapidata.rapidata_client.config.logging_config import LoggingConfig
|
|
88
|
+
|
|
89
|
+
# Exception Types
|
|
90
|
+
from rapidata.rapidata_client.exceptions.failed_upload_exception import (
|
|
91
|
+
FailedUploadException,
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
# Utility Types
|
|
95
|
+
from rapidata.rapidata_client.country_codes.country_codes import CountryCodes
|
|
96
|
+
from rapidata.rapidata_client.demographic.demographic_manager import DemographicManager
|
|
97
|
+
|
|
98
|
+
# API Client Types
|
|
99
|
+
from rapidata.rapidata_client.api.rapidata_api_client import RapidataApiClient
|
|
100
|
+
|
|
101
|
+
__all__ = [
|
|
102
|
+
# Main Client and Core Types
|
|
103
|
+
"RapidataClient",
|
|
104
|
+
# Order Types
|
|
105
|
+
"RapidataOrder",
|
|
106
|
+
"RapidataOrderManager",
|
|
107
|
+
"RapidataResults",
|
|
108
|
+
# Validation Types
|
|
109
|
+
"RapidataValidationSet",
|
|
110
|
+
"ValidationSetManager",
|
|
111
|
+
"Rapid",
|
|
112
|
+
"Box",
|
|
113
|
+
"RapidsManager",
|
|
114
|
+
# Benchmark Types
|
|
115
|
+
"RapidataBenchmark",
|
|
116
|
+
"RapidataBenchmarkManager",
|
|
117
|
+
"RapidataLeaderboard",
|
|
118
|
+
# Selection Types
|
|
119
|
+
"AbTestSelection",
|
|
120
|
+
"CappedSelection",
|
|
121
|
+
"ConditionalValidationSelection",
|
|
122
|
+
"DemographicSelection",
|
|
123
|
+
"EffortSelection",
|
|
124
|
+
"LabelingSelection",
|
|
125
|
+
"ShufflingSelection",
|
|
126
|
+
"StaticSelection",
|
|
127
|
+
"ValidationSelection",
|
|
128
|
+
"RapidataRetrievalMode",
|
|
129
|
+
# Filter Types
|
|
130
|
+
"AgeFilter",
|
|
131
|
+
"AndFilter",
|
|
132
|
+
"CampaignFilter",
|
|
133
|
+
"CountryFilter",
|
|
134
|
+
"CustomFilter",
|
|
135
|
+
"GenderFilter",
|
|
136
|
+
"LanguageFilter",
|
|
137
|
+
"NewUserFilter",
|
|
138
|
+
"NotFilter",
|
|
139
|
+
"OrFilter",
|
|
140
|
+
"ResponseCountFilter",
|
|
141
|
+
"UserScoreFilter",
|
|
142
|
+
# Filter Model Types
|
|
143
|
+
"AgeGroup",
|
|
144
|
+
"Gender",
|
|
145
|
+
# Settings Types
|
|
146
|
+
"AlertOnFastResponse",
|
|
147
|
+
"AllowNeitherBoth",
|
|
148
|
+
"CustomSetting",
|
|
149
|
+
"FreeTextMinimumCharacters",
|
|
150
|
+
"NoShuffle",
|
|
151
|
+
"PlayVideoUntilTheEnd",
|
|
152
|
+
"RapidataSettings",
|
|
153
|
+
"TranslationBehaviour",
|
|
154
|
+
"TranslationBehaviourOptions",
|
|
155
|
+
# Configuration Types
|
|
156
|
+
"OrderConfig",
|
|
157
|
+
"UploadConfig",
|
|
158
|
+
"RapidataConfig",
|
|
159
|
+
"LoggingConfig",
|
|
160
|
+
# Exception Types
|
|
161
|
+
"FailedUploadException",
|
|
162
|
+
# Utility Types
|
|
163
|
+
"CountryCodes",
|
|
164
|
+
"DemographicManager",
|
|
165
|
+
# API Client Types
|
|
166
|
+
"RapidataApiClient",
|
|
167
|
+
]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
rapidata/__init__.py,sha256=
|
|
1
|
+
rapidata/__init__.py,sha256=BZT4UfVlILJYOBc-BPU5ojwqvWzcOz_lKsc5HZmFrPw,917
|
|
2
2
|
rapidata/api_client/__init__.py,sha256=utY2iWepKJQO_iGz6aIg_qSoqoDkV9pBMAA58pIFE4M,36016
|
|
3
3
|
rapidata/api_client/api/__init__.py,sha256=07qqwzQiBYt5V2BtnzbXhZL2cmVHATyZmCSGshIXLck,1603
|
|
4
|
-
rapidata/api_client/api/benchmark_api.py,sha256=
|
|
4
|
+
rapidata/api_client/api/benchmark_api.py,sha256=Mlx2qDDJcgPjWvaBnps9dxvVd0re1knG0SyoLUiHKSc,119756
|
|
5
5
|
rapidata/api_client/api/campaign_api.py,sha256=o2YG4pp56rhYHoOZCk6QTIJFdFB0PAtTDdTR66VqvtM,60201
|
|
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,10 +12,10 @@ rapidata/api_client/api/dataset_api.py,sha256=DUCEfP7jlMAAMdvEa-47xq0mq3MGcyk4DA
|
|
|
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=MdF2fW2ox2yMc1-GxuYfYwCSEGpvOPcW_aTgSgW8jZM,101813
|
|
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
|
-
rapidata/api_client/api/participant_api.py,sha256=
|
|
18
|
+
rapidata/api_client/api/participant_api.py,sha256=dgaqllkhL3-O_RRYqYCVMOTjHDTXt8GWYMGRVlmoRmc,87595
|
|
19
19
|
rapidata/api_client/api/pipeline_api.py,sha256=QMeEHbKEV4m9sR_FMRiVLNFA-3DAYaPI0nf_RB_48sg,60533
|
|
20
20
|
rapidata/api_client/api/prompt_api.py,sha256=hMAmc9KVXf6cjmFtxHEnuk_jBkOnbWaOaw8BGfHCKDQ,12196
|
|
21
21
|
rapidata/api_client/api/rapid_api.py,sha256=2omzmCbZxfseGTwEMFGESrkSH-FlkP0JmqIWJqgm8fM,97187
|
|
@@ -24,7 +24,7 @@ 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=tQrV_6hTL-5UcIBCNbTq_tEhk8k_6rOHu_YdOJTwjnQ,167441
|
|
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
|
|
@@ -568,7 +568,7 @@ rapidata/api_client/models/workflow_split_model_filter_configs_inner.py,sha256=1
|
|
|
568
568
|
rapidata/api_client/models/workflow_state.py,sha256=5LAK1se76RCoozeVB6oxMPb8p_5bhLZJqn7q5fFQWis,850
|
|
569
569
|
rapidata/api_client/models/zip_entry_file_wrapper.py,sha256=06CoNJD3x511K3rnSmkrwwhc9GbQxwxF-c0ldOyJbAs,4240
|
|
570
570
|
rapidata/api_client/rest.py,sha256=rtIMcgINZOUaDFaJIinJkXRSddNJmXvMRMfgO2Ezk2o,10835
|
|
571
|
-
rapidata/api_client_README.md,sha256=
|
|
571
|
+
rapidata/api_client_README.md,sha256=FDf3Z-KzOPBIZGidToHfas8kWtVUYU-PPhhe6w2XmdE,60627
|
|
572
572
|
rapidata/rapidata_client/__init__.py,sha256=vOYH-N4yd5FyHtRq-VLiYCD5n8eRyAXbAlYIr4P_W9E,1176
|
|
573
573
|
rapidata/rapidata_client/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
574
574
|
rapidata/rapidata_client/api/rapidata_api_client.py,sha256=wuC9Y7fieS0MLyUpvXs5lqyvoREXx9860YeU0Tn59U0,8955
|
|
@@ -584,7 +584,7 @@ rapidata/rapidata_client/config/__init__.py,sha256=AdL9mKlOa_xm3spFKPBBdTYzhioQh
|
|
|
584
584
|
rapidata/rapidata_client/config/logger.py,sha256=nQl9w6wLdvKGJFqtEQWoUBAlDtvYmo3w4ekIx4sNynI,5518
|
|
585
585
|
rapidata/rapidata_client/config/logging_config.py,sha256=ePCh7X6v0Yzkgq1MhFNsHwLdcPEI4mYCCvBDxmWT7sU,2167
|
|
586
586
|
rapidata/rapidata_client/config/managed_print.py,sha256=2T6dwgR1EZzFAdOEyPp_BBUsa-qrEuhOXgFhsSQKvRo,185
|
|
587
|
-
rapidata/rapidata_client/config/order_config.py,sha256=
|
|
587
|
+
rapidata/rapidata_client/config/order_config.py,sha256=XxRZERzUUA9md6-PVlV__eCw8DD2kPbT_UmMwG1mAS4,615
|
|
588
588
|
rapidata/rapidata_client/config/rapidata_config.py,sha256=mURnKdl5-2sE4e_IYY9-aBkix6a12t47otEErGE_q0c,1507
|
|
589
589
|
rapidata/rapidata_client/config/tracer.py,sha256=h3GXzaX79HPcip4fBhLaLW0mRlXttR7D3KA78ZT0KVw,4736
|
|
590
590
|
rapidata/rapidata_client/config/upload_config.py,sha256=AYba-Nw9fddLFyfGB4ar2G8zZIVOHrCL_HZjTmvrKGQ,434
|
|
@@ -632,11 +632,11 @@ rapidata/rapidata_client/filter/response_count_filter.py,sha256=i2u2YQD3_RLQRZyq
|
|
|
632
632
|
rapidata/rapidata_client/filter/user_score_filter.py,sha256=4B3Zzp7aosDFmte3nLPTlXMN4zatT6Wcq5QLIoXqhgI,1910
|
|
633
633
|
rapidata/rapidata_client/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
634
634
|
rapidata/rapidata_client/order/_rapidata_dataset.py,sha256=ftJD0czFX79AG9It7q2qdrQmUIGoyGq713AoUoC6nfU,18976
|
|
635
|
-
rapidata/rapidata_client/order/_rapidata_order_builder.py,sha256=
|
|
635
|
+
rapidata/rapidata_client/order/_rapidata_order_builder.py,sha256=jLGdjjAKtZf5ZyLssx7nI3kyxIa9sg7N6RrMANnUN7o,16853
|
|
636
636
|
rapidata/rapidata_client/order/rapidata_order.py,sha256=FvZi3t4dARRNsKWvYiNxVvM50AzPwQYR3AzI4utD6OI,14497
|
|
637
637
|
rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=XiV_BpJxG6d8o0rFDYhnB3_mb576CQG5hY-qVXlJZKY,42592
|
|
638
638
|
rapidata/rapidata_client/order/rapidata_results.py,sha256=weL4S14fzug3ZOJbQk9Oj-4tv2jx5aZAMp7VJ-a6Qq4,8437
|
|
639
|
-
rapidata/rapidata_client/rapidata_client.py,sha256=
|
|
639
|
+
rapidata/rapidata_client/rapidata_client.py,sha256=Dm7ZW2tv0QNL1pMk8NHY79vpFXyPeKU6s0WMFHHIH20,5728
|
|
640
640
|
rapidata/rapidata_client/referee/__init__.py,sha256=J8oZJNUduPr-Tmn8iJwR-qBiSv7owhUFcEzXTRETecw,155
|
|
641
641
|
rapidata/rapidata_client/referee/_base_referee.py,sha256=aoH3Werw-AtQo2TncG69OmCVvnbXYJBfsRCQry_Pll0,497
|
|
642
642
|
rapidata/rapidata_client/referee/_early_stopping_referee.py,sha256=_JyFcTpncI0PrLf7Ix78FtLto31sdyGDS-2QbVTuvr8,2079
|
|
@@ -667,12 +667,12 @@ rapidata/rapidata_client/settings/play_video_until_the_end.py,sha256=vPtIYql197Q
|
|
|
667
667
|
rapidata/rapidata_client/settings/rapidata_settings.py,sha256=73QJhAn0Ys2TRfxM-LtPpLDOpGUM_PvYSD3sYs-NLaM,1821
|
|
668
668
|
rapidata/rapidata_client/settings/translation_behaviour.py,sha256=iH-c-oGig6XuGV1vOeUQ7GCjzSJz0ucn8-U49KyjA4s,735
|
|
669
669
|
rapidata/rapidata_client/validation/__init__.py,sha256=s5wHVtcJkncXSFuL9I0zNwccNOKpWAqxqUjkeohzi2E,24
|
|
670
|
-
rapidata/rapidata_client/validation/rapidata_validation_set.py,sha256=
|
|
670
|
+
rapidata/rapidata_client/validation/rapidata_validation_set.py,sha256=cz1loj46tcgo2JUh9_rP17rWof8lsjxAHw-vA3fgVpc,4475
|
|
671
671
|
rapidata/rapidata_client/validation/rapids/__init__.py,sha256=WU5PPwtTJlte6U90MDakzx4I8Y0laj7siw9teeXj5R0,21
|
|
672
672
|
rapidata/rapidata_client/validation/rapids/box.py,sha256=Tm2_fVdOuj-eTT8hDMajlpgWQLNtKZqw5_ud2xvjR2w,587
|
|
673
673
|
rapidata/rapidata_client/validation/rapids/rapids.py,sha256=QckFItbKggezXb2awkDlYJ3mOw0Z7Z7gHzkWMBQEGl4,4822
|
|
674
674
|
rapidata/rapidata_client/validation/rapids/rapids_manager.py,sha256=H4pjPghUUQS8Bk2mqcnxVmononVb14erpCvZm6q-kOk,14137
|
|
675
|
-
rapidata/rapidata_client/validation/validation_set_manager.py,sha256=
|
|
675
|
+
rapidata/rapidata_client/validation/validation_set_manager.py,sha256=XdXpa0zko0tpTgowGrE5DAjnIM9lM8WKemGYibZeAa8,34864
|
|
676
676
|
rapidata/rapidata_client/workflow/__init__.py,sha256=6kfMN7TQVpiQNGjNHg3X7KdnCyYe3K2TIq7ZVEatQcU,476
|
|
677
677
|
rapidata/rapidata_client/workflow/_base_workflow.py,sha256=iuWomsy1zIcIxLzYTBKmAHs4sQ_D4xQkMaNWqf57y3E,1461
|
|
678
678
|
rapidata/rapidata_client/workflow/_classify_workflow.py,sha256=kw-otP_m1TY-mWSjYeMtrD2lLRtsNoocxQ00x50sKo8,2520
|
|
@@ -688,7 +688,8 @@ rapidata/service/__init__.py,sha256=ULBu1tCwgp055OifUXZKtExkzqXeTa_LRROzjMWAd90,
|
|
|
688
688
|
rapidata/service/credential_manager.py,sha256=T3yL4tXVnibRytxjQkOC-ex3kFGQR5KcKUUAtao4PFw,8698
|
|
689
689
|
rapidata/service/local_file_service.py,sha256=0Q4LdoEtPFKzgXK2oZ1cQ-X7FipakscjGnnBH8dRFRQ,855
|
|
690
690
|
rapidata/service/openapi_service.py,sha256=k3V4eMNcAjBcxEv17lDivK8LV5TEjRTL9B_5KBlhcas,5482
|
|
691
|
-
rapidata
|
|
692
|
-
rapidata-2.
|
|
693
|
-
rapidata-2.
|
|
694
|
-
rapidata-2.
|
|
691
|
+
rapidata/types/__init__.py,sha256=gSGrmWV5gEA6pPfAR5vwSy_DvibO5IjCZDiB7LtlMOQ,6134
|
|
692
|
+
rapidata-2.40.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
693
|
+
rapidata-2.40.0.dist-info/METADATA,sha256=sAlNWCA528U0dUY9ytrZR3ezJeC-kc835jDFTuvhn-I,1406
|
|
694
|
+
rapidata-2.40.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
695
|
+
rapidata-2.40.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|