scale-gp-beta 0.1.0a35__py3-none-any.whl → 0.1.0a37__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/_models.py +8 -3
- scale_gp_beta/_streaming.py +4 -6
- scale_gp_beta/_utils/_sync.py +3 -31
- scale_gp_beta/_utils/_utils.py +1 -1
- scale_gp_beta/_version.py +1 -1
- scale_gp_beta/resources/dataset_items.py +28 -2
- scale_gp_beta/resources/datasets.py +107 -3
- scale_gp_beta/resources/evaluations.py +16 -0
- scale_gp_beta/resources/questions.py +107 -1
- scale_gp_beta/types/dataset_create_params.py +3 -0
- scale_gp_beta/types/dataset_item.py +3 -1
- scale_gp_beta/types/dataset_item_batch_create_params.py +3 -0
- scale_gp_beta/types/dataset_item_update_params.py +3 -0
- scale_gp_beta/types/dataset_update_params.py +12 -3
- scale_gp_beta/types/evaluation.py +40 -1
- scale_gp_beta/types/evaluation_create_params.py +6 -0
- 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 +54 -1
- scale_gp_beta/types/question_create_params.py +44 -1
- {scale_gp_beta-0.1.0a35.dist-info → scale_gp_beta-0.1.0a37.dist-info}/METADATA +5 -6
- {scale_gp_beta-0.1.0a35.dist-info → scale_gp_beta-0.1.0a37.dist-info}/RECORD +26 -26
- {scale_gp_beta-0.1.0a35.dist-info → scale_gp_beta-0.1.0a37.dist-info}/WHEEL +0 -0
- {scale_gp_beta-0.1.0a35.dist-info → scale_gp_beta-0.1.0a37.dist-info}/licenses/LICENSE +0 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Dict, Union
|
|
5
|
+
from typing import Dict, Union, Iterable
|
|
6
6
|
from typing_extensions import Literal, Required, TypeAlias, TypedDict
|
|
7
7
|
|
|
8
8
|
from .._types import SequenceNotStr
|
|
@@ -19,6 +19,8 @@ __all__ = [
|
|
|
19
19
|
"FreeTextQuestionRequestConfiguration",
|
|
20
20
|
"FormQuestionRequest",
|
|
21
21
|
"FormQuestionRequestConfiguration",
|
|
22
|
+
"TimestampQuestionRequest",
|
|
23
|
+
"TimestampQuestionRequestConfiguration",
|
|
22
24
|
]
|
|
23
25
|
|
|
24
26
|
|
|
@@ -30,6 +32,9 @@ class CategoricalQuestionRequest(TypedDict, total=False):
|
|
|
30
32
|
prompt: Required[str]
|
|
31
33
|
"""user-facing question prompt"""
|
|
32
34
|
|
|
35
|
+
conditions: Iterable[Dict[str, object]]
|
|
36
|
+
"""Conditions for the question to be shown"""
|
|
37
|
+
|
|
33
38
|
question_type: Literal["categorical"]
|
|
34
39
|
|
|
35
40
|
|
|
@@ -37,6 +42,12 @@ class CategoricalQuestionRequestConfiguration(TypedDict, total=False):
|
|
|
37
42
|
choices: Required[SequenceNotStr[str]]
|
|
38
43
|
"""Categorical answer choices (must contain at least one entry)"""
|
|
39
44
|
|
|
45
|
+
dropdown: bool
|
|
46
|
+
"""Whether the question is displayed as a dropdown in the UI."""
|
|
47
|
+
|
|
48
|
+
multi: bool
|
|
49
|
+
"""Whether the question allows multiple answers."""
|
|
50
|
+
|
|
40
51
|
|
|
41
52
|
class RatingQuestionRequest(TypedDict, total=False):
|
|
42
53
|
configuration: Required[RatingQuestionRequestConfiguration]
|
|
@@ -46,6 +57,9 @@ class RatingQuestionRequest(TypedDict, total=False):
|
|
|
46
57
|
prompt: Required[str]
|
|
47
58
|
"""user-facing question prompt"""
|
|
48
59
|
|
|
60
|
+
conditions: Iterable[Dict[str, object]]
|
|
61
|
+
"""Conditions for the question to be shown"""
|
|
62
|
+
|
|
49
63
|
question_type: Literal["rating"]
|
|
50
64
|
|
|
51
65
|
|
|
@@ -66,6 +80,9 @@ class NumberQuestionRequest(TypedDict, total=False):
|
|
|
66
80
|
prompt: Required[str]
|
|
67
81
|
"""user-facing question prompt"""
|
|
68
82
|
|
|
83
|
+
conditions: Iterable[Dict[str, object]]
|
|
84
|
+
"""Conditions for the question to be shown"""
|
|
85
|
+
|
|
69
86
|
configuration: NumberQuestionRequestConfiguration
|
|
70
87
|
|
|
71
88
|
question_type: Literal["number"]
|
|
@@ -85,6 +102,9 @@ class FreeTextQuestionRequest(TypedDict, total=False):
|
|
|
85
102
|
prompt: Required[str]
|
|
86
103
|
"""user-facing question prompt"""
|
|
87
104
|
|
|
105
|
+
conditions: Iterable[Dict[str, object]]
|
|
106
|
+
"""Conditions for the question to be shown"""
|
|
107
|
+
|
|
88
108
|
configuration: FreeTextQuestionRequestConfiguration
|
|
89
109
|
|
|
90
110
|
question_type: Literal["free_text"]
|
|
@@ -106,6 +126,9 @@ class FormQuestionRequest(TypedDict, total=False):
|
|
|
106
126
|
prompt: Required[str]
|
|
107
127
|
"""user-facing question prompt"""
|
|
108
128
|
|
|
129
|
+
conditions: Iterable[Dict[str, object]]
|
|
130
|
+
"""Conditions for the question to be shown"""
|
|
131
|
+
|
|
109
132
|
question_type: Literal["form"]
|
|
110
133
|
|
|
111
134
|
|
|
@@ -114,10 +137,30 @@ class FormQuestionRequestConfiguration(TypedDict, total=False):
|
|
|
114
137
|
"""The JSON schema of the desired form object"""
|
|
115
138
|
|
|
116
139
|
|
|
140
|
+
class TimestampQuestionRequest(TypedDict, total=False):
|
|
141
|
+
name: Required[str]
|
|
142
|
+
|
|
143
|
+
prompt: Required[str]
|
|
144
|
+
"""user-facing question prompt"""
|
|
145
|
+
|
|
146
|
+
conditions: Iterable[Dict[str, object]]
|
|
147
|
+
"""Conditions for the question to be shown"""
|
|
148
|
+
|
|
149
|
+
configuration: TimestampQuestionRequestConfiguration
|
|
150
|
+
|
|
151
|
+
question_type: Literal["timestamp"]
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
class TimestampQuestionRequestConfiguration(TypedDict, total=False):
|
|
155
|
+
allow_multi_timestamps: bool
|
|
156
|
+
"""Whether to allow multiple media timestamps"""
|
|
157
|
+
|
|
158
|
+
|
|
117
159
|
QuestionCreateParams: TypeAlias = Union[
|
|
118
160
|
CategoricalQuestionRequest,
|
|
119
161
|
RatingQuestionRequest,
|
|
120
162
|
NumberQuestionRequest,
|
|
121
163
|
FreeTextQuestionRequest,
|
|
122
164
|
FormQuestionRequest,
|
|
165
|
+
TimestampQuestionRequest,
|
|
123
166
|
]
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: scale-gp-beta
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a37
|
|
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
|
|
@@ -13,7 +13,6 @@ Classifier: Operating System :: Microsoft :: Windows
|
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
14
14
|
Classifier: Operating System :: POSIX
|
|
15
15
|
Classifier: Operating System :: POSIX :: Linux
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.9
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -21,7 +20,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.13
|
|
22
21
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
23
22
|
Classifier: Typing :: Typed
|
|
24
|
-
Requires-Python: >=3.
|
|
23
|
+
Requires-Python: >=3.9
|
|
25
24
|
Requires-Dist: anyio<5,>=3.5.0
|
|
26
25
|
Requires-Dist: distro<2,>=1.7.0
|
|
27
26
|
Requires-Dist: httpx<1,>=0.23.0
|
|
@@ -38,7 +37,7 @@ Description-Content-Type: text/markdown
|
|
|
38
37
|
<!-- prettier-ignore -->
|
|
39
38
|
[)](https://pypi.org/project/scale-gp-beta/)
|
|
40
39
|
|
|
41
|
-
The Scale GP Python library provides convenient access to the Scale GP REST API from any Python 3.
|
|
40
|
+
The Scale GP Python library provides convenient access to the Scale GP REST API from any Python 3.9+
|
|
42
41
|
application. The library includes type definitions for all request params and response fields,
|
|
43
42
|
and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
|
|
44
43
|
|
|
@@ -822,7 +821,7 @@ print(scale_gp_beta.__version__)
|
|
|
822
821
|
|
|
823
822
|
## Requirements
|
|
824
823
|
|
|
825
|
-
Python 3.
|
|
824
|
+
Python 3.9 or higher.
|
|
826
825
|
|
|
827
826
|
## Contributing
|
|
828
827
|
|
|
@@ -5,13 +5,13 @@ scale_gp_beta/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
|
|
|
5
5
|
scale_gp_beta/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
6
6
|
scale_gp_beta/_exceptions.py,sha256=95GM5CLFtP-QMjjmzsr5ajjZOyEZvyaETfGmqNPR8YM,3226
|
|
7
7
|
scale_gp_beta/_files.py,sha256=HOCL7NYupx5rmxPWzvzifOW_LkRj0zBssmxqLFtYURI,3616
|
|
8
|
-
scale_gp_beta/_models.py,sha256=
|
|
8
|
+
scale_gp_beta/_models.py,sha256=_jpXNYoIJGzLCqeD4LcmiD4UgZKYMLg4cZ8TcWUn94I,30559
|
|
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=Gsl_hFtQYt2vcWicCgFxVTSg2ORWfnjPN5un6zLEEp8,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
|
|
@@ -22,10 +22,10 @@ scale_gp_beta/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XE
|
|
|
22
22
|
scale_gp_beta/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
|
23
23
|
scale_gp_beta/_utils/_resources_proxy.py,sha256=WaUZOpuuisv9lUR-7qJEbeHhftBmlvziX-7iEcrjbmc,624
|
|
24
24
|
scale_gp_beta/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
25
|
-
scale_gp_beta/_utils/_sync.py,sha256=
|
|
25
|
+
scale_gp_beta/_utils/_sync.py,sha256=HBnZkkBnzxtwOZe0212C4EyoRvxhTVtTrLFDz2_xVCg,1589
|
|
26
26
|
scale_gp_beta/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
|
|
27
27
|
scale_gp_beta/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
28
|
-
scale_gp_beta/_utils/_utils.py,sha256=
|
|
28
|
+
scale_gp_beta/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
|
|
29
29
|
scale_gp_beta/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
30
30
|
scale_gp_beta/lib/CONTRIBUTING.MD,sha256=Fv8H-hZi86n7Vsi2JyeoHi7JzKZGRiNZKO5EqG63IKM,2495
|
|
31
31
|
scale_gp_beta/lib/tracing/__init__.py,sha256=UgyExbqAA2ljDEF4X4YFhtbBZuoQJ2IF4hkGs_xQEc0,226
|
|
@@ -46,13 +46,13 @@ scale_gp_beta/lib/tracing/integrations/openai/utils.py,sha256=s6tbNFJ3N7GjqXDM9f
|
|
|
46
46
|
scale_gp_beta/resources/__init__.py,sha256=93-Ld9MSd_dX_jld0IQD_Ckm4n5NvoR2dy0AiNUYDrg,7003
|
|
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
|
-
scale_gp_beta/resources/dataset_items.py,sha256=
|
|
50
|
-
scale_gp_beta/resources/datasets.py,sha256=
|
|
49
|
+
scale_gp_beta/resources/dataset_items.py,sha256=yQvv5-njB0MVds7tt6bYB4AHU3pVNIo5CbJFcH8VQ4Y,23118
|
|
50
|
+
scale_gp_beta/resources/datasets.py,sha256=x2m3Aua452kqVFI2gF_wjHAcupcS_EeaXoQuyZhObwA,25483
|
|
51
51
|
scale_gp_beta/resources/evaluation_items.py,sha256=tR8FtxCnxVdQzpAnPg9dYQkDZKXyCFe9zEXgk3cbrgw,11517
|
|
52
|
-
scale_gp_beta/resources/evaluations.py,sha256=
|
|
52
|
+
scale_gp_beta/resources/evaluations.py,sha256=4i12A5WfHrS-iclGQHL7pzkO0x2moluijJZo8xf-5IQ,36080
|
|
53
53
|
scale_gp_beta/resources/inference.py,sha256=Gwi7yt8BK47LFRbx9X4Ei4HLh3keZ5a37dHd2eONf4g,7539
|
|
54
54
|
scale_gp_beta/resources/models.py,sha256=obGc4jz3k8Cxl7t218GPmq8HvODX911vc6-wGJ-cXSA,32247
|
|
55
|
-
scale_gp_beta/resources/questions.py,sha256=
|
|
55
|
+
scale_gp_beta/resources/questions.py,sha256=wNd4H3F0uk09shhdg6yZQN1DedjwKGvhZQQN1j53Oiw,30006
|
|
56
56
|
scale_gp_beta/resources/responses.py,sha256=ha6JeU1vCoxC4Z00jsbS1D7jEpxy-xlCiEkx5-RqrX0,11755
|
|
57
57
|
scale_gp_beta/resources/span_assessments.py,sha256=HOJ6qKtwXVPkgRLO8VmcfEoFWTAlAHl-SrjCpIDj7Ck,25560
|
|
58
58
|
scale_gp_beta/resources/spans.py,sha256=ootzSRVA_1hYXOjADrKJ8uO7CwhwZsfYLVJHE83CnIE,32080
|
|
@@ -78,29 +78,29 @@ scale_gp_beta/types/credential_list_params.py,sha256=3yh0VLCaD3PlON_zlddB7rnJsUG
|
|
|
78
78
|
scale_gp_beta/types/credential_secret.py,sha256=xC-_rE4b-s2QJbduvE6DtVPXXI9yWzJ3IGjZB0IM4t4,267
|
|
79
79
|
scale_gp_beta/types/credential_update_params.py,sha256=kZKaZVgBShHxoYVNqWAUo2ZWKN7bcau4Ym3ckYs9_VU,615
|
|
80
80
|
scale_gp_beta/types/dataset.py,sha256=wts1ygPfzuh5pyYZ12YxuJMxVd-yM5hF_ZNUYxpfbho,667
|
|
81
|
-
scale_gp_beta/types/dataset_create_params.py,sha256=
|
|
81
|
+
scale_gp_beta/types/dataset_create_params.py,sha256=KEKL0BZI_i5ZfRp36dOL8vhUAsIBIzqEkfm4MABHE8s,635
|
|
82
82
|
scale_gp_beta/types/dataset_delete_response.py,sha256=OKLcQBastV6fhdKw4kNX1HNn_IczD6OCpHDbkAyg3mM,246
|
|
83
|
-
scale_gp_beta/types/dataset_item.py,sha256=
|
|
84
|
-
scale_gp_beta/types/dataset_item_batch_create_params.py,sha256=
|
|
83
|
+
scale_gp_beta/types/dataset_item.py,sha256=6ScqXWMP7D9IXW3xjOw04AE0CaSYNMHB2JCApKs--ow,678
|
|
84
|
+
scale_gp_beta/types/dataset_item_batch_create_params.py,sha256=ZdcL_57X7IDwzaA7hFkYKuLleT_IToWlSJ6q6G27a04,563
|
|
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
|
|
87
87
|
scale_gp_beta/types/dataset_item_list_params.py,sha256=CEB161IozqL-n7YC54g76nFqK0sp7l-A0QB9ET0L86M,661
|
|
88
88
|
scale_gp_beta/types/dataset_item_retrieve_params.py,sha256=f0kJg0btCGITamo949F7trvR0no7lOuVfoKTpFLJ5Gw,356
|
|
89
|
-
scale_gp_beta/types/dataset_item_update_params.py,sha256=
|
|
89
|
+
scale_gp_beta/types/dataset_item_update_params.py,sha256=URTsZxwUcXrh_WMTKS3rW7XRozTz2FmqmhrDh6uyPTc,442
|
|
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=
|
|
94
|
-
scale_gp_beta/types/evaluation_create_params.py,sha256=
|
|
95
|
-
scale_gp_beta/types/evaluation_item.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
|
+
scale_gp_beta/types/evaluation_create_params.py,sha256=YlfRv_mAbMgEtFp_mj7QrgNCkoghfJHNKLpKZehbb28,3244
|
|
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=_6U_wU3HhmgVxQKHVnSe4UETjdwhMHFNWsKHmaJrzRc,5719
|
|
120
|
+
scale_gp_beta/types/question_create_params.py,sha256=tNAnEyuX4kIbgFpU-TyU5YlbScH7Cz9h2PyhOI1dViw,4371
|
|
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.0a37.dist-info/METADATA,sha256=kQuM2PQmgSBv8uO0PjvRvqJyebnQoMcb1zF3bQA5XzE,28569
|
|
152
|
+
scale_gp_beta-0.1.0a37.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
153
|
+
scale_gp_beta-0.1.0a37.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
|
|
154
|
+
scale_gp_beta-0.1.0a37.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|