scale-gp-beta 0.1.0a34__py3-none-any.whl → 0.1.0a35__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/_version.py +1 -1
- scale_gp_beta/resources/chat/completions.py +0 -4
- scale_gp_beta/resources/files/files.py +8 -0
- scale_gp_beta/types/chat/completion_models_params.py +0 -2
- scale_gp_beta/types/file_list_params.py +3 -0
- {scale_gp_beta-0.1.0a34.dist-info → scale_gp_beta-0.1.0a35.dist-info}/METADATA +2 -2
- {scale_gp_beta-0.1.0a34.dist-info → scale_gp_beta-0.1.0a35.dist-info}/RECORD +9 -9
- {scale_gp_beta-0.1.0a34.dist-info → scale_gp_beta-0.1.0a35.dist-info}/WHEEL +0 -0
- {scale_gp_beta-0.1.0a34.dist-info → scale_gp_beta-0.1.0a35.dist-info}/licenses/LICENSE +0 -0
scale_gp_beta/_version.py
CHANGED
|
@@ -522,7 +522,6 @@ class CompletionsResource(SyncAPIResource):
|
|
|
522
522
|
def models(
|
|
523
523
|
self,
|
|
524
524
|
*,
|
|
525
|
-
check_availability: bool | Omit = omit,
|
|
526
525
|
ending_before: str | Omit = omit,
|
|
527
526
|
limit: int | Omit = omit,
|
|
528
527
|
model_vendor: Literal[
|
|
@@ -570,7 +569,6 @@ class CompletionsResource(SyncAPIResource):
|
|
|
570
569
|
timeout=timeout,
|
|
571
570
|
query=maybe_transform(
|
|
572
571
|
{
|
|
573
|
-
"check_availability": check_availability,
|
|
574
572
|
"ending_before": ending_before,
|
|
575
573
|
"limit": limit,
|
|
576
574
|
"model_vendor": model_vendor,
|
|
@@ -1079,7 +1077,6 @@ class AsyncCompletionsResource(AsyncAPIResource):
|
|
|
1079
1077
|
async def models(
|
|
1080
1078
|
self,
|
|
1081
1079
|
*,
|
|
1082
|
-
check_availability: bool | Omit = omit,
|
|
1083
1080
|
ending_before: str | Omit = omit,
|
|
1084
1081
|
limit: int | Omit = omit,
|
|
1085
1082
|
model_vendor: Literal[
|
|
@@ -1127,7 +1124,6 @@ class AsyncCompletionsResource(AsyncAPIResource):
|
|
|
1127
1124
|
timeout=timeout,
|
|
1128
1125
|
query=await async_maybe_transform(
|
|
1129
1126
|
{
|
|
1130
|
-
"check_availability": check_availability,
|
|
1131
1127
|
"ending_before": ending_before,
|
|
1132
1128
|
"limit": limit,
|
|
1133
1129
|
"model_vendor": model_vendor,
|
|
@@ -169,6 +169,7 @@ class FilesResource(SyncAPIResource):
|
|
|
169
169
|
self,
|
|
170
170
|
*,
|
|
171
171
|
ending_before: str | Omit = omit,
|
|
172
|
+
filename: str | Omit = omit,
|
|
172
173
|
limit: int | Omit = omit,
|
|
173
174
|
sort_order: Literal["asc", "desc"] | Omit = omit,
|
|
174
175
|
starting_after: str | Omit = omit,
|
|
@@ -183,6 +184,8 @@ class FilesResource(SyncAPIResource):
|
|
|
183
184
|
List Files
|
|
184
185
|
|
|
185
186
|
Args:
|
|
187
|
+
filename: Filter files by filename (case-insensitive partial match)
|
|
188
|
+
|
|
186
189
|
extra_headers: Send extra headers
|
|
187
190
|
|
|
188
191
|
extra_query: Add additional query parameters to the request
|
|
@@ -202,6 +205,7 @@ class FilesResource(SyncAPIResource):
|
|
|
202
205
|
query=maybe_transform(
|
|
203
206
|
{
|
|
204
207
|
"ending_before": ending_before,
|
|
208
|
+
"filename": filename,
|
|
205
209
|
"limit": limit,
|
|
206
210
|
"sort_order": sort_order,
|
|
207
211
|
"starting_after": starting_after,
|
|
@@ -381,6 +385,7 @@ class AsyncFilesResource(AsyncAPIResource):
|
|
|
381
385
|
self,
|
|
382
386
|
*,
|
|
383
387
|
ending_before: str | Omit = omit,
|
|
388
|
+
filename: str | Omit = omit,
|
|
384
389
|
limit: int | Omit = omit,
|
|
385
390
|
sort_order: Literal["asc", "desc"] | Omit = omit,
|
|
386
391
|
starting_after: str | Omit = omit,
|
|
@@ -395,6 +400,8 @@ class AsyncFilesResource(AsyncAPIResource):
|
|
|
395
400
|
List Files
|
|
396
401
|
|
|
397
402
|
Args:
|
|
403
|
+
filename: Filter files by filename (case-insensitive partial match)
|
|
404
|
+
|
|
398
405
|
extra_headers: Send extra headers
|
|
399
406
|
|
|
400
407
|
extra_query: Add additional query parameters to the request
|
|
@@ -414,6 +421,7 @@ class AsyncFilesResource(AsyncAPIResource):
|
|
|
414
421
|
query=maybe_transform(
|
|
415
422
|
{
|
|
416
423
|
"ending_before": ending_before,
|
|
424
|
+
"filename": filename,
|
|
417
425
|
"limit": limit,
|
|
418
426
|
"sort_order": sort_order,
|
|
419
427
|
"starting_after": starting_after,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: scale-gp-beta
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a35
|
|
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
|
|
@@ -30,7 +30,7 @@ Requires-Dist: sniffio
|
|
|
30
30
|
Requires-Dist: typing-extensions<5,>=4.10
|
|
31
31
|
Provides-Extra: aiohttp
|
|
32
32
|
Requires-Dist: aiohttp; extra == 'aiohttp'
|
|
33
|
-
Requires-Dist: httpx-aiohttp>=0.1.
|
|
33
|
+
Requires-Dist: httpx-aiohttp>=0.1.9; extra == 'aiohttp'
|
|
34
34
|
Description-Content-Type: text/markdown
|
|
35
35
|
|
|
36
36
|
# Scale GP Python API library
|
|
@@ -11,7 +11,7 @@ scale_gp_beta/_resource.py,sha256=siZly_U6D0AOVLAzaOsqUdEFFzVMbWRj-ml30nvRp7E,11
|
|
|
11
11
|
scale_gp_beta/_response.py,sha256=GemuybPk0uemovTlGHyHkj-ScYTTDJA0jqH5FQqIPwQ,28852
|
|
12
12
|
scale_gp_beta/_streaming.py,sha256=fcCSGXslmi2SmmkM05g2SACXHk2Mj7k1X5uMBu6U5s8,10112
|
|
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=cuE6_G3hh3iYyVVBPegQ-HloQD32lY2XfBHfdlcP_Js,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
|
|
@@ -58,10 +58,10 @@ scale_gp_beta/resources/span_assessments.py,sha256=HOJ6qKtwXVPkgRLO8VmcfEoFWTAlA
|
|
|
58
58
|
scale_gp_beta/resources/spans.py,sha256=ootzSRVA_1hYXOjADrKJ8uO7CwhwZsfYLVJHE83CnIE,32080
|
|
59
59
|
scale_gp_beta/resources/chat/__init__.py,sha256=BVAfz9TM3DT5W9f_mt0P9YRxL_MsUxKCWAH6u1iogmA,1041
|
|
60
60
|
scale_gp_beta/resources/chat/chat.py,sha256=4OG_TrwVqYvV-7Ha8Nbc6iuXQuys9wKXgkxYmE6p6jk,3672
|
|
61
|
-
scale_gp_beta/resources/chat/completions.py,sha256=
|
|
61
|
+
scale_gp_beta/resources/chat/completions.py,sha256=jhRDNgdpdI5NR2Hq3vUZwdxD-gUrAqLGNTJ7Kc7f-iI,49884
|
|
62
62
|
scale_gp_beta/resources/files/__init__.py,sha256=VgAtqUimN5Kf_-lmEaNBnu_ApGegKsJQ1zNf-42MXFA,1002
|
|
63
63
|
scale_gp_beta/resources/files/content.py,sha256=QDtcnsK2my4-ndmwyaR6zyQnV1fEjIJ7CSDoyXUcYxg,5762
|
|
64
|
-
scale_gp_beta/resources/files/files.py,sha256=
|
|
64
|
+
scale_gp_beta/resources/files/files.py,sha256=3Vih4lajW7bDrkjCvnAzfvuwP0IAByCkj6W57lwrc5A,20977
|
|
65
65
|
scale_gp_beta/types/__init__.py,sha256=krfTV2Vwq8tHS7PhegzeoshLL2lzxUxVAqi8RKX3T84,6247
|
|
66
66
|
scale_gp_beta/types/approval_status.py,sha256=rI70l7e2ey2ax8tR_sBkziVSirq_QaDDV1bHgNrfCWQ,227
|
|
67
67
|
scale_gp_beta/types/assessment_type.py,sha256=_4V6RZ5wUyU0UYrDjCoIRdaiiZtZVpY6DMsW1QClq-c,271
|
|
@@ -103,7 +103,7 @@ scale_gp_beta/types/evaluation_update_params.py,sha256=BcIkNNB_hKAzA9CEUyvxSBw5r
|
|
|
103
103
|
scale_gp_beta/types/file.py,sha256=vgbFpARZs5_UYOQZkWLur8rFvGM8EROUO_8Ig0uu2B0,611
|
|
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
|
-
scale_gp_beta/types/file_list_params.py,sha256=
|
|
106
|
+
scale_gp_beta/types/file_list_params.py,sha256=rXCQkumIdyC3XqvkTIuOkSeRKVOz90G0Q6GFuA6BH6M,441
|
|
107
107
|
scale_gp_beta/types/file_update_params.py,sha256=cZAz43aIXmc0jOz-uKWDsZIJx24NN4t9kQ2XDORvQ-Q,297
|
|
108
108
|
scale_gp_beta/types/inference_create_params.py,sha256=lpdMjG-ufUDpH8bGPbt2klG0I9Q3o374WrqHBjEpPwE,665
|
|
109
109
|
scale_gp_beta/types/inference_create_response.py,sha256=JgoDjN5B8zRUpOXXasD97vFKVN7A6QHKz_PN64pKB6s,390
|
|
@@ -142,13 +142,13 @@ scale_gp_beta/types/chat/chat_completion.py,sha256=JM1meIbWU2ImWkSO2m78666ltpUgD
|
|
|
142
142
|
scale_gp_beta/types/chat/chat_completion_chunk.py,sha256=w7kGJcwoGuj_wl9kEACNspEvy8RV-h1wlwMW3dhC-xY,12025
|
|
143
143
|
scale_gp_beta/types/chat/completion_create_params.py,sha256=B6BQB5m1vImbbkUg953bmp7lMj3UUL7Ow6dA-OlEENw,4557
|
|
144
144
|
scale_gp_beta/types/chat/completion_create_response.py,sha256=0OhfoJW8azVRrZdXRRMuiJ7kEEeMDnKScxrr3sayzDo,374
|
|
145
|
-
scale_gp_beta/types/chat/completion_models_params.py,sha256=
|
|
145
|
+
scale_gp_beta/types/chat/completion_models_params.py,sha256=NdZ3Lkgclq6UKc9iae-evvCFuaOQszCwwubVjP1MYfk,635
|
|
146
146
|
scale_gp_beta/types/chat/completion_models_response.py,sha256=Ctgj6o-QWPSdjBKzG9J4Id0-DjXu4UGGw1NR6-840Ec,403
|
|
147
147
|
scale_gp_beta/types/chat/model_definition.py,sha256=OWcZ4StZ4K2wfL7FqHNK-HqxLjy9J2zE_JVq2RqPk1w,1098
|
|
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.0a35.dist-info/METADATA,sha256=J3_eX5-WQQb1MIsmCekmqDMdkHs__EFIgcPs0V3Xl0w,28623
|
|
152
|
+
scale_gp_beta-0.1.0a35.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
153
|
+
scale_gp_beta-0.1.0a35.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
|
|
154
|
+
scale_gp_beta-0.1.0a35.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|