rapidata 2.42.5__py3-none-any.whl → 2.42.7__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/rapidata_client/__init__.py +1 -0
- rapidata/rapidata_client/config/tracer.py +37 -3
- rapidata/rapidata_client/filter/user_score_filter.py +6 -3
- rapidata/rapidata_client/order/rapidata_order_manager.py +7 -2
- rapidata/rapidata_client/rapidata_client.py +6 -1
- rapidata/rapidata_client/settings/__init__.py +1 -0
- rapidata/rapidata_client/settings/allow_neither_both.py +2 -0
- rapidata/rapidata_client/settings/mute_video.py +15 -0
- rapidata/rapidata_client/settings/rapidata_settings.py +4 -1
- rapidata/rapidata_client/validation/rapids/_validation_rapid_uploader.py +2 -0
- {rapidata-2.42.5.dist-info → rapidata-2.42.7.dist-info}/METADATA +1 -1
- {rapidata-2.42.5.dist-info → rapidata-2.42.7.dist-info}/RECORD +15 -14
- {rapidata-2.42.5.dist-info → rapidata-2.42.7.dist-info}/WHEEL +0 -0
- {rapidata-2.42.5.dist-info → rapidata-2.42.7.dist-info}/licenses/LICENSE +0 -0
rapidata/__init__.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = "2.42.
|
|
1
|
+
__version__ = "2.42.7"
|
|
2
2
|
|
|
3
3
|
from .rapidata_client import (
|
|
4
4
|
RapidataClient,
|
|
@@ -17,6 +17,7 @@ from .rapidata_client import (
|
|
|
17
17
|
FreeTextMinimumCharacters,
|
|
18
18
|
NoShuffle,
|
|
19
19
|
PlayVideoUntilTheEnd,
|
|
20
|
+
MuteVideo,
|
|
20
21
|
CustomSetting,
|
|
21
22
|
AllowNeitherBoth,
|
|
22
23
|
SwapContextInstruction,
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
from typing import Protocol, runtime_checkable, Any
|
|
2
|
-
from opentelemetry import trace
|
|
3
2
|
from opentelemetry.exporter.otlp.proto.http.trace_exporter import OTLPSpanExporter
|
|
4
3
|
from opentelemetry.sdk.trace import TracerProvider
|
|
5
4
|
from opentelemetry.sdk.trace.export import BatchSpanProcessor
|
|
@@ -15,6 +14,7 @@ class TracerProtocol(Protocol):
|
|
|
15
14
|
|
|
16
15
|
def start_span(self, name: str, *args, **kwargs) -> Any: ...
|
|
17
16
|
def start_as_current_span(self, name: str, *args, **kwargs) -> Any: ...
|
|
17
|
+
def set_session_id(self, session_id: str) -> None: ...
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
class NoOpSpan:
|
|
@@ -52,11 +52,31 @@ class NoOpTracer:
|
|
|
52
52
|
def start_as_current_span(self, name: str, *args, **kwargs) -> NoOpSpan:
|
|
53
53
|
return NoOpSpan()
|
|
54
54
|
|
|
55
|
+
def set_session_id(self, session_id: str) -> None:
|
|
56
|
+
pass
|
|
57
|
+
|
|
55
58
|
def __getattr__(self, name: str) -> Any:
|
|
56
59
|
"""Delegate to no-op behavior."""
|
|
57
60
|
return lambda *args, **kwargs: NoOpSpan()
|
|
58
61
|
|
|
59
62
|
|
|
63
|
+
class SpanContextManagerWrapper:
|
|
64
|
+
"""Wrapper for span context managers to add session_id on enter."""
|
|
65
|
+
|
|
66
|
+
def __init__(self, context_manager: Any, session_id: str | None):
|
|
67
|
+
self._context_manager = context_manager
|
|
68
|
+
self.session_id = session_id
|
|
69
|
+
|
|
70
|
+
def __enter__(self):
|
|
71
|
+
span = self._context_manager.__enter__()
|
|
72
|
+
if self.session_id and hasattr(span, "set_attribute"):
|
|
73
|
+
span.set_attribute("SDK.session.id", self.session_id)
|
|
74
|
+
return span
|
|
75
|
+
|
|
76
|
+
def __exit__(self, *args):
|
|
77
|
+
return self._context_manager.__exit__(*args)
|
|
78
|
+
|
|
79
|
+
|
|
60
80
|
class RapidataTracer:
|
|
61
81
|
"""Tracer implementation that updates when the configuration changes."""
|
|
62
82
|
|
|
@@ -67,6 +87,7 @@ class RapidataTracer:
|
|
|
67
87
|
self._real_tracer = None
|
|
68
88
|
self._no_op_tracer = NoOpTracer()
|
|
69
89
|
self._enabled = True # Default to enabled
|
|
90
|
+
self.session_id: str | None = None
|
|
70
91
|
|
|
71
92
|
# Register this tracer to receive configuration updates
|
|
72
93
|
register_config_handler(self._handle_config_update)
|
|
@@ -106,18 +127,31 @@ class RapidataTracer:
|
|
|
106
127
|
logger.warning(f"Failed to initialize tracing: {e}")
|
|
107
128
|
self._enabled = False
|
|
108
129
|
|
|
130
|
+
def _add_session_id_to_span(self, span: Any) -> Any:
|
|
131
|
+
"""Add session_id attribute to a span if session_id is set."""
|
|
132
|
+
if self.session_id and hasattr(span, "set_attribute"):
|
|
133
|
+
span.set_attribute("SDK.session.id", self.session_id)
|
|
134
|
+
return span
|
|
135
|
+
|
|
109
136
|
def start_span(self, name: str, *args, **kwargs) -> Any:
|
|
110
137
|
"""Start a span, or return a no-op span if tracing is disabled."""
|
|
111
138
|
if self._enabled and self._real_tracer:
|
|
112
|
-
|
|
139
|
+
span = self._real_tracer.start_span(name, *args, **kwargs)
|
|
140
|
+
return self._add_session_id_to_span(span)
|
|
113
141
|
return self._no_op_tracer.start_span(name, *args, **kwargs)
|
|
114
142
|
|
|
115
143
|
def start_as_current_span(self, name: str, *args, **kwargs) -> Any:
|
|
116
144
|
"""Start a span as current, or return a no-op span if tracing is disabled."""
|
|
117
145
|
if self._enabled and self._real_tracer:
|
|
118
|
-
|
|
146
|
+
context_manager = self._real_tracer.start_as_current_span(
|
|
147
|
+
name, *args, **kwargs
|
|
148
|
+
)
|
|
149
|
+
return SpanContextManagerWrapper(context_manager, self.session_id)
|
|
119
150
|
return self._no_op_tracer.start_as_current_span(name, *args, **kwargs)
|
|
120
151
|
|
|
152
|
+
def set_session_id(self, session_id: str) -> None:
|
|
153
|
+
self.session_id = session_id
|
|
154
|
+
|
|
121
155
|
def __getattr__(self, name: str) -> Any:
|
|
122
156
|
"""Delegate attribute access to the appropriate tracer."""
|
|
123
157
|
if self._enabled and self._real_tracer:
|
|
@@ -23,12 +23,15 @@ class UserScoreFilter(RapidataFilter, BaseModel):
|
|
|
23
23
|
This will only show the order to users that have a UserScore of >=0.5 and <=0.9
|
|
24
24
|
"""
|
|
25
25
|
|
|
26
|
-
lower_bound: float
|
|
27
|
-
upper_bound: float
|
|
26
|
+
lower_bound: float
|
|
27
|
+
upper_bound: float
|
|
28
28
|
dimension: str | None = None
|
|
29
29
|
|
|
30
30
|
def __init__(
|
|
31
|
-
self,
|
|
31
|
+
self,
|
|
32
|
+
lower_bound: float = 0.0,
|
|
33
|
+
upper_bound: float = 1.0,
|
|
34
|
+
dimension: str | None = None,
|
|
32
35
|
):
|
|
33
36
|
super().__init__(
|
|
34
37
|
lower_bound=lower_bound, upper_bound=upper_bound, dimension=dimension
|
|
@@ -321,8 +321,10 @@ class RapidataOrderManager:
|
|
|
321
321
|
if any(not isinstance(datapoint, list) for datapoint in datapoints):
|
|
322
322
|
raise ValueError("Each datapoint must be a list of 2 paths/texts")
|
|
323
323
|
|
|
324
|
-
if any(len(datapoint) != 2 for datapoint in datapoints):
|
|
325
|
-
raise ValueError(
|
|
324
|
+
if any(len(set(datapoint)) != 2 for datapoint in datapoints):
|
|
325
|
+
raise ValueError(
|
|
326
|
+
"Each datapoint must contain exactly two unique options"
|
|
327
|
+
)
|
|
326
328
|
|
|
327
329
|
if a_b_names is not None and len(a_b_names) != 2:
|
|
328
330
|
raise ValueError(
|
|
@@ -392,6 +394,9 @@ class RapidataOrderManager:
|
|
|
392
394
|
if len(datapoints) < 2:
|
|
393
395
|
raise ValueError("At least two datapoints are required")
|
|
394
396
|
|
|
397
|
+
if len(set(datapoints)) != len(datapoints):
|
|
398
|
+
raise ValueError("Datapoints must be unique")
|
|
399
|
+
|
|
395
400
|
return self._create_general_order(
|
|
396
401
|
name=name,
|
|
397
402
|
workflow=RankingWorkflow(
|
|
@@ -3,7 +3,8 @@ from typing import Any
|
|
|
3
3
|
import requests
|
|
4
4
|
from packaging import version
|
|
5
5
|
from rapidata import __version__
|
|
6
|
-
|
|
6
|
+
import uuid
|
|
7
|
+
import random
|
|
7
8
|
from rapidata.service.openapi_service import OpenAPIService
|
|
8
9
|
|
|
9
10
|
from rapidata.rapidata_client.order.rapidata_order_manager import RapidataOrderManager
|
|
@@ -56,6 +57,10 @@ class RapidataClient:
|
|
|
56
57
|
demographic (DemographicManager): The DemographicManager instance.
|
|
57
58
|
mri (RapidataBenchmarkManager): The RapidataBenchmarkManager instance.
|
|
58
59
|
"""
|
|
60
|
+
tracer.set_session_id(
|
|
61
|
+
uuid.UUID(int=random.Random().getrandbits(128), version=4).hex
|
|
62
|
+
)
|
|
63
|
+
|
|
59
64
|
with tracer.start_as_current_span("RapidataClient.__init__"):
|
|
60
65
|
logger.debug("Checking version")
|
|
61
66
|
self._check_version()
|
|
@@ -8,4 +8,5 @@ from .custom_setting import CustomSetting
|
|
|
8
8
|
from ._rapidata_setting import RapidataSetting
|
|
9
9
|
from .allow_neither_both import AllowNeitherBoth
|
|
10
10
|
from .swap_context_instruction import SwapContextInstruction
|
|
11
|
+
from .mute_video import MuteVideo
|
|
11
12
|
from .rapidata_settings import RapidataSettings
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from rapidata.rapidata_client.settings._rapidata_setting import RapidataSetting
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class MuteVideo(RapidataSetting):
|
|
5
|
+
"""
|
|
6
|
+
Mute the video. If this setting is not supplied, the video will not be muted.
|
|
7
|
+
|
|
8
|
+
Args:
|
|
9
|
+
value (bool): Whether to mute the video. Defaults to True.
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
def __init__(self, value: bool = True):
|
|
13
|
+
if not isinstance(value, bool):
|
|
14
|
+
raise ValueError("The value must be a boolean.")
|
|
15
|
+
super().__init__(key="mute_video_asset", value=value)
|
|
@@ -6,6 +6,7 @@ from rapidata.rapidata_client.settings import (
|
|
|
6
6
|
PlayVideoUntilTheEnd,
|
|
7
7
|
AllowNeitherBoth,
|
|
8
8
|
SwapContextInstruction,
|
|
9
|
+
MuteVideo,
|
|
9
10
|
)
|
|
10
11
|
|
|
11
12
|
|
|
@@ -23,6 +24,7 @@ class RapidataSettings:
|
|
|
23
24
|
play_video_until_the_end (PlayVideoUntilTheEnd): Allows users to only answer once the video has finished playing.
|
|
24
25
|
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
26
|
swap_context_instruction (SwapContextInstruction): Swap the place of the context and instruction.
|
|
27
|
+
mute_video (MuteVideo): Mute the video.
|
|
26
28
|
|
|
27
29
|
Example:
|
|
28
30
|
```python
|
|
@@ -40,9 +42,10 @@ class RapidataSettings:
|
|
|
40
42
|
play_video_until_the_end = PlayVideoUntilTheEnd
|
|
41
43
|
allow_neither_both = AllowNeitherBoth
|
|
42
44
|
swap_context_instruction = SwapContextInstruction
|
|
45
|
+
mute_video = MuteVideo
|
|
43
46
|
|
|
44
47
|
def __str__(self) -> str:
|
|
45
|
-
return f"RapidataSettings(alert_on_fast_response={self.alert_on_fast_response}, translation_behaviour={self.translation_behaviour}, free_text_minimum_characters={self.free_text_minimum_characters}, no_shuffle={self.no_shuffle}, play_video_until_the_end={self.play_video_until_the_end}, allow_neither_both={self.allow_neither_both}, swap_context_instruction={self.swap_context_instruction})"
|
|
48
|
+
return f"RapidataSettings(alert_on_fast_response={self.alert_on_fast_response}, translation_behaviour={self.translation_behaviour}, free_text_minimum_characters={self.free_text_minimum_characters}, no_shuffle={self.no_shuffle}, play_video_until_the_end={self.play_video_until_the_end}, allow_neither_both={self.allow_neither_both}, swap_context_instruction={self.swap_context_instruction}, mute_video={self.mute_video})"
|
|
46
49
|
|
|
47
50
|
def __repr__(self) -> str:
|
|
48
51
|
return self.__str__()
|
|
@@ -51,6 +51,8 @@ class ValidationRapidUploader:
|
|
|
51
51
|
metadata=metadata,
|
|
52
52
|
payload=self._get_payload(rapid),
|
|
53
53
|
truth=AddValidationRapidModelTruth(actual_instance=rapid.truth),
|
|
54
|
+
randomCorrectProbability=rapid.random_correct_probability,
|
|
55
|
+
explanation=rapid.explanation,
|
|
54
56
|
featureFlags=(
|
|
55
57
|
[setting._to_feature_flag() for setting in rapid.settings]
|
|
56
58
|
if rapid.settings
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
rapidata/__init__.py,sha256=
|
|
1
|
+
rapidata/__init__.py,sha256=BpCIwBQOBgqjt6xF6FxsuQ7qwy0z6EWVVUf6HjKgDHo,872
|
|
2
2
|
rapidata/api_client/__init__.py,sha256=Rh2aAoa6nDv09Z7cpTNdrPotXixBcNN_2VevCDD1goc,37144
|
|
3
3
|
rapidata/api_client/api/__init__.py,sha256=CaZJ54mxbAEzAFd0Cjy0mfiUabD-d_7tqVOgjU4RxZI,1749
|
|
4
4
|
rapidata/api_client/api/asset_api.py,sha256=buYMBGvg5_SLkJ7aG07c7_1rT6TXTCqoLfoV8O2nJhM,34442
|
|
@@ -599,7 +599,7 @@ rapidata/api_client/models/workflow_state.py,sha256=5LAK1se76RCoozeVB6oxMPb8p_5b
|
|
|
599
599
|
rapidata/api_client/models/zip_entry_file_wrapper.py,sha256=-c8uJo-Dd-FGYPLzUR8sHV2waucFoDwEaJ_ztDGW7vc,5830
|
|
600
600
|
rapidata/api_client/rest.py,sha256=rtIMcgINZOUaDFaJIinJkXRSddNJmXvMRMfgO2Ezk2o,10835
|
|
601
601
|
rapidata/api_client_README.md,sha256=0AWEwcE005y5Q8IBzgEWgOa-iwqImdbY99RnQnlei70,63261
|
|
602
|
-
rapidata/rapidata_client/__init__.py,sha256=
|
|
602
|
+
rapidata/rapidata_client/__init__.py,sha256=5rurgu-1s65Hazm61g-zNishhocWBuG0BuV83EkgBfA,1095
|
|
603
603
|
rapidata/rapidata_client/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
604
604
|
rapidata/rapidata_client/api/rapidata_api_client.py,sha256=9385bND7sDuXfmq0AFgea_RrtuT73NA2CWG_9aIoGok,8945
|
|
605
605
|
rapidata/rapidata_client/benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -616,7 +616,7 @@ rapidata/rapidata_client/config/logging_config.py,sha256=ePCh7X6v0Yzkgq1MhFNsHwL
|
|
|
616
616
|
rapidata/rapidata_client/config/managed_print.py,sha256=2T6dwgR1EZzFAdOEyPp_BBUsa-qrEuhOXgFhsSQKvRo,185
|
|
617
617
|
rapidata/rapidata_client/config/order_config.py,sha256=XxRZERzUUA9md6-PVlV__eCw8DD2kPbT_UmMwG1mAS4,615
|
|
618
618
|
rapidata/rapidata_client/config/rapidata_config.py,sha256=mURnKdl5-2sE4e_IYY9-aBkix6a12t47otEErGE_q0c,1507
|
|
619
|
-
rapidata/rapidata_client/config/tracer.py,sha256=
|
|
619
|
+
rapidata/rapidata_client/config/tracer.py,sha256=AkDcW89h5OrT1t0rk1ulidytKS4oJFG1kCLrHj8eBG4,5943
|
|
620
620
|
rapidata/rapidata_client/config/upload_config.py,sha256=hjefl-w9WaCNeCEe6hdnrAQEMjgDy-r1zgUUIFR68wk,473
|
|
621
621
|
rapidata/rapidata_client/datapoints/__init__.py,sha256=pRjH6YQLbIHOumykMgplKxFfhj6g7a2Dh2FPdFNyNsg,222
|
|
622
622
|
rapidata/rapidata_client/datapoints/_asset_uploader.py,sha256=ie9MZfzhxa0ZrRveJ516cgwvA6QIeVIxN3g5ikwLOH0,2605
|
|
@@ -653,14 +653,14 @@ rapidata/rapidata_client/filter/not_filter.py,sha256=BfGx3db9tRGrNj6YHXK8tiyVXaz
|
|
|
653
653
|
rapidata/rapidata_client/filter/or_filter.py,sha256=IabAoq15IhTGQrse_9_DMGCX-lUV_mx3vN4sM3fypA4,1400
|
|
654
654
|
rapidata/rapidata_client/filter/rapidata_filters.py,sha256=B8ptQsaAn1e14Grv8xBYQ4qcU0Vt2VTjEpkk-tyOCTo,2201
|
|
655
655
|
rapidata/rapidata_client/filter/response_count_filter.py,sha256=5vxBWh7VUarIIkfZRscPCDhqOptvar-2GOvbKmiJ6Y8,2199
|
|
656
|
-
rapidata/rapidata_client/filter/user_score_filter.py,sha256=
|
|
656
|
+
rapidata/rapidata_client/filter/user_score_filter.py,sha256=z2wvyrEWsCCm1I_CbzmjLzK-pDsScWkNWIKB57F_TGU,1930
|
|
657
657
|
rapidata/rapidata_client/order/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
658
658
|
rapidata/rapidata_client/order/_rapidata_order_builder.py,sha256=FTJJRCW9KehIlqELOXmKeLhuGcLj9m9ImEU1agOIRa4,16915
|
|
659
659
|
rapidata/rapidata_client/order/dataset/_rapidata_dataset.py,sha256=8EhoRVBxWMbp1mtS56Uogg2dwFC2vySw5hNqTPDTHzM,6345
|
|
660
660
|
rapidata/rapidata_client/order/rapidata_order.py,sha256=w41HUWE6q9L2Stx0ScZdKb7qLjWFIUPMMDOe2fElLvM,14481
|
|
661
|
-
rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=
|
|
661
|
+
rapidata/rapidata_client/order/rapidata_order_manager.py,sha256=3GafS6k815iq-s9wgS9RqUvh8OY1Kgu7LxSjLsKry5w,41197
|
|
662
662
|
rapidata/rapidata_client/order/rapidata_results.py,sha256=weL4S14fzug3ZOJbQk9Oj-4tv2jx5aZAMp7VJ-a6Qq4,8437
|
|
663
|
-
rapidata/rapidata_client/rapidata_client.py,sha256=
|
|
663
|
+
rapidata/rapidata_client/rapidata_client.py,sha256=9BgFbkPulmNNtKE7Cug7qcRQNuH-S8S8cof8NXnleuE,6004
|
|
664
664
|
rapidata/rapidata_client/referee/__init__.py,sha256=J8oZJNUduPr-Tmn8iJwR-qBiSv7owhUFcEzXTRETecw,155
|
|
665
665
|
rapidata/rapidata_client/referee/_base_referee.py,sha256=aoH3Werw-AtQo2TncG69OmCVvnbXYJBfsRCQry_Pll0,497
|
|
666
666
|
rapidata/rapidata_client/referee/_early_stopping_referee.py,sha256=_JyFcTpncI0PrLf7Ix78FtLto31sdyGDS-2QbVTuvr8,2079
|
|
@@ -678,23 +678,24 @@ rapidata/rapidata_client/selection/rapidata_selections.py,sha256=EdH0DGmDYEkfsAg
|
|
|
678
678
|
rapidata/rapidata_client/selection/shuffling_selection.py,sha256=uAl3eB_qd_s4tANaFu9zaYSk73pDWvcixYwBCMGEzKc,1362
|
|
679
679
|
rapidata/rapidata_client/selection/static_selection.py,sha256=aKpTZXrA6o2qJFCX7jqbX1BRUuKXcV7RqokoOaBqhZw,669
|
|
680
680
|
rapidata/rapidata_client/selection/validation_selection.py,sha256=K8GviasRlMFSLUZdVqjBaMGIrsShnwuihenG07mci7A,1095
|
|
681
|
-
rapidata/rapidata_client/settings/__init__.py,sha256=
|
|
681
|
+
rapidata/rapidata_client/settings/__init__.py,sha256=eHBKWdweEztOtZg5TX4Z5BJyCC90nz-58vaiqjsH8gY,602
|
|
682
682
|
rapidata/rapidata_client/settings/_rapidata_setting.py,sha256=ZiTzyEr9ihFif0av9CroY1KJ4PfFMB_cV_nrvBsG--s,583
|
|
683
683
|
rapidata/rapidata_client/settings/alert_on_fast_response.py,sha256=VYOQ1EfKolYmsNNI4gJPx-_UWFl9dtrroca796jrAZI,1007
|
|
684
|
-
rapidata/rapidata_client/settings/allow_neither_both.py,sha256=
|
|
684
|
+
rapidata/rapidata_client/settings/allow_neither_both.py,sha256=OiRUuuR9xJ8Dtl0hpHiCIHK-SS1vu1GJ_ztnx3Fkhw4,641
|
|
685
685
|
rapidata/rapidata_client/settings/custom_setting.py,sha256=YhVr5uvsp4GT6nXzZqgzbKPrcNlMkRB4alYtFqk_Na4,568
|
|
686
686
|
rapidata/rapidata_client/settings/free_text_minimum_characters.py,sha256=m3C28_OhJNCiy2GKwi9VIXOSamjoHKDZUyVYdYFCWCg,777
|
|
687
687
|
rapidata/rapidata_client/settings/models/__init__.py,sha256=IW7OuWg7xWIwFYrMAOX5N0HGGcqE6fFpgYin3vWRkOU,71
|
|
688
688
|
rapidata/rapidata_client/settings/models/translation_behaviour_options.py,sha256=shbCpoi8bOqIArcZtnBL9ZRvUsyVXwjs3nRj9-uzZw4,472
|
|
689
|
+
rapidata/rapidata_client/settings/mute_video.py,sha256=F8uUfqvhjySNLqC6IVv9QVOa-l-oKaiXfOtn90BTTzQ,500
|
|
689
690
|
rapidata/rapidata_client/settings/no_shuffle.py,sha256=RJKJl76vyakEQ6tyA-06GSo3wF57uxTjF-4f07gK_Gg,674
|
|
690
691
|
rapidata/rapidata_client/settings/play_video_until_the_end.py,sha256=vPtIYql197Q0h6N_TlYuI3AbakBJUmnYUmhoSns9EWc,754
|
|
691
|
-
rapidata/rapidata_client/settings/rapidata_settings.py,sha256=
|
|
692
|
+
rapidata/rapidata_client/settings/rapidata_settings.py,sha256=ByThJw1df3jEvz8-8a6txxyF2cHINpxXcbaLWpVZCmc,2621
|
|
692
693
|
rapidata/rapidata_client/settings/swap_context_instruction.py,sha256=DLa1CDKIHVWC0VBOYTbb9HZBebzsaIGT_2DHq9I0ovs,712
|
|
693
694
|
rapidata/rapidata_client/settings/translation_behaviour.py,sha256=uEke2WgzrjzRlSROgeyP7v9t5ayFynHzytjIU_gVu3Y,741
|
|
694
695
|
rapidata/rapidata_client/validation/__init__.py,sha256=s5wHVtcJkncXSFuL9I0zNwccNOKpWAqxqUjkeohzi2E,24
|
|
695
696
|
rapidata/rapidata_client/validation/rapidata_validation_set.py,sha256=eJlv0XKUC75caJKu6_kpY0EL0ZtmHpt2c3SgFjlmqRU,4666
|
|
696
697
|
rapidata/rapidata_client/validation/rapids/__init__.py,sha256=WU5PPwtTJlte6U90MDakzx4I8Y0laj7siw9teeXj5R0,21
|
|
697
|
-
rapidata/rapidata_client/validation/rapids/_validation_rapid_uploader.py,sha256=
|
|
698
|
+
rapidata/rapidata_client/validation/rapids/_validation_rapid_uploader.py,sha256=9O5kQNu9lom7x2X09sGfFFecXNO2dU4d2O1L-_n_hAw,4072
|
|
698
699
|
rapidata/rapidata_client/validation/rapids/box.py,sha256=sJbxOpz86MplXmZl6gquzgQzpFIW8fw-F0eyQY4ClDo,1486
|
|
699
700
|
rapidata/rapidata_client/validation/rapids/rapids.py,sha256=E4O4p2br0g9lgB3tOdfEBm07g8o6pCDQgQv7fi6QzF8,999
|
|
700
701
|
rapidata/rapidata_client/validation/rapids/rapids_manager.py,sha256=YqGxnqJ2vYfAywXJDujQEBrYnlf0URdLxQ7hTR1JeOI,16225
|
|
@@ -715,7 +716,7 @@ rapidata/service/credential_manager.py,sha256=T3yL4tXVnibRytxjQkOC-ex3kFGQR5KcKU
|
|
|
715
716
|
rapidata/service/local_file_service.py,sha256=0Q4LdoEtPFKzgXK2oZ1cQ-X7FipakscjGnnBH8dRFRQ,855
|
|
716
717
|
rapidata/service/openapi_service.py,sha256=E2zVagI_ri15PK06ITO_VNKYDJ0VZQG1YQ1T6bEIVsY,5566
|
|
717
718
|
rapidata/types/__init__.py,sha256=NLRuTGbTImRv3yIp8we_oqVvCuBd7TDNVlAzkVGs9oo,6056
|
|
718
|
-
rapidata-2.42.
|
|
719
|
-
rapidata-2.42.
|
|
720
|
-
rapidata-2.42.
|
|
721
|
-
rapidata-2.42.
|
|
719
|
+
rapidata-2.42.7.dist-info/METADATA,sha256=ZQbzB1WKuzpVAb2VOIAVg2jG10Jis0ziybIzQjLYLhI,1479
|
|
720
|
+
rapidata-2.42.7.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
721
|
+
rapidata-2.42.7.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
722
|
+
rapidata-2.42.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|