rapidata 2.33.2__py3-none-any.whl → 2.34.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 +4 -0
- rapidata/api_client/api/__init__.py +1 -0
- rapidata/api_client/api/benchmark_api.py +6 -5
- rapidata/api_client/api/leaderboard_api.py +29 -296
- rapidata/api_client/api/prompt_api.py +320 -0
- rapidata/api_client/api/validation_set_api.py +3 -3
- rapidata/api_client/models/__init__.py +3 -0
- rapidata/api_client/models/conditional_validation_selection.py +4 -2
- rapidata/api_client/models/create_leaderboard_model.py +9 -2
- rapidata/api_client/models/get_standing_by_id_result.py +4 -15
- rapidata/api_client/models/prompt_by_benchmark_result.py +3 -1
- rapidata/api_client/models/standing_by_leaderboard.py +1 -1
- rapidata/api_client/models/standings_by_leaderboard_result.py +95 -0
- rapidata/api_client/models/tags_by_benchmark_result.py +87 -0
- rapidata/api_client/models/update_prompt_tags_model.py +87 -0
- rapidata/api_client_README.md +5 -2
- rapidata/rapidata_client/benchmark/leaderboard/rapidata_leaderboard.py +12 -9
- rapidata/rapidata_client/benchmark/rapidata_benchmark.py +25 -4
- rapidata/rapidata_client/benchmark/rapidata_benchmark_manager.py +14 -8
- {rapidata-2.33.2.dist-info → rapidata-2.34.0.dist-info}/METADATA +1 -1
- {rapidata-2.33.2.dist-info → rapidata-2.34.0.dist-info}/RECORD +24 -20
- {rapidata-2.33.2.dist-info → rapidata-2.34.0.dist-info}/LICENSE +0 -0
- {rapidata-2.33.2.dist-info → rapidata-2.34.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Rapidata.Dataset
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v1
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, StrictStr
|
|
21
|
+
from typing import Any, ClassVar, Dict, List
|
|
22
|
+
from typing import Optional, Set
|
|
23
|
+
from typing_extensions import Self
|
|
24
|
+
|
|
25
|
+
class TagsByBenchmarkResult(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
TagsByBenchmarkResult
|
|
28
|
+
""" # noqa: E501
|
|
29
|
+
tags: List[StrictStr]
|
|
30
|
+
__properties: ClassVar[List[str]] = ["tags"]
|
|
31
|
+
|
|
32
|
+
model_config = ConfigDict(
|
|
33
|
+
populate_by_name=True,
|
|
34
|
+
validate_assignment=True,
|
|
35
|
+
protected_namespaces=(),
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def to_str(self) -> str:
|
|
40
|
+
"""Returns the string representation of the model using alias"""
|
|
41
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
42
|
+
|
|
43
|
+
def to_json(self) -> str:
|
|
44
|
+
"""Returns the JSON representation of the model using alias"""
|
|
45
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
46
|
+
return json.dumps(self.to_dict())
|
|
47
|
+
|
|
48
|
+
@classmethod
|
|
49
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
50
|
+
"""Create an instance of TagsByBenchmarkResult from a JSON string"""
|
|
51
|
+
return cls.from_dict(json.loads(json_str))
|
|
52
|
+
|
|
53
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
54
|
+
"""Return the dictionary representation of the model using alias.
|
|
55
|
+
|
|
56
|
+
This has the following differences from calling pydantic's
|
|
57
|
+
`self.model_dump(by_alias=True)`:
|
|
58
|
+
|
|
59
|
+
* `None` is only added to the output dict for nullable fields that
|
|
60
|
+
were set at model initialization. Other fields with value `None`
|
|
61
|
+
are ignored.
|
|
62
|
+
"""
|
|
63
|
+
excluded_fields: Set[str] = set([
|
|
64
|
+
])
|
|
65
|
+
|
|
66
|
+
_dict = self.model_dump(
|
|
67
|
+
by_alias=True,
|
|
68
|
+
exclude=excluded_fields,
|
|
69
|
+
exclude_none=True,
|
|
70
|
+
)
|
|
71
|
+
return _dict
|
|
72
|
+
|
|
73
|
+
@classmethod
|
|
74
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
75
|
+
"""Create an instance of TagsByBenchmarkResult from a dict"""
|
|
76
|
+
if obj is None:
|
|
77
|
+
return None
|
|
78
|
+
|
|
79
|
+
if not isinstance(obj, dict):
|
|
80
|
+
return cls.model_validate(obj)
|
|
81
|
+
|
|
82
|
+
_obj = cls.model_validate({
|
|
83
|
+
"tags": obj.get("tags")
|
|
84
|
+
})
|
|
85
|
+
return _obj
|
|
86
|
+
|
|
87
|
+
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Rapidata.Dataset
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v1
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
21
|
+
from typing import Any, ClassVar, Dict, List
|
|
22
|
+
from typing import Optional, Set
|
|
23
|
+
from typing_extensions import Self
|
|
24
|
+
|
|
25
|
+
class UpdatePromptTagsModel(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
The model for updating prompt tags.
|
|
28
|
+
""" # noqa: E501
|
|
29
|
+
tags: List[StrictStr] = Field(description="The list of tags to be associated with the prompt.")
|
|
30
|
+
__properties: ClassVar[List[str]] = ["tags"]
|
|
31
|
+
|
|
32
|
+
model_config = ConfigDict(
|
|
33
|
+
populate_by_name=True,
|
|
34
|
+
validate_assignment=True,
|
|
35
|
+
protected_namespaces=(),
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def to_str(self) -> str:
|
|
40
|
+
"""Returns the string representation of the model using alias"""
|
|
41
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
42
|
+
|
|
43
|
+
def to_json(self) -> str:
|
|
44
|
+
"""Returns the JSON representation of the model using alias"""
|
|
45
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
46
|
+
return json.dumps(self.to_dict())
|
|
47
|
+
|
|
48
|
+
@classmethod
|
|
49
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
50
|
+
"""Create an instance of UpdatePromptTagsModel from a JSON string"""
|
|
51
|
+
return cls.from_dict(json.loads(json_str))
|
|
52
|
+
|
|
53
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
54
|
+
"""Return the dictionary representation of the model using alias.
|
|
55
|
+
|
|
56
|
+
This has the following differences from calling pydantic's
|
|
57
|
+
`self.model_dump(by_alias=True)`:
|
|
58
|
+
|
|
59
|
+
* `None` is only added to the output dict for nullable fields that
|
|
60
|
+
were set at model initialization. Other fields with value `None`
|
|
61
|
+
are ignored.
|
|
62
|
+
"""
|
|
63
|
+
excluded_fields: Set[str] = set([
|
|
64
|
+
])
|
|
65
|
+
|
|
66
|
+
_dict = self.model_dump(
|
|
67
|
+
by_alias=True,
|
|
68
|
+
exclude=excluded_fields,
|
|
69
|
+
exclude_none=True,
|
|
70
|
+
)
|
|
71
|
+
return _dict
|
|
72
|
+
|
|
73
|
+
@classmethod
|
|
74
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
75
|
+
"""Create an instance of UpdatePromptTagsModel from a dict"""
|
|
76
|
+
if obj is None:
|
|
77
|
+
return None
|
|
78
|
+
|
|
79
|
+
if not isinstance(obj, dict):
|
|
80
|
+
return cls.model_validate(obj)
|
|
81
|
+
|
|
82
|
+
_obj = cls.model_validate({
|
|
83
|
+
"tags": obj.get("tags")
|
|
84
|
+
})
|
|
85
|
+
return _obj
|
|
86
|
+
|
|
87
|
+
|
rapidata/api_client_README.md
CHANGED
|
@@ -135,7 +135,6 @@ Class | Method | HTTP request | Description
|
|
|
135
135
|
*LeaderboardApi* | [**leaderboard_leaderboard_id_participants_post**](rapidata/api_client/docs/LeaderboardApi.md#leaderboard_leaderboard_id_participants_post) | **POST** /leaderboard/{leaderboardId}/participants | Creates a participant in a leaderboard.
|
|
136
136
|
*LeaderboardApi* | [**leaderboard_leaderboard_id_prompts_get**](rapidata/api_client/docs/LeaderboardApi.md#leaderboard_leaderboard_id_prompts_get) | **GET** /leaderboard/{leaderboardId}/prompts | returns the paged prompts of a leaderboard by its ID.
|
|
137
137
|
*LeaderboardApi* | [**leaderboard_leaderboard_id_prompts_post**](rapidata/api_client/docs/LeaderboardApi.md#leaderboard_leaderboard_id_prompts_post) | **POST** /leaderboard/{leaderboardId}/prompts | adds a new prompt to a leaderboard.
|
|
138
|
-
*LeaderboardApi* | [**leaderboard_leaderboard_id_refresh_post**](rapidata/api_client/docs/LeaderboardApi.md#leaderboard_leaderboard_id_refresh_post) | **POST** /leaderboard/{leaderboardId}/refresh | This will force an update to all standings of a leaderboard. this could happen if the recorded matches and scores are out of sync
|
|
139
138
|
*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
|
|
140
139
|
*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.
|
|
141
140
|
*LeaderboardApi* | [**leaderboard_post**](rapidata/api_client/docs/LeaderboardApi.md#leaderboard_post) | **POST** /leaderboard | Creates a new leaderboard with the specified name and criteria.
|
|
@@ -178,6 +177,7 @@ Class | Method | HTTP request | Description
|
|
|
178
177
|
*PipelineApi* | [**pipeline_pipeline_id_get**](rapidata/api_client/docs/PipelineApi.md#pipeline_pipeline_id_get) | **GET** /pipeline/{pipelineId} | Gets a pipeline by its id.
|
|
179
178
|
*PipelineApi* | [**pipeline_pipeline_id_preliminary_download_post**](rapidata/api_client/docs/PipelineApi.md#pipeline_pipeline_id_preliminary_download_post) | **POST** /pipeline/{pipelineId}/preliminary-download | Initiates a preliminary download of the pipeline.
|
|
180
179
|
*PipelineApi* | [**pipeline_preliminary_download_preliminary_download_id_get**](rapidata/api_client/docs/PipelineApi.md#pipeline_preliminary_download_preliminary_download_id_get) | **GET** /pipeline/preliminary-download/{preliminaryDownloadId} | Gets the preliminary download.
|
|
180
|
+
*PromptApi* | [**benchmark_prompt_prompt_id_tags_put**](rapidata/api_client/docs/PromptApi.md#benchmark_prompt_prompt_id_tags_put) | **PUT** /benchmark-prompt/{promptId}/tags | Updates the tags associated with a prompt.
|
|
181
181
|
*RapidataIdentityAPIApi* | [**root_get**](rapidata/api_client/docs/RapidataIdentityAPIApi.md#root_get) | **GET** / |
|
|
182
182
|
*SimpleWorkflowApi* | [**workflow_simple_workflow_id_results_get**](rapidata/api_client/docs/SimpleWorkflowApi.md#workflow_simple_workflow_id_results_get) | **GET** /workflow/simple/{workflowId}/results | Get the result overview for a simple workflow.
|
|
183
183
|
*UserInfoApi* | [**connect_userinfo_get**](rapidata/api_client/docs/UserInfoApi.md#connect_userinfo_get) | **GET** /connect/userinfo | Retrieves information about the authenticated user.
|
|
@@ -197,7 +197,7 @@ Class | Method | HTTP request | Description
|
|
|
197
197
|
*ValidationSetApi* | [**validation_set_validation_set_id_rapid_texts_post**](rapidata/api_client/docs/ValidationSetApi.md#validation_set_validation_set_id_rapid_texts_post) | **POST** /validation-set/{validationSetId}/rapid/texts | Adds a new validation rapid to the specified validation set using text sources to create the assets.
|
|
198
198
|
*ValidationSetApi* | [**validation_set_validation_set_id_rapids_get**](rapidata/api_client/docs/ValidationSetApi.md#validation_set_validation_set_id_rapids_get) | **GET** /validation-set/{validationSetId}/rapids | Queries the validation rapids for a specific validation set.
|
|
199
199
|
*ValidationSetApi* | [**validation_set_validation_set_id_shouldalert_patch**](rapidata/api_client/docs/ValidationSetApi.md#validation_set_validation_set_id_shouldalert_patch) | **PATCH** /validation-set/{validationSetId}/shouldalert | Updates the dimensions of all rapids within a validation set.
|
|
200
|
-
*ValidationSetApi* | [**validation_set_validation_set_id_shouldalert_put**](rapidata/api_client/docs/ValidationSetApi.md#validation_set_validation_set_id_shouldalert_put) | **PUT** /validation-set/{validationSetId}/shouldalert | Updates the
|
|
200
|
+
*ValidationSetApi* | [**validation_set_validation_set_id_shouldalert_put**](rapidata/api_client/docs/ValidationSetApi.md#validation_set_validation_set_id_shouldalert_put) | **PUT** /validation-set/{validationSetId}/shouldalert | Updates the of all rapshouldAlert property of all rapids within a validation set.
|
|
201
201
|
*ValidationSetApi* | [**validation_set_zip_compare_post**](rapidata/api_client/docs/ValidationSetApi.md#validation_set_zip_compare_post) | **POST** /validation-set/zip/compare | Imports a compare validation set from a zip file.
|
|
202
202
|
*ValidationSetApi* | [**validation_set_zip_post**](rapidata/api_client/docs/ValidationSetApi.md#validation_set_zip_post) | **POST** /validation-set/zip | Imports a validation set from a zip file.
|
|
203
203
|
*ValidationSetApi* | [**validation_sets_available_get**](rapidata/api_client/docs/ValidationSetApi.md#validation_sets_available_get) | **GET** /validation-sets/available | Gets the available validation sets for the current user.
|
|
@@ -529,6 +529,7 @@ Class | Method | HTTP request | Description
|
|
|
529
529
|
- [StandingByLeaderboard](rapidata/api_client/docs/StandingByLeaderboard.md)
|
|
530
530
|
- [StandingByLeaderboardPagedResult](rapidata/api_client/docs/StandingByLeaderboardPagedResult.md)
|
|
531
531
|
- [StandingStatus](rapidata/api_client/docs/StandingStatus.md)
|
|
532
|
+
- [StandingsByLeaderboardResult](rapidata/api_client/docs/StandingsByLeaderboardResult.md)
|
|
532
533
|
- [StaticSelection](rapidata/api_client/docs/StaticSelection.md)
|
|
533
534
|
- [StickyState](rapidata/api_client/docs/StickyState.md)
|
|
534
535
|
- [StreamFileWrapper](rapidata/api_client/docs/StreamFileWrapper.md)
|
|
@@ -540,6 +541,7 @@ Class | Method | HTTP request | Description
|
|
|
540
541
|
- [SubmitParticipantResult](rapidata/api_client/docs/SubmitParticipantResult.md)
|
|
541
542
|
- [SubmitPromptModel](rapidata/api_client/docs/SubmitPromptModel.md)
|
|
542
543
|
- [SubmitPromptModelPromptAsset](rapidata/api_client/docs/SubmitPromptModelPromptAsset.md)
|
|
544
|
+
- [TagsByBenchmarkResult](rapidata/api_client/docs/TagsByBenchmarkResult.md)
|
|
543
545
|
- [TextAsset](rapidata/api_client/docs/TextAsset.md)
|
|
544
546
|
- [TextAssetInput](rapidata/api_client/docs/TextAssetInput.md)
|
|
545
547
|
- [TextAssetModel](rapidata/api_client/docs/TextAssetModel.md)
|
|
@@ -563,6 +565,7 @@ Class | Method | HTTP request | Description
|
|
|
563
565
|
- [UpdateLeaderboardNameModel](rapidata/api_client/docs/UpdateLeaderboardNameModel.md)
|
|
564
566
|
- [UpdateOrderNameModel](rapidata/api_client/docs/UpdateOrderNameModel.md)
|
|
565
567
|
- [UpdateParticipantNameModel](rapidata/api_client/docs/UpdateParticipantNameModel.md)
|
|
568
|
+
- [UpdatePromptTagsModel](rapidata/api_client/docs/UpdatePromptTagsModel.md)
|
|
566
569
|
- [UpdateShouldAlertModel](rapidata/api_client/docs/UpdateShouldAlertModel.md)
|
|
567
570
|
- [UpdateValidationRapidModel](rapidata/api_client/docs/UpdateValidationRapidModel.md)
|
|
568
571
|
- [UpdateValidationRapidModelTruth](rapidata/api_client/docs/UpdateValidationRapidModelTruth.md)
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import pandas as pd
|
|
2
|
-
|
|
3
|
-
from rapidata.api_client.models.query_model import QueryModel
|
|
4
|
-
from rapidata.api_client.models.page_info import PageInfo
|
|
5
|
-
from rapidata.api_client.models.sort_criterion import SortCriterion
|
|
2
|
+
from typing import Optional
|
|
6
3
|
|
|
7
4
|
from rapidata.service.openapi_service import OpenAPIService
|
|
8
5
|
|
|
@@ -89,16 +86,22 @@ class RapidataLeaderboard:
|
|
|
89
86
|
"""
|
|
90
87
|
return self.__name
|
|
91
88
|
|
|
92
|
-
def get_standings(self) -> pd.DataFrame:
|
|
89
|
+
def get_standings(self, tags: Optional[list[str]] = None) -> pd.DataFrame:
|
|
93
90
|
"""
|
|
94
91
|
Returns the standings of the leaderboard.
|
|
92
|
+
|
|
93
|
+
Args:
|
|
94
|
+
tags: The matchups with these tags should be used to create the standings.
|
|
95
|
+
If tags are None, all matchups will be considered.
|
|
96
|
+
If tags are empty, no matchups will be considered.
|
|
97
|
+
|
|
98
|
+
Returns:
|
|
99
|
+
A pandas DataFrame containing the standings of the leaderboard.
|
|
95
100
|
"""
|
|
101
|
+
|
|
96
102
|
participants = self.__openapi_service.leaderboard_api.leaderboard_leaderboard_id_standings_get(
|
|
97
103
|
leaderboard_id=self.id,
|
|
98
|
-
|
|
99
|
-
page=PageInfo(index=1, size=1000),
|
|
100
|
-
sortCriteria=[SortCriterion(direction="Desc", propertyName="Score")]
|
|
101
|
-
)
|
|
104
|
+
tags=tags
|
|
102
105
|
)
|
|
103
106
|
|
|
104
107
|
standings = []
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import re
|
|
2
|
+
from typing import Optional
|
|
2
3
|
from rapidata.api_client.models.root_filter import RootFilter
|
|
3
4
|
from rapidata.api_client.models.filter import Filter
|
|
4
5
|
from rapidata.api_client.models.query_model import QueryModel
|
|
@@ -38,7 +39,8 @@ class RapidataBenchmark:
|
|
|
38
39
|
self.__prompt_assets: list[str | None] = []
|
|
39
40
|
self.__leaderboards: list[RapidataLeaderboard] = []
|
|
40
41
|
self.__identifiers: list[str] = []
|
|
41
|
-
|
|
42
|
+
self.__tags: list[list[str]] = []
|
|
43
|
+
|
|
42
44
|
def __instantiate_prompts(self) -> None:
|
|
43
45
|
current_page = 1
|
|
44
46
|
total_pages = None
|
|
@@ -69,7 +71,8 @@ class RapidataBenchmark:
|
|
|
69
71
|
source_url = prompt.prompt_asset.actual_instance.metadata["sourceUrl"].actual_instance
|
|
70
72
|
assert isinstance(source_url, SourceUrlMetadataModel)
|
|
71
73
|
self.__prompt_assets.append(source_url.url)
|
|
72
|
-
|
|
74
|
+
|
|
75
|
+
self.__tags.append(prompt.tags)
|
|
73
76
|
if current_page >= total_pages:
|
|
74
77
|
break
|
|
75
78
|
|
|
@@ -103,6 +106,15 @@ class RapidataBenchmark:
|
|
|
103
106
|
return self.__prompt_assets
|
|
104
107
|
|
|
105
108
|
@property
|
|
109
|
+
def tags(self) -> list[list[str]]:
|
|
110
|
+
"""
|
|
111
|
+
Returns the tags that are registered for the benchmark.
|
|
112
|
+
"""
|
|
113
|
+
if not self.__tags:
|
|
114
|
+
self.__instantiate_prompts()
|
|
115
|
+
|
|
116
|
+
return self.__tags
|
|
117
|
+
|
|
106
118
|
def leaderboards(self) -> list[RapidataLeaderboard]:
|
|
107
119
|
"""
|
|
108
120
|
Returns the leaderboards that are registered for the benchmark.
|
|
@@ -151,7 +163,7 @@ class RapidataBenchmark:
|
|
|
151
163
|
|
|
152
164
|
return self.__leaderboards
|
|
153
165
|
|
|
154
|
-
def add_prompt(self, identifier: str, prompt: str | None = None, asset: str | None = None):
|
|
166
|
+
def add_prompt(self, identifier: str, prompt: str | None = None, asset: str | None = None, tags: Optional[list[str]] = None):
|
|
155
167
|
"""
|
|
156
168
|
Adds a prompt to the benchmark.
|
|
157
169
|
|
|
@@ -159,7 +171,11 @@ class RapidataBenchmark:
|
|
|
159
171
|
identifier: The identifier of the prompt/asset that will be used to match up the media.
|
|
160
172
|
prompt: The prompt that will be used to evaluate the model.
|
|
161
173
|
asset: The asset that will be used to evaluate the model. Provided as a link to the asset.
|
|
174
|
+
tags: The tags can be used to filter the leaderboard results. They will NOT be shown to the users.
|
|
162
175
|
"""
|
|
176
|
+
if tags is None:
|
|
177
|
+
tags = []
|
|
178
|
+
|
|
163
179
|
if not isinstance(identifier, str):
|
|
164
180
|
raise ValueError("Identifier must be a string.")
|
|
165
181
|
|
|
@@ -178,8 +194,12 @@ class RapidataBenchmark:
|
|
|
178
194
|
if asset is not None and not re.match(r'^https?://', asset):
|
|
179
195
|
raise ValueError("Asset must be a link to the asset.")
|
|
180
196
|
|
|
197
|
+
if tags is not None and (not isinstance(tags, list) or not all(isinstance(tag, str) for tag in tags)):
|
|
198
|
+
raise ValueError("Tags must be a list of strings.")
|
|
199
|
+
|
|
181
200
|
self.__identifiers.append(identifier)
|
|
182
201
|
|
|
202
|
+
self.__tags.append(tags)
|
|
183
203
|
self.__prompts.append(prompt)
|
|
184
204
|
self.__prompt_assets.append(asset)
|
|
185
205
|
|
|
@@ -193,7 +213,8 @@ class RapidataBenchmark:
|
|
|
193
213
|
_t="UrlAssetInput",
|
|
194
214
|
url=asset
|
|
195
215
|
)
|
|
196
|
-
) if asset is not None else None
|
|
216
|
+
) if asset is not None else None,
|
|
217
|
+
tags=tags
|
|
197
218
|
)
|
|
198
219
|
)
|
|
199
220
|
|
|
@@ -25,8 +25,9 @@ class RapidataBenchmarkManager:
|
|
|
25
25
|
def create_new_benchmark(self,
|
|
26
26
|
name: str,
|
|
27
27
|
identifiers: list[str],
|
|
28
|
-
prompts: Optional[list[str]] = None,
|
|
29
|
-
prompt_assets: Optional[list[str]] = None,
|
|
28
|
+
prompts: Optional[list[str | None]] = None,
|
|
29
|
+
prompt_assets: Optional[list[str | None]] = None,
|
|
30
|
+
tags: Optional[list[list[str] | None]] = None,
|
|
30
31
|
) -> RapidataBenchmark:
|
|
31
32
|
"""
|
|
32
33
|
Creates a new benchmark with the given name, identifiers, prompts, and media assets.
|
|
@@ -37,15 +38,16 @@ class RapidataBenchmarkManager:
|
|
|
37
38
|
name: The name of the benchmark.
|
|
38
39
|
prompts: The prompts that will be registered for the benchmark.
|
|
39
40
|
prompt_assets: The prompt assets that will be registered for the benchmark.
|
|
41
|
+
tags: The tags that will be associated with the prompts to use for filtering the leaderboard results. They will NOT be shown to the users.
|
|
40
42
|
"""
|
|
41
43
|
if not isinstance(name, str):
|
|
42
44
|
raise ValueError("Name must be a string.")
|
|
43
45
|
|
|
44
|
-
if prompts and (not isinstance(prompts, list) or not all(isinstance(prompt, str) for prompt in prompts)):
|
|
45
|
-
raise ValueError("Prompts must be a list of strings.")
|
|
46
|
+
if prompts and (not isinstance(prompts, list) or not all(isinstance(prompt, str) or prompt is None for prompt in prompts)):
|
|
47
|
+
raise ValueError("Prompts must be a list of strings or None.")
|
|
46
48
|
|
|
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
|
+
if prompt_assets and (not isinstance(prompt_assets, list) or not all(isinstance(asset, str) or asset is None for asset in prompt_assets)):
|
|
50
|
+
raise ValueError("Media assets must be a list of strings or None.")
|
|
49
51
|
|
|
50
52
|
if not isinstance(identifiers, list) or not all(isinstance(identifier, str) for identifier in identifiers):
|
|
51
53
|
raise ValueError("Identifiers must be a list of strings.")
|
|
@@ -61,6 +63,9 @@ class RapidataBenchmarkManager:
|
|
|
61
63
|
|
|
62
64
|
if len(set(identifiers)) != len(identifiers):
|
|
63
65
|
raise ValueError("Identifiers must be unique.")
|
|
66
|
+
|
|
67
|
+
if tags and len(identifiers) != len(tags):
|
|
68
|
+
raise ValueError("Identifiers and tags must have the same length.")
|
|
64
69
|
|
|
65
70
|
benchmark_result = self.__openapi_service.benchmark_api.benchmark_post(
|
|
66
71
|
create_benchmark_model=CreateBenchmarkModel(
|
|
@@ -72,9 +77,10 @@ class RapidataBenchmarkManager:
|
|
|
72
77
|
|
|
73
78
|
prompts_list = prompts if prompts is not None else [None] * len(identifiers)
|
|
74
79
|
media_assets_list = prompt_assets if prompt_assets is not None else [None] * len(identifiers)
|
|
80
|
+
tags_list = tags if tags is not None else [None] * len(identifiers)
|
|
75
81
|
|
|
76
|
-
for identifier, prompt, asset in zip(identifiers, prompts_list, media_assets_list):
|
|
77
|
-
benchmark.add_prompt(identifier, prompt, asset)
|
|
82
|
+
for identifier, prompt, asset, tag in zip(identifiers, prompts_list, media_assets_list, tags_list):
|
|
83
|
+
benchmark.add_prompt(identifier, prompt, asset, tag)
|
|
78
84
|
|
|
79
85
|
return benchmark
|
|
80
86
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
rapidata/__init__.py,sha256=
|
|
2
|
-
rapidata/api_client/__init__.py,sha256=
|
|
3
|
-
rapidata/api_client/api/__init__.py,sha256=
|
|
4
|
-
rapidata/api_client/api/benchmark_api.py,sha256=
|
|
1
|
+
rapidata/__init__.py,sha256=vdclgj_OLOe3kSblN4heiK2gL2ZvR9yZ3Y62fJ-xG8A,897
|
|
2
|
+
rapidata/api_client/__init__.py,sha256=N4Cx20ScEXZ9A2pdsn8ZPUuhnpeXlGByav3P_1ofQ_8,34733
|
|
3
|
+
rapidata/api_client/api/__init__.py,sha256=dGnSE9oPO_ahGh-E1jtw4_VuM_vQueQFuv0IVMQo6uo,1546
|
|
4
|
+
rapidata/api_client/api/benchmark_api.py,sha256=bC8hAPgHIDU5u1e0loWPWnZX33BW6gsAR8oc5199q2k,129777
|
|
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,23 +12,24 @@ 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=M82K7VI72c72Ij1_Svz7qm_ttVDuAilSi0g9B4BuU4g,167604
|
|
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=eOoZDCRF61bmPAcoMWhOREgUp3rEYhrQLEPJq8o27b4,87709
|
|
19
19
|
rapidata/api_client/api/pipeline_api.py,sha256=s1_0GG3Rr-_yFzZ0TcBAgNGVrbQX_cjx2tnv3-1CmZw,96625
|
|
20
|
+
rapidata/api_client/api/prompt_api.py,sha256=hMAmc9KVXf6cjmFtxHEnuk_jBkOnbWaOaw8BGfHCKDQ,12196
|
|
20
21
|
rapidata/api_client/api/rapid_api.py,sha256=2omzmCbZxfseGTwEMFGESrkSH-FlkP0JmqIWJqgm8fM,97187
|
|
21
22
|
rapidata/api_client/api/rapidata_identity_api_api.py,sha256=-kgoDuLdh-R4MQ7JPi3kQ0WDFKbmI0MkCjxwHXBmksA,9824
|
|
22
23
|
rapidata/api_client/api/simple_workflow_api.py,sha256=yauSlkSwoZOl4P-1Wu0yU92GcEArpEd3xjFqImU2K1g,12763
|
|
23
24
|
rapidata/api_client/api/user_info_api.py,sha256=FuuA95Beeky-rnqIoSUe2-WQ7oVTfq0RElX0jfKXT0w,10042
|
|
24
25
|
rapidata/api_client/api/user_rapid_api.py,sha256=RXHAzSSGFohQqLUAZOKSaHt9EcT-7_n2vMto1SkSy4o,54323
|
|
25
|
-
rapidata/api_client/api/validation_set_api.py,sha256=
|
|
26
|
+
rapidata/api_client/api/validation_set_api.py,sha256=5Au-8s4I0blRmln9dOnUUEU1QeBQPwwguAzpo80Md8E,187046
|
|
26
27
|
rapidata/api_client/api/workflow_api.py,sha256=a5gMW-E7Mie-OK74J5SRoV6Wl1D4-AFCCfpxQ8ewCkQ,66871
|
|
27
28
|
rapidata/api_client/api_client.py,sha256=EDhxAOUc5JFWvFsF1zc726Q7GoEFkuB8uor5SlGx9K4,27503
|
|
28
29
|
rapidata/api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
29
30
|
rapidata/api_client/configuration.py,sha256=g472vHVPLBotq8EkfSXP4sbp7xnn-3sb8O8BBlRWK1I,15931
|
|
30
31
|
rapidata/api_client/exceptions.py,sha256=eLLd1fxM0Ygf3IIG6aNx9hdy79drst5Cem0UjI_NamM,5978
|
|
31
|
-
rapidata/api_client/models/__init__.py,sha256=
|
|
32
|
+
rapidata/api_client/models/__init__.py,sha256=1mQliyAedV6ftD2vpUt5Dnv_E8JyeCFkSMZB_YMutC4,32646
|
|
32
33
|
rapidata/api_client/models/ab_test_selection.py,sha256=xQcE1BgKSnkTcmIuroeVOAQcAhGkHLlMP9XjakMFgDc,4327
|
|
33
34
|
rapidata/api_client/models/ab_test_selection_a_inner.py,sha256=VsCi27NBGxAtupB_sQZCzUEsTNNgSGV_Mo-Fi0UY1Jw,11657
|
|
34
35
|
rapidata/api_client/models/add_campaign_artifact_result.py,sha256=4IvFVS-tLlL6eHsWp-IZ_ul5T30-h3YEwd2B5ioBbgY,2582
|
|
@@ -108,7 +109,7 @@ rapidata/api_client/models/comparison_operator.py,sha256=pBp_ux9ZO9F93qLVlrucGXW
|
|
|
108
109
|
rapidata/api_client/models/completed_rapid_model.py,sha256=rOqZYpcM0eYOL-qX162S_OPclUC1P8OZLYZZAsagVE4,3512
|
|
109
110
|
rapidata/api_client/models/completed_rapid_model_asset.py,sha256=zyuzQfn3eucLZBC_vyIzceH4T0Iy5eIilRYV4CFUNNU,7192
|
|
110
111
|
rapidata/api_client/models/conditional_validation_rapid_selection_config.py,sha256=2VFuxKq_QrlG36hB0s67OWfA9y7MgohvJXNga8fhZtc,4285
|
|
111
|
-
rapidata/api_client/models/conditional_validation_selection.py,sha256=
|
|
112
|
+
rapidata/api_client/models/conditional_validation_selection.py,sha256=cCsx-_hppC92PyQYDd25Yc6S76M7bD974mlRKe795rI,4322
|
|
112
113
|
rapidata/api_client/models/coordinate.py,sha256=mSGBCGDzfew4rAmXCPwlDC3ZJlQruuFUgX-8S2qnl2g,3426
|
|
113
114
|
rapidata/api_client/models/correlated_rapid_selection_config.py,sha256=s1xiNfWthzmV-7lripBIvCUSSP5QkC6RgNjEo9p9S48,3208
|
|
114
115
|
rapidata/api_client/models/count_classification_metadata_filter_config.py,sha256=5DemyAZF4RxPw1lOiDP3oOkPdOXmRRR4zzVbTa7Kvi0,3063
|
|
@@ -142,7 +143,7 @@ rapidata/api_client/models/create_empty_validation_set_result.py,sha256=Z8s0Kjz2
|
|
|
142
143
|
rapidata/api_client/models/create_independent_workflow_model.py,sha256=w7lHQXKG1NpTevCmhIdWwLXcdVAdIX2pV82GgInWHqU,3272
|
|
143
144
|
rapidata/api_client/models/create_independent_workflow_model_workflow_config.py,sha256=GVVxs9VAmM2hTXWWoqKNXD9E7qRk3CO88YRm1AHxJCI,5845
|
|
144
145
|
rapidata/api_client/models/create_independent_workflow_result.py,sha256=JOhS75mAH-VvarvDDFsycahPlIezVKT1upuqIo93hC0,2719
|
|
145
|
-
rapidata/api_client/models/create_leaderboard_model.py,sha256=
|
|
146
|
+
rapidata/api_client/models/create_leaderboard_model.py,sha256=PVt2uKYnnJrElPerW5lY13L-zB8h4ETfHrv5Doi5HEk,5494
|
|
146
147
|
rapidata/api_client/models/create_leaderboard_participant_model.py,sha256=-6ZgPLmnU2qzV3g0Lmv5GcN3b8ZvCyICc-HXyqFxV3Y,2630
|
|
147
148
|
rapidata/api_client/models/create_leaderboard_participant_result.py,sha256=rwnfQHLNJJj18ecQDksLZyQ7xPXmvFzD0jxg4V9s2yk,2746
|
|
148
149
|
rapidata/api_client/models/create_leaderboard_result.py,sha256=psBD9Izt3TwZ02d6pBewoFRT8sNKqROR1Ikdpb0hyy0,3308
|
|
@@ -251,7 +252,7 @@ rapidata/api_client/models/get_simple_workflow_result_overview_result.py,sha256=
|
|
|
251
252
|
rapidata/api_client/models/get_simple_workflow_results_model.py,sha256=r4DZspzPrwaI4DrC4OH-mwUvibcS0TzK9O8CFnsURSc,4289
|
|
252
253
|
rapidata/api_client/models/get_simple_workflow_results_result.py,sha256=WNBHFW-D6tlMzNp9P7nGfoDoarjjwb2YwjlCCV1tA00,4411
|
|
253
254
|
rapidata/api_client/models/get_simple_workflow_results_result_paged_result.py,sha256=DWimv7FmvJmixjQvDFeTE_Q5jHLpLdQmPlXF_9iWSiY,3616
|
|
254
|
-
rapidata/api_client/models/get_standing_by_id_result.py,sha256=
|
|
255
|
+
rapidata/api_client/models/get_standing_by_id_result.py,sha256=9eYEKMGlrvgUW7ayuqWMk9nWfZg6rjUk2Y5k7nvjjx0,3304
|
|
255
256
|
rapidata/api_client/models/get_validation_rapids_query.py,sha256=teC4ryyIXJkRwafaSorysBIsKJuO5C1L8f6juJMwrNs,4894
|
|
256
257
|
rapidata/api_client/models/get_validation_rapids_query_paged_result.py,sha256=ifyJ7Iy7VzTWxtwb2q5q5id927Iil00V3Nk9QqclsDo,3567
|
|
257
258
|
rapidata/api_client/models/get_validation_rapids_result.py,sha256=dTQb5Ju4FAHNQldxY-7Vou62YdmcH3LDQJMdtvITB_c,6815
|
|
@@ -379,7 +380,7 @@ rapidata/api_client/models/probabilistic_attach_category_referee_info.py,sha256=
|
|
|
379
380
|
rapidata/api_client/models/problem_details.py,sha256=00OWbk93SWXdEVNs8rceJq6CAlG4KIRYRR1sqasZ35Q,4506
|
|
380
381
|
rapidata/api_client/models/prompt_asset_metadata_input.py,sha256=UAcgFo_lj12aWsUW1sOre-fFCDqhOIE30yM8ZYnwaHs,3487
|
|
381
382
|
rapidata/api_client/models/prompt_asset_metadata_input_asset.py,sha256=lZpDKEIFMRS2wIT7GgHTJjH7sl9axGjHgwYHuwLwCdo,7186
|
|
382
|
-
rapidata/api_client/models/prompt_by_benchmark_result.py,sha256=
|
|
383
|
+
rapidata/api_client/models/prompt_by_benchmark_result.py,sha256=CoMO7wY0og1oqB-axa6bCyULk8iRWGYtPR94RjsiJKE,3895
|
|
383
384
|
rapidata/api_client/models/prompt_by_benchmark_result_paged_result.py,sha256=v6KQCQCfePRbpge5PfNRkjUZmoC5B0OVs6tIYGCuwXY,3559
|
|
384
385
|
rapidata/api_client/models/prompt_by_leaderboard_result.py,sha256=KRf0XbpOBjCwZPx4VPZk5MFRV7J-KEZG5yUHAC3ODKo,2679
|
|
385
386
|
rapidata/api_client/models/prompt_by_leaderboard_result_paged_result.py,sha256=xOR0FR1Q1JM-DhWircDWLoBOyr8PmXIUgEDiPgmnRcc,3575
|
|
@@ -451,9 +452,10 @@ rapidata/api_client/models/sort_criterion.py,sha256=klwKhELiScAGHRL8yF_TtL0X_4Z4
|
|
|
451
452
|
rapidata/api_client/models/sort_direction.py,sha256=yNLZqvgL5fHbD98kMWFAsfgqn3gKM_GFIyRVfheZydI,748
|
|
452
453
|
rapidata/api_client/models/source_url_metadata.py,sha256=TL2Joe1EDgnwDJ3_rQy36laM6dvaLBTez3psyQUKaN0,3072
|
|
453
454
|
rapidata/api_client/models/source_url_metadata_model.py,sha256=UWd1nG-awsV5Q2fsrqdPDgc7bI_pGag0ubIlwEEKMZk,2988
|
|
454
|
-
rapidata/api_client/models/standing_by_leaderboard.py,sha256=
|
|
455
|
+
rapidata/api_client/models/standing_by_leaderboard.py,sha256=gZ3yP7CQIeVkZAyULl-tiKOWMrfLFLkEFGBc46gw754,3881
|
|
455
456
|
rapidata/api_client/models/standing_by_leaderboard_paged_result.py,sha256=zOlbN2Pxc0y5M9MaDTB5znl0V-6CZIzGZWBlcZGdeVg,3542
|
|
456
457
|
rapidata/api_client/models/standing_status.py,sha256=1uIPH2EDit3fsq9LAnspG1xRzZrgFyKAju6Dq7Vka4M,781
|
|
458
|
+
rapidata/api_client/models/standings_by_leaderboard_result.py,sha256=BUBJsX0cH1HLTKKSaeneVEWaXQY4LxoEcwxoIsHvoPQ,3037
|
|
457
459
|
rapidata/api_client/models/static_rapid_selection_config.py,sha256=RnjyRhAOaxmJ2PW-X2m4G0QZlm-8vw2d9ZO5uneNOtg,3073
|
|
458
460
|
rapidata/api_client/models/static_selection.py,sha256=tvILdoApT7qKYEA2RmT2lsNZGhS9O0fDHJrhJtsXERg,2985
|
|
459
461
|
rapidata/api_client/models/sticky_state.py,sha256=dMti7CucXAOvNN1I1BPCE9XGhtXAmqdoQpVaFx8rMrk,782
|
|
@@ -467,6 +469,7 @@ rapidata/api_client/models/submit_participant_result.py,sha256=Y9VWtr4CH2dX_pUWE
|
|
|
467
469
|
rapidata/api_client/models/submit_password_reset_command.py,sha256=EcHK3K72_OrG0McyarmMhY3LHmz0opXMLxwDtPdn-mU,3404
|
|
468
470
|
rapidata/api_client/models/submit_prompt_model.py,sha256=eKM-dTzDTMSw9O45W0umvCe9u-S86tA9ic7x4N7qqKk,4077
|
|
469
471
|
rapidata/api_client/models/submit_prompt_model_prompt_asset.py,sha256=cM8AzElOuTAByQm3obCtZLWWuN65g7JNvQm2W7u2VEs,7158
|
|
472
|
+
rapidata/api_client/models/tags_by_benchmark_result.py,sha256=kBhtJk4Oib9ot1z4gF3apb5rDOBOKhmuROoZGLbyGr0,2512
|
|
470
473
|
rapidata/api_client/models/text_asset.py,sha256=_Hz4EzobSjErKHswhW2naqw6BCSxmScRGRN15pvz4W0,3811
|
|
471
474
|
rapidata/api_client/models/text_asset_input.py,sha256=jZpil3ALayV6ZhhKdMaouBEqMjchctwKj-uBAp_ht5I,3120
|
|
472
475
|
rapidata/api_client/models/text_asset_model.py,sha256=rVPMYY6gNz4tSfYV24Y3N1vlgVcztmAuRSn-c35IRYA,3781
|
|
@@ -494,6 +497,7 @@ rapidata/api_client/models/update_leaderboard_name_model.py,sha256=QmEy8MNkrQYyJ
|
|
|
494
497
|
rapidata/api_client/models/update_order_model.py,sha256=RUlxnzLqO6o-w5EEPb8wv1ANRKpkSbs8PhGM42T35uw,2570
|
|
495
498
|
rapidata/api_client/models/update_order_name_model.py,sha256=Cm8qZUJKgx1JTgkhlJcVNdLwPnRV8gqeeo7G4bVDOS4,2582
|
|
496
499
|
rapidata/api_client/models/update_participant_name_model.py,sha256=PPXeS5euTpMt7QrmLWordYU1tGS1gZ-zwjgQDglld_g,2614
|
|
500
|
+
rapidata/api_client/models/update_prompt_tags_model.py,sha256=4y9brW5gxhjEE88jbKGNruev8rkK77LI1lb866QXZaM,2607
|
|
497
501
|
rapidata/api_client/models/update_should_alert_model.py,sha256=cH2pdO_y_0Jyfpyt33BhqxpIijX6WiHsGMKBpQvP7sA,2704
|
|
498
502
|
rapidata/api_client/models/update_validation_rapid_model.py,sha256=yCmIdsywjK1CsVTeUWz6oFfwmrSXc030_gVWrxwScuE,4083
|
|
499
503
|
rapidata/api_client/models/update_validation_rapid_model_truth.py,sha256=BW1Xs6OiEpigJ2oZPnQXdM66PuVRfZYI4KanO_UHCEY,13269
|
|
@@ -532,17 +536,17 @@ rapidata/api_client/models/workflow_split_model_filter_configs_inner.py,sha256=1
|
|
|
532
536
|
rapidata/api_client/models/workflow_state.py,sha256=5LAK1se76RCoozeVB6oxMPb8p_5bhLZJqn7q5fFQWis,850
|
|
533
537
|
rapidata/api_client/models/zip_entry_file_wrapper.py,sha256=06CoNJD3x511K3rnSmkrwwhc9GbQxwxF-c0ldOyJbAs,4240
|
|
534
538
|
rapidata/api_client/rest.py,sha256=rtIMcgINZOUaDFaJIinJkXRSddNJmXvMRMfgO2Ezk2o,10835
|
|
535
|
-
rapidata/api_client_README.md,sha256=
|
|
539
|
+
rapidata/api_client_README.md,sha256=hFJwQC9pI9JtopNmka-9TUPcRqhY3zhhrZj0ebJizVs,62286
|
|
536
540
|
rapidata/rapidata_client/__init__.py,sha256=CfkQxCdURXzJsVP6sxKmufze2u-IE_snG_G8NEkE_JM,1225
|
|
537
541
|
rapidata/rapidata_client/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
538
542
|
rapidata/rapidata_client/api/rapidata_exception.py,sha256=BIdmHRrJUGW-Mqhp1H_suemZaR6w9TgjWq-ZW5iUPdQ,3878
|
|
539
543
|
rapidata/rapidata_client/benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
540
544
|
rapidata/rapidata_client/benchmark/leaderboard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
541
|
-
rapidata/rapidata_client/benchmark/leaderboard/rapidata_leaderboard.py,sha256=
|
|
545
|
+
rapidata/rapidata_client/benchmark/leaderboard/rapidata_leaderboard.py,sha256=PKqcW_pQJLmNg_feLDCtF-9SufMw2_EU4yKFo6QxxR0,3950
|
|
542
546
|
rapidata/rapidata_client/benchmark/participant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
543
547
|
rapidata/rapidata_client/benchmark/participant/_participant.py,sha256=yN82EWrZXYszsM8Ns0HRMXCTivltkyxcpGRK-cdT01Y,3683
|
|
544
|
-
rapidata/rapidata_client/benchmark/rapidata_benchmark.py,sha256
|
|
545
|
-
rapidata/rapidata_client/benchmark/rapidata_benchmark_manager.py,sha256=
|
|
548
|
+
rapidata/rapidata_client/benchmark/rapidata_benchmark.py,sha256=-REOx5fXEtVShJC5bUQ98MzGF6br5CwByRoIpuCempY,14112
|
|
549
|
+
rapidata/rapidata_client/benchmark/rapidata_benchmark_manager.py,sha256=WegkJdcVyOZ1j1sTuqtAwJcjvPGngzxSIUshrwu6Umk,5121
|
|
546
550
|
rapidata/rapidata_client/country_codes/__init__.py,sha256=FB9Dcks44J6C6YBSYmTmNZ71tE130x6NO_3aLJ8fKzQ,40
|
|
547
551
|
rapidata/rapidata_client/country_codes/country_codes.py,sha256=ePHqeb7y9DWQZAnddBzPx1puYBcrgUjdR2sbFijuFD8,283
|
|
548
552
|
rapidata/rapidata_client/datapoints/__init__.py,sha256=PRt3e8-qJigagDlOoE3K0W62M40-1WOEfAycd6lFrj4,242
|
|
@@ -645,7 +649,7 @@ rapidata/service/__init__.py,sha256=s9bS1AJZaWIhLtJX_ZA40_CK39rAAkwdAmymTMbeWl4,
|
|
|
645
649
|
rapidata/service/credential_manager.py,sha256=pUEEtp6VrFWYhfUUtyqmS0AlRqe2Y0kFkY6o22IT4KM,8682
|
|
646
650
|
rapidata/service/local_file_service.py,sha256=pgorvlWcx52Uh3cEG6VrdMK_t__7dacQ_5AnfY14BW8,877
|
|
647
651
|
rapidata/service/openapi_service.py,sha256=v2fhPbHmD0J11ZRZY6f80PdIdGwpRFlbfMH9t8Ypg5A,5403
|
|
648
|
-
rapidata-2.
|
|
649
|
-
rapidata-2.
|
|
650
|
-
rapidata-2.
|
|
651
|
-
rapidata-2.
|
|
652
|
+
rapidata-2.34.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
653
|
+
rapidata-2.34.0.dist-info/METADATA,sha256=_j3IFffk9CKhiBg2NtOhlkW44taUsm9RxBdnmltRduY,1264
|
|
654
|
+
rapidata-2.34.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
655
|
+
rapidata-2.34.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|