scale-gp-beta 0.1.0a35__py3-none-any.whl → 0.1.0a36__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.
- scale_gp_beta/_streaming.py +4 -6
- scale_gp_beta/_version.py +1 -1
- scale_gp_beta/resources/datasets.py +99 -3
- scale_gp_beta/types/dataset_item.py +3 -1
- scale_gp_beta/types/dataset_update_params.py +12 -3
- scale_gp_beta/types/evaluation.py +40 -1
- scale_gp_beta/types/evaluation_item.py +2 -0
- scale_gp_beta/types/evaluation_task.py +3 -0
- scale_gp_beta/types/evaluation_task_param.py +3 -0
- scale_gp_beta/types/file.py +2 -0
- scale_gp_beta/types/question.py +6 -0
- scale_gp_beta/types/question_create_params.py +6 -0
- {scale_gp_beta-0.1.0a35.dist-info → scale_gp_beta-0.1.0a36.dist-info}/METADATA +2 -2
- {scale_gp_beta-0.1.0a35.dist-info → scale_gp_beta-0.1.0a36.dist-info}/RECORD +16 -16
- {scale_gp_beta-0.1.0a35.dist-info → scale_gp_beta-0.1.0a36.dist-info}/WHEEL +0 -0
- {scale_gp_beta-0.1.0a35.dist-info → scale_gp_beta-0.1.0a36.dist-info}/licenses/LICENSE +0 -0
scale_gp_beta/_streaming.py
CHANGED
|
@@ -57,9 +57,8 @@ class Stream(Generic[_T]):
|
|
|
57
57
|
for sse in iterator:
|
|
58
58
|
yield process_data(data=sse.json(), cast_to=cast_to, response=response)
|
|
59
59
|
|
|
60
|
-
#
|
|
61
|
-
|
|
62
|
-
...
|
|
60
|
+
# As we might not fully consume the response stream, we need to close it explicitly
|
|
61
|
+
response.close()
|
|
63
62
|
|
|
64
63
|
def __enter__(self) -> Self:
|
|
65
64
|
return self
|
|
@@ -121,9 +120,8 @@ class AsyncStream(Generic[_T]):
|
|
|
121
120
|
async for sse in iterator:
|
|
122
121
|
yield process_data(data=sse.json(), cast_to=cast_to, response=response)
|
|
123
122
|
|
|
124
|
-
#
|
|
125
|
-
|
|
126
|
-
...
|
|
123
|
+
# As we might not fully consume the response stream, we need to close it explicitly
|
|
124
|
+
await response.aclose()
|
|
127
125
|
|
|
128
126
|
async def __aenter__(self) -> Self:
|
|
129
127
|
return self
|
scale_gp_beta/_version.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
from typing import Dict, Iterable
|
|
6
|
-
from typing_extensions import Literal
|
|
6
|
+
from typing_extensions import Literal, overload
|
|
7
7
|
|
|
8
8
|
import httpx
|
|
9
9
|
|
|
@@ -133,6 +133,7 @@ class DatasetsResource(SyncAPIResource):
|
|
|
133
133
|
cast_to=Dataset,
|
|
134
134
|
)
|
|
135
135
|
|
|
136
|
+
@overload
|
|
136
137
|
def update(
|
|
137
138
|
self,
|
|
138
139
|
dataset_id: str,
|
|
@@ -148,7 +149,7 @@ class DatasetsResource(SyncAPIResource):
|
|
|
148
149
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
149
150
|
) -> Dataset:
|
|
150
151
|
"""
|
|
151
|
-
Update Dataset
|
|
152
|
+
Update or Restore Dataset
|
|
152
153
|
|
|
153
154
|
Args:
|
|
154
155
|
tags: The tags associated with the entity
|
|
@@ -161,6 +162,52 @@ class DatasetsResource(SyncAPIResource):
|
|
|
161
162
|
|
|
162
163
|
timeout: Override the client-level default timeout for this request, in seconds
|
|
163
164
|
"""
|
|
165
|
+
...
|
|
166
|
+
|
|
167
|
+
@overload
|
|
168
|
+
def update(
|
|
169
|
+
self,
|
|
170
|
+
dataset_id: str,
|
|
171
|
+
*,
|
|
172
|
+
restore: Literal[True],
|
|
173
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
174
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
175
|
+
extra_headers: Headers | None = None,
|
|
176
|
+
extra_query: Query | None = None,
|
|
177
|
+
extra_body: Body | None = None,
|
|
178
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
179
|
+
) -> Dataset:
|
|
180
|
+
"""
|
|
181
|
+
Update or Restore Dataset
|
|
182
|
+
|
|
183
|
+
Args:
|
|
184
|
+
restore: Set to true to restore the entity from the database.
|
|
185
|
+
|
|
186
|
+
extra_headers: Send extra headers
|
|
187
|
+
|
|
188
|
+
extra_query: Add additional query parameters to the request
|
|
189
|
+
|
|
190
|
+
extra_body: Add additional JSON properties to the request
|
|
191
|
+
|
|
192
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
193
|
+
"""
|
|
194
|
+
...
|
|
195
|
+
|
|
196
|
+
def update(
|
|
197
|
+
self,
|
|
198
|
+
dataset_id: str,
|
|
199
|
+
*,
|
|
200
|
+
description: str | Omit = omit,
|
|
201
|
+
name: str | Omit = omit,
|
|
202
|
+
tags: SequenceNotStr[str] | Omit = omit,
|
|
203
|
+
restore: Literal[True] | Omit = omit,
|
|
204
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
205
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
206
|
+
extra_headers: Headers | None = None,
|
|
207
|
+
extra_query: Query | None = None,
|
|
208
|
+
extra_body: Body | None = None,
|
|
209
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
210
|
+
) -> Dataset:
|
|
164
211
|
if not dataset_id:
|
|
165
212
|
raise ValueError(f"Expected a non-empty value for `dataset_id` but received {dataset_id!r}")
|
|
166
213
|
return self._patch(
|
|
@@ -170,6 +217,7 @@ class DatasetsResource(SyncAPIResource):
|
|
|
170
217
|
"description": description,
|
|
171
218
|
"name": name,
|
|
172
219
|
"tags": tags,
|
|
220
|
+
"restore": restore,
|
|
173
221
|
},
|
|
174
222
|
dataset_update_params.DatasetUpdateParams,
|
|
175
223
|
),
|
|
@@ -373,6 +421,7 @@ class AsyncDatasetsResource(AsyncAPIResource):
|
|
|
373
421
|
cast_to=Dataset,
|
|
374
422
|
)
|
|
375
423
|
|
|
424
|
+
@overload
|
|
376
425
|
async def update(
|
|
377
426
|
self,
|
|
378
427
|
dataset_id: str,
|
|
@@ -388,7 +437,7 @@ class AsyncDatasetsResource(AsyncAPIResource):
|
|
|
388
437
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
389
438
|
) -> Dataset:
|
|
390
439
|
"""
|
|
391
|
-
Update Dataset
|
|
440
|
+
Update or Restore Dataset
|
|
392
441
|
|
|
393
442
|
Args:
|
|
394
443
|
tags: The tags associated with the entity
|
|
@@ -401,6 +450,52 @@ class AsyncDatasetsResource(AsyncAPIResource):
|
|
|
401
450
|
|
|
402
451
|
timeout: Override the client-level default timeout for this request, in seconds
|
|
403
452
|
"""
|
|
453
|
+
...
|
|
454
|
+
|
|
455
|
+
@overload
|
|
456
|
+
async def update(
|
|
457
|
+
self,
|
|
458
|
+
dataset_id: str,
|
|
459
|
+
*,
|
|
460
|
+
restore: Literal[True],
|
|
461
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
462
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
463
|
+
extra_headers: Headers | None = None,
|
|
464
|
+
extra_query: Query | None = None,
|
|
465
|
+
extra_body: Body | None = None,
|
|
466
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
467
|
+
) -> Dataset:
|
|
468
|
+
"""
|
|
469
|
+
Update or Restore Dataset
|
|
470
|
+
|
|
471
|
+
Args:
|
|
472
|
+
restore: Set to true to restore the entity from the database.
|
|
473
|
+
|
|
474
|
+
extra_headers: Send extra headers
|
|
475
|
+
|
|
476
|
+
extra_query: Add additional query parameters to the request
|
|
477
|
+
|
|
478
|
+
extra_body: Add additional JSON properties to the request
|
|
479
|
+
|
|
480
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
481
|
+
"""
|
|
482
|
+
...
|
|
483
|
+
|
|
484
|
+
async def update(
|
|
485
|
+
self,
|
|
486
|
+
dataset_id: str,
|
|
487
|
+
*,
|
|
488
|
+
description: str | Omit = omit,
|
|
489
|
+
name: str | Omit = omit,
|
|
490
|
+
tags: SequenceNotStr[str] | Omit = omit,
|
|
491
|
+
restore: Literal[True] | Omit = omit,
|
|
492
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
493
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
494
|
+
extra_headers: Headers | None = None,
|
|
495
|
+
extra_query: Query | None = None,
|
|
496
|
+
extra_body: Body | None = None,
|
|
497
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
498
|
+
) -> Dataset:
|
|
404
499
|
if not dataset_id:
|
|
405
500
|
raise ValueError(f"Expected a non-empty value for `dataset_id` but received {dataset_id!r}")
|
|
406
501
|
return await self._patch(
|
|
@@ -410,6 +505,7 @@ class AsyncDatasetsResource(AsyncAPIResource):
|
|
|
410
505
|
"description": description,
|
|
411
506
|
"name": name,
|
|
412
507
|
"tags": tags,
|
|
508
|
+
"restore": restore,
|
|
413
509
|
},
|
|
414
510
|
dataset_update_params.DatasetUpdateParams,
|
|
415
511
|
),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
from typing import Optional
|
|
3
|
+
from typing import Dict, Optional
|
|
4
4
|
from datetime import datetime
|
|
5
5
|
from typing_extensions import Literal
|
|
6
6
|
|
|
@@ -28,4 +28,6 @@ class DatasetItem(BaseModel):
|
|
|
28
28
|
|
|
29
29
|
dataset_id: Optional[str] = None
|
|
30
30
|
|
|
31
|
+
files: Optional[Dict[str, str]] = None
|
|
32
|
+
|
|
31
33
|
object: Optional[Literal["dataset.item"]] = None
|
|
@@ -2,17 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from
|
|
5
|
+
from typing import Union
|
|
6
|
+
from typing_extensions import Literal, Required, TypeAlias, TypedDict
|
|
6
7
|
|
|
7
8
|
from .._types import SequenceNotStr
|
|
8
9
|
|
|
9
|
-
__all__ = ["DatasetUpdateParams"]
|
|
10
|
+
__all__ = ["DatasetUpdateParams", "PartialDatasetRequestBase", "RestoreRequest"]
|
|
10
11
|
|
|
11
12
|
|
|
12
|
-
class
|
|
13
|
+
class PartialDatasetRequestBase(TypedDict, total=False):
|
|
13
14
|
description: str
|
|
14
15
|
|
|
15
16
|
name: str
|
|
16
17
|
|
|
17
18
|
tags: SequenceNotStr[str]
|
|
18
19
|
"""The tags associated with the entity"""
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class RestoreRequest(TypedDict, total=False):
|
|
23
|
+
restore: Required[Literal[True]]
|
|
24
|
+
"""Set to true to restore the entity from the database."""
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DatasetUpdateParams: TypeAlias = Union[PartialDatasetRequestBase, RestoreRequest]
|
|
@@ -10,7 +10,43 @@ from .dataset import Dataset
|
|
|
10
10
|
from .._models import BaseModel
|
|
11
11
|
from .shared.identity import Identity
|
|
12
12
|
|
|
13
|
-
__all__ = ["Evaluation"]
|
|
13
|
+
__all__ = ["Evaluation", "Progress", "ProgressItems", "ProgressItemsFailedItem", "ProgressWorkflows"]
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class ProgressItemsFailedItem(BaseModel):
|
|
17
|
+
item_id: str
|
|
18
|
+
|
|
19
|
+
error: Optional[str] = None
|
|
20
|
+
|
|
21
|
+
error_type: Optional[str] = None
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class ProgressItems(BaseModel):
|
|
25
|
+
failed: int
|
|
26
|
+
|
|
27
|
+
pending: int
|
|
28
|
+
|
|
29
|
+
successful: int
|
|
30
|
+
|
|
31
|
+
total: int
|
|
32
|
+
|
|
33
|
+
failed_items: Optional[List[ProgressItemsFailedItem]] = None
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class ProgressWorkflows(BaseModel):
|
|
37
|
+
completed: int
|
|
38
|
+
|
|
39
|
+
failed: int
|
|
40
|
+
|
|
41
|
+
pending: int
|
|
42
|
+
|
|
43
|
+
total: int
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
class Progress(BaseModel):
|
|
47
|
+
items: Optional[ProgressItems] = None
|
|
48
|
+
|
|
49
|
+
workflows: Optional[ProgressWorkflows] = None
|
|
14
50
|
|
|
15
51
|
|
|
16
52
|
class Evaluation(BaseModel):
|
|
@@ -39,6 +75,9 @@ class Evaluation(BaseModel):
|
|
|
39
75
|
|
|
40
76
|
object: Optional[Literal["evaluation"]] = None
|
|
41
77
|
|
|
78
|
+
progress: Optional[Progress] = None
|
|
79
|
+
"""Progress of the evaluation's underlying async job"""
|
|
80
|
+
|
|
42
81
|
status_reason: Optional[str] = None
|
|
43
82
|
"""Reason for evaluation status"""
|
|
44
83
|
|
|
@@ -575,6 +575,9 @@ class ContributorEvaluationQuestionTaskConfiguration(BaseModel):
|
|
|
575
575
|
queue_id: Optional[str] = None
|
|
576
576
|
"""The contributor annotation queue to include this task in. Defaults to `default`"""
|
|
577
577
|
|
|
578
|
+
required: Optional[bool] = None
|
|
579
|
+
"""Whether the question is required to be answered"""
|
|
580
|
+
|
|
578
581
|
|
|
579
582
|
class ContributorEvaluationQuestionTask(BaseModel):
|
|
580
583
|
configuration: ContributorEvaluationQuestionTaskConfiguration
|
|
@@ -574,6 +574,9 @@ class ContributorEvaluationQuestionTaskConfiguration(TypedDict, total=False):
|
|
|
574
574
|
queue_id: str
|
|
575
575
|
"""The contributor annotation queue to include this task in. Defaults to `default`"""
|
|
576
576
|
|
|
577
|
+
required: bool
|
|
578
|
+
"""Whether the question is required to be answered"""
|
|
579
|
+
|
|
577
580
|
|
|
578
581
|
class ContributorEvaluationQuestionTask(TypedDict, total=False):
|
|
579
582
|
configuration: Required[ContributorEvaluationQuestionTaskConfiguration]
|
scale_gp_beta/types/file.py
CHANGED
scale_gp_beta/types/question.py
CHANGED
|
@@ -27,6 +27,12 @@ class CategoricalQuestionConfiguration(BaseModel):
|
|
|
27
27
|
choices: List[str]
|
|
28
28
|
"""Categorical answer choices (must contain at least one entry)"""
|
|
29
29
|
|
|
30
|
+
dropdown: Optional[bool] = None
|
|
31
|
+
"""Whether the question is displayed as a dropdown in the UI."""
|
|
32
|
+
|
|
33
|
+
multi: Optional[bool] = None
|
|
34
|
+
"""Whether the question allows multiple answers."""
|
|
35
|
+
|
|
30
36
|
|
|
31
37
|
class CategoricalQuestion(BaseModel):
|
|
32
38
|
id: str
|
|
@@ -37,6 +37,12 @@ class CategoricalQuestionRequestConfiguration(TypedDict, total=False):
|
|
|
37
37
|
choices: Required[SequenceNotStr[str]]
|
|
38
38
|
"""Categorical answer choices (must contain at least one entry)"""
|
|
39
39
|
|
|
40
|
+
dropdown: bool
|
|
41
|
+
"""Whether the question is displayed as a dropdown in the UI."""
|
|
42
|
+
|
|
43
|
+
multi: bool
|
|
44
|
+
"""Whether the question allows multiple answers."""
|
|
45
|
+
|
|
40
46
|
|
|
41
47
|
class RatingQuestionRequest(TypedDict, total=False):
|
|
42
48
|
configuration: Required[RatingQuestionRequestConfiguration]
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: scale-gp-beta
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a36
|
|
4
4
|
Summary: The official Python library for the Scale GP API
|
|
5
5
|
Project-URL: Homepage, https://github.com/scaleapi/sgp-python-beta
|
|
6
6
|
Project-URL: Repository, https://github.com/scaleapi/sgp-python-beta
|
|
7
|
-
Author-email: Scale GP <
|
|
7
|
+
Author-email: Scale GP <erich.woo@scale.com>
|
|
8
8
|
License: Apache-2.0
|
|
9
9
|
Classifier: Intended Audience :: Developers
|
|
10
10
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
@@ -9,9 +9,9 @@ scale_gp_beta/_models.py,sha256=lKnskYPONAWDvWo8tmbbVk7HmG7UOsI0Nve0vSMmkRc,3045
|
|
|
9
9
|
scale_gp_beta/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
|
|
10
10
|
scale_gp_beta/_resource.py,sha256=siZly_U6D0AOVLAzaOsqUdEFFzVMbWRj-ml30nvRp7E,1118
|
|
11
11
|
scale_gp_beta/_response.py,sha256=GemuybPk0uemovTlGHyHkj-ScYTTDJA0jqH5FQqIPwQ,28852
|
|
12
|
-
scale_gp_beta/_streaming.py,sha256=
|
|
12
|
+
scale_gp_beta/_streaming.py,sha256=KHa_-WJgY6cCYhvrYLLc1oqUre23iUGidYXefuyNOrw,10161
|
|
13
13
|
scale_gp_beta/_types.py,sha256=3-dTgyCs1Fep_LgdDCs7B_SYv9He9BYHJYJunweFT9U,7243
|
|
14
|
-
scale_gp_beta/_version.py,sha256=
|
|
14
|
+
scale_gp_beta/_version.py,sha256=fSd5Y27e3lZiJOnRuTkcIVHXNmkQ9tpMXUA0Tfk061A,174
|
|
15
15
|
scale_gp_beta/pagination.py,sha256=t-U86PYxl20VRsz8VXOMJJDe7HxkX7ISFMvRNbBNy9s,4054
|
|
16
16
|
scale_gp_beta/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
scale_gp_beta/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
@@ -47,7 +47,7 @@ scale_gp_beta/resources/__init__.py,sha256=93-Ld9MSd_dX_jld0IQD_Ckm4n5NvoR2dy0Ai
|
|
|
47
47
|
scale_gp_beta/resources/completions.py,sha256=wtVhUh5LMwXolICQhpeCZUlzRM-ChLSvLiQm92sO-EQ,30934
|
|
48
48
|
scale_gp_beta/resources/credentials.py,sha256=BDhz10_4Ag5bM_iZLGSCWzvdycxM4U3bAYATVml9JYQ,32743
|
|
49
49
|
scale_gp_beta/resources/dataset_items.py,sha256=DGKu3067yVBuUkkR3xRnl0OLqPWY7TyWQd5hviYq5vk,22378
|
|
50
|
-
scale_gp_beta/resources/datasets.py,sha256=
|
|
50
|
+
scale_gp_beta/resources/datasets.py,sha256=WaWS8-BTxSktFsbiLfWXSG_l8YR76mi7qe9ccXbN8WA,25189
|
|
51
51
|
scale_gp_beta/resources/evaluation_items.py,sha256=tR8FtxCnxVdQzpAnPg9dYQkDZKXyCFe9zEXgk3cbrgw,11517
|
|
52
52
|
scale_gp_beta/resources/evaluations.py,sha256=MZ21uvFaI-mFl6mOJP3Y1Xu1I6M0FtSwxKxwaZVKGOo,35442
|
|
53
53
|
scale_gp_beta/resources/inference.py,sha256=Gwi7yt8BK47LFRbx9X4Ei4HLh3keZ5a37dHd2eONf4g,7539
|
|
@@ -80,7 +80,7 @@ scale_gp_beta/types/credential_update_params.py,sha256=kZKaZVgBShHxoYVNqWAUo2ZWK
|
|
|
80
80
|
scale_gp_beta/types/dataset.py,sha256=wts1ygPfzuh5pyYZ12YxuJMxVd-yM5hF_ZNUYxpfbho,667
|
|
81
81
|
scale_gp_beta/types/dataset_create_params.py,sha256=D754CiYUWu-yCGr0S1PxIGSIXolOYbpEME8OxIKJ8_I,550
|
|
82
82
|
scale_gp_beta/types/dataset_delete_response.py,sha256=OKLcQBastV6fhdKw4kNX1HNn_IczD6OCpHDbkAyg3mM,246
|
|
83
|
-
scale_gp_beta/types/dataset_item.py,sha256=
|
|
83
|
+
scale_gp_beta/types/dataset_item.py,sha256=6ScqXWMP7D9IXW3xjOw04AE0CaSYNMHB2JCApKs--ow,678
|
|
84
84
|
scale_gp_beta/types/dataset_item_batch_create_params.py,sha256=ORwWuIFKilxhuVhzcF32HD68E0-n5dnRlbyxUk4H3Ko,478
|
|
85
85
|
scale_gp_beta/types/dataset_item_batch_create_response.py,sha256=tUVLQ7igWxp4Dn0pvi1K6YEf7m8XnsrlyHbBkVq9i6k,402
|
|
86
86
|
scale_gp_beta/types/dataset_item_delete_response.py,sha256=uwOgD05XLn1xQixILGwOb3EcDK9ov8fuJkyfsg1pjug,254
|
|
@@ -89,18 +89,18 @@ scale_gp_beta/types/dataset_item_retrieve_params.py,sha256=f0kJg0btCGITamo949F7t
|
|
|
89
89
|
scale_gp_beta/types/dataset_item_update_params.py,sha256=4voEG9nKbxREiFRLzWqXZAWsw3wIm4EU1cnvOmsvGRA,367
|
|
90
90
|
scale_gp_beta/types/dataset_list_params.py,sha256=C-NCvkrOv5n43NSe2AiR225zDT0MOEjtEW6qQJSm9zk,471
|
|
91
91
|
scale_gp_beta/types/dataset_retrieve_params.py,sha256=5tpzuzX6y1WKKxP2AbjYwwcATpB1eZCv4wZABG3baIQ,282
|
|
92
|
-
scale_gp_beta/types/dataset_update_params.py,sha256=
|
|
93
|
-
scale_gp_beta/types/evaluation.py,sha256=
|
|
92
|
+
scale_gp_beta/types/dataset_update_params.py,sha256=gc3pPByWNRkh17CyPsEySIQj01Oy3UT7SJCbSB2Dg5w,741
|
|
93
|
+
scale_gp_beta/types/evaluation.py,sha256=ACWbBpcfqi4ZFlKuUoVz5zY7Fkb7OECsqCzTZfQf4Vg,1875
|
|
94
94
|
scale_gp_beta/types/evaluation_create_params.py,sha256=lyc7smsbyaRWftdp2A3qIULYyq9m2Cgaq_wyqDD6gws,3068
|
|
95
|
-
scale_gp_beta/types/evaluation_item.py,sha256=
|
|
95
|
+
scale_gp_beta/types/evaluation_item.py,sha256=rymtxIsG5m7x1ux-gB9YXQNNdRvE7FyAVpJBquLV0uI,730
|
|
96
96
|
scale_gp_beta/types/evaluation_item_list_params.py,sha256=7sQVVKB87uO45lYuMUhGR6125a6rG19gYx6gckR7sxU,426
|
|
97
97
|
scale_gp_beta/types/evaluation_item_retrieve_params.py,sha256=UYEKIAQ4dy92ZOSV1tWDZcvXG7_0BSpOND5Ehzs7QM4,296
|
|
98
98
|
scale_gp_beta/types/evaluation_list_params.py,sha256=Xe88rpcm2w-ufTR8bnJYJfk09FiESKddWMzwZCjP_LU,536
|
|
99
99
|
scale_gp_beta/types/evaluation_retrieve_params.py,sha256=_YuT-E2VO-f_SvHaIe24KBbhTNoK8T-3tVB6Ov6cqfg,356
|
|
100
|
-
scale_gp_beta/types/evaluation_task.py,sha256=
|
|
101
|
-
scale_gp_beta/types/evaluation_task_param.py,sha256=
|
|
100
|
+
scale_gp_beta/types/evaluation_task.py,sha256=oKLqVPdhql-M170wtWRf43wxjcENfwOJyUH1nqsc51w,21658
|
|
101
|
+
scale_gp_beta/types/evaluation_task_param.py,sha256=S4nmI79KfJiP827pXcsMH6ZDxSgcna0F6sf5U6dYtz0,20993
|
|
102
102
|
scale_gp_beta/types/evaluation_update_params.py,sha256=BcIkNNB_hKAzA9CEUyvxSBw5rRP6-o8seYPChaMABkg,762
|
|
103
|
-
scale_gp_beta/types/file.py,sha256=
|
|
103
|
+
scale_gp_beta/types/file.py,sha256=UNoDts9Re8ZYsieR3dnCjuwdrG5gRcL36-y4YDTOxZk,655
|
|
104
104
|
scale_gp_beta/types/file_create_params.py,sha256=KpXv6JCbd8BlgceTmBTewxOky2JTJaTW3mcGiVVU7wE,317
|
|
105
105
|
scale_gp_beta/types/file_delete_response.py,sha256=IgZhHsKNfc9NqwqLTYrAam5APFuyquIEUVNQgsz4zyg,240
|
|
106
106
|
scale_gp_beta/types/file_list_params.py,sha256=rXCQkumIdyC3XqvkTIuOkSeRKVOz90G0Q6GFuA6BH6M,441
|
|
@@ -116,8 +116,8 @@ scale_gp_beta/types/model_create_params.py,sha256=kdmA0Hp7if0Y4niLCxfxJF8R7l2YTE
|
|
|
116
116
|
scale_gp_beta/types/model_delete_response.py,sha256=qFOwFx8kjinPSF6oTA347I0fq5x8qBvsrVMG-lxf8V4,242
|
|
117
117
|
scale_gp_beta/types/model_list_params.py,sha256=UJkBX6LCoK4mVUe6LJx_qD1dZLFypPeXof1YBTXURS8,636
|
|
118
118
|
scale_gp_beta/types/model_update_params.py,sha256=HwanIDr9Gwp-c9zdJWJx-JQPFP3MhdBX7mEQL-mlayA,3762
|
|
119
|
-
scale_gp_beta/types/question.py,sha256=
|
|
120
|
-
scale_gp_beta/types/question_create_params.py,sha256=
|
|
119
|
+
scale_gp_beta/types/question.py,sha256=dOj144nUCXV_1dWP1J_T6QoEnvUZeEFTiIFEvmX7JAI,4345
|
|
120
|
+
scale_gp_beta/types/question_create_params.py,sha256=5oMbGYvX8AlGRgb0MZfimN8YX9UMo_iT3j89QhSnNWc,3281
|
|
121
121
|
scale_gp_beta/types/question_list_params.py,sha256=2x9Ww7wPAhc0hr6WpcqydLuB-mECpMK-MG7jbmtfKJM,362
|
|
122
122
|
scale_gp_beta/types/response.py,sha256=urf4oYc5fUDQkiY6Xqrn9yInsdsBe_8UTRQhzEtGLkI,143236
|
|
123
123
|
scale_gp_beta/types/response_create_params.py,sha256=J1NmJi9BwkHAV2Ui1z5_YzrC54fZI8kShT5mWmOmcF0,28272
|
|
@@ -148,7 +148,7 @@ scale_gp_beta/types/chat/model_definition.py,sha256=OWcZ4StZ4K2wfL7FqHNK-HqxLjy9
|
|
|
148
148
|
scale_gp_beta/types/files/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
149
149
|
scale_gp_beta/types/shared/__init__.py,sha256=6-walu4YgOTaOj7wsidywTj67PyBJaNYFqasfiTP9-4,130
|
|
150
150
|
scale_gp_beta/types/shared/identity.py,sha256=4XDoJjsPI4lkwyaYyNstw7OunIzJjVWujPoZPrNdoQA,348
|
|
151
|
-
scale_gp_beta-0.1.
|
|
152
|
-
scale_gp_beta-0.1.
|
|
153
|
-
scale_gp_beta-0.1.
|
|
154
|
-
scale_gp_beta-0.1.
|
|
151
|
+
scale_gp_beta-0.1.0a36.dist-info/METADATA,sha256=_JYeHkD3tOiunXsowTqe9-j_mk3gt_-xKNvMXCNzHf8,28619
|
|
152
|
+
scale_gp_beta-0.1.0a36.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
153
|
+
scale_gp_beta-0.1.0a36.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
|
|
154
|
+
scale_gp_beta-0.1.0a36.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|