scale-gp-beta 0.1.0a39__py3-none-any.whl → 0.1.0a40__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/_base_client.py +8 -2
- scale_gp_beta/_client.py +564 -143
- scale_gp_beta/_streaming.py +12 -10
- scale_gp_beta/_types.py +3 -2
- scale_gp_beta/_version.py +1 -1
- scale_gp_beta/resources/chat/completions.py +4 -0
- scale_gp_beta/resources/credentials.py +4 -0
- scale_gp_beta/resources/dataset_items.py +4 -0
- scale_gp_beta/resources/datasets.py +4 -0
- scale_gp_beta/resources/evaluation_items.py +4 -0
- scale_gp_beta/resources/evaluations.py +4 -0
- scale_gp_beta/resources/files/files.py +4 -0
- scale_gp_beta/resources/models.py +4 -0
- scale_gp_beta/resources/questions.py +4 -0
- scale_gp_beta/resources/spans.py +28 -0
- scale_gp_beta/types/chat/completion_models_params.py +2 -0
- scale_gp_beta/types/credential_list_params.py +2 -0
- scale_gp_beta/types/dataset_item_list_params.py +2 -0
- scale_gp_beta/types/dataset_list_params.py +2 -0
- scale_gp_beta/types/evaluation.py +2 -0
- scale_gp_beta/types/evaluation_create_params.py +2 -0
- scale_gp_beta/types/evaluation_item_list_params.py +2 -0
- scale_gp_beta/types/evaluation_list_params.py +2 -0
- scale_gp_beta/types/evaluation_task.py +5 -1
- scale_gp_beta/types/evaluation_task_param.py +5 -1
- scale_gp_beta/types/file_import_from_cloud_response.py +4 -0
- scale_gp_beta/types/file_list_params.py +2 -0
- scale_gp_beta/types/inference_create_params.py +2 -0
- scale_gp_beta/types/model_list_params.py +2 -0
- scale_gp_beta/types/question_list_params.py +2 -0
- scale_gp_beta/types/span_assessment.py +2 -0
- scale_gp_beta/types/span_search_params.py +11 -0
- {scale_gp_beta-0.1.0a39.dist-info → scale_gp_beta-0.1.0a40.dist-info}/METADATA +3 -40
- {scale_gp_beta-0.1.0a39.dist-info → scale_gp_beta-0.1.0a40.dist-info}/RECORD +36 -36
- {scale_gp_beta-0.1.0a39.dist-info → scale_gp_beta-0.1.0a40.dist-info}/WHEEL +0 -0
- {scale_gp_beta-0.1.0a39.dist-info → scale_gp_beta-0.1.0a40.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: scale-gp-beta
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a40
|
|
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
|
|
@@ -364,6 +364,7 @@ pip install --pre scale-gp-beta[aiohttp]
|
|
|
364
364
|
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
|
|
365
365
|
|
|
366
366
|
```python
|
|
367
|
+
import os
|
|
367
368
|
import asyncio
|
|
368
369
|
from scale_gp_beta import DefaultAioHttpClient
|
|
369
370
|
from scale_gp_beta import AsyncSGPClient
|
|
@@ -372,7 +373,7 @@ from scale_gp_beta import AsyncSGPClient
|
|
|
372
373
|
async def main() -> None:
|
|
373
374
|
async with AsyncSGPClient(
|
|
374
375
|
account_id="My Account ID",
|
|
375
|
-
api_key="
|
|
376
|
+
api_key=os.environ.get("SGP_API_KEY"), # This is the default and can be omitted
|
|
376
377
|
http_client=DefaultAioHttpClient(),
|
|
377
378
|
) as client:
|
|
378
379
|
completion = await client.chat.completions.create(
|
|
@@ -385,44 +386,6 @@ async def main() -> None:
|
|
|
385
386
|
asyncio.run(main())
|
|
386
387
|
```
|
|
387
388
|
|
|
388
|
-
## Streaming responses
|
|
389
|
-
|
|
390
|
-
We provide support for streaming responses using Server Side Events (SSE).
|
|
391
|
-
|
|
392
|
-
```python
|
|
393
|
-
from scale_gp_beta import SGPClient
|
|
394
|
-
|
|
395
|
-
client = SGPClient(
|
|
396
|
-
account_id="My Account ID",
|
|
397
|
-
)
|
|
398
|
-
|
|
399
|
-
stream = client.chat.completions.create(
|
|
400
|
-
messages=[{"foo": "bar"}],
|
|
401
|
-
model="model",
|
|
402
|
-
stream=True,
|
|
403
|
-
)
|
|
404
|
-
for completion in stream:
|
|
405
|
-
print(completion)
|
|
406
|
-
```
|
|
407
|
-
|
|
408
|
-
The async client uses the exact same interface.
|
|
409
|
-
|
|
410
|
-
```python
|
|
411
|
-
from scale_gp_beta import AsyncSGPClient
|
|
412
|
-
|
|
413
|
-
client = AsyncSGPClient(
|
|
414
|
-
account_id="My Account ID",
|
|
415
|
-
)
|
|
416
|
-
|
|
417
|
-
stream = await client.chat.completions.create(
|
|
418
|
-
messages=[{"foo": "bar"}],
|
|
419
|
-
model="model",
|
|
420
|
-
stream=True,
|
|
421
|
-
)
|
|
422
|
-
async for completion in stream:
|
|
423
|
-
print(completion)
|
|
424
|
-
```
|
|
425
|
-
|
|
426
389
|
## Using types
|
|
427
390
|
|
|
428
391
|
Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typing.html#typing.TypedDict). Responses are [Pydantic models](https://docs.pydantic.dev) which also provide helper methods for things like:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
scale_gp_beta/__init__.py,sha256=MFsKxnaLkZ-Rqv127bA2T0OpHD3me1OnwIom-0I2gB0,2742
|
|
2
|
-
scale_gp_beta/_base_client.py,sha256
|
|
3
|
-
scale_gp_beta/_client.py,sha256=
|
|
2
|
+
scale_gp_beta/_base_client.py,sha256=kgmMG_sRxHSOpDZ5bRlQuHLsUU4Fyvj65xyWZjJUaXs,67254
|
|
3
|
+
scale_gp_beta/_client.py,sha256=CDVgOH_HDZQtzirfkzLB4xUwArlcRUui7JYOvSwoyBo,39792
|
|
4
4
|
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
|
|
@@ -9,9 +9,9 @@ scale_gp_beta/_models.py,sha256=3D65psj_C02Mw0K2zpBWrn1khmrvtEXgTTQ6P4r3tUY,3183
|
|
|
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
|
|
13
|
-
scale_gp_beta/_types.py,sha256=
|
|
14
|
-
scale_gp_beta/_version.py,sha256=
|
|
12
|
+
scale_gp_beta/_streaming.py,sha256=-_hEXPmI3ouK-z-AqZgV-7E0nsg0hGFbSay_4DS0G4E,10233
|
|
13
|
+
scale_gp_beta/_types.py,sha256=0FzYp68NWFG94MjRqPn3u7XVdEymv8OqM_94Qhy9HnM,7302
|
|
14
|
+
scale_gp_beta/_version.py,sha256=4rgpyTZJ7kotJDT3YdaDpS00Lh8o4i5hnA_li-WPNg4,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
|
|
@@ -45,23 +45,23 @@ scale_gp_beta/lib/tracing/integrations/openai/openai_tracing_sgp_processor.py,sh
|
|
|
45
45
|
scale_gp_beta/lib/tracing/integrations/openai/utils.py,sha256=DqCb7_QX-OT4y34K9wtoXIv7-Yk_IOvSbQvC96Sgpy8,2183
|
|
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
|
-
scale_gp_beta/resources/credentials.py,sha256=
|
|
49
|
-
scale_gp_beta/resources/dataset_items.py,sha256
|
|
50
|
-
scale_gp_beta/resources/datasets.py,sha256=
|
|
51
|
-
scale_gp_beta/resources/evaluation_items.py,sha256=
|
|
52
|
-
scale_gp_beta/resources/evaluations.py,sha256=
|
|
48
|
+
scale_gp_beta/resources/credentials.py,sha256=Eax7ouhJQ61CHy-mQlmBiylBKiNfGhBFoWlBiuHHQH4,32903
|
|
49
|
+
scale_gp_beta/resources/dataset_items.py,sha256=-cJJ1ikJ5mDUGIRkhqTuY652h0EAP5Wa-lmH2gA782w,23278
|
|
50
|
+
scale_gp_beta/resources/datasets.py,sha256=EoaQQRwONXz1Hb23GagxJXU4lWsg-zedGqxbe7Njffc,25643
|
|
51
|
+
scale_gp_beta/resources/evaluation_items.py,sha256=Tm76T2eu26nYHOFP9Dp-F6hzt6dx3dImFGy2iCQHwew,11677
|
|
52
|
+
scale_gp_beta/resources/evaluations.py,sha256=zlA4OXp7oKDiNRcrI0379Li7LPBHZOxduQ6FQRMC-_w,36240
|
|
53
53
|
scale_gp_beta/resources/inference.py,sha256=Gwi7yt8BK47LFRbx9X4Ei4HLh3keZ5a37dHd2eONf4g,7539
|
|
54
|
-
scale_gp_beta/resources/models.py,sha256=
|
|
55
|
-
scale_gp_beta/resources/questions.py,sha256=
|
|
54
|
+
scale_gp_beta/resources/models.py,sha256=_sUDzgLJbP7BL_NzkfpufG0Ln-JGBGx7Zx8jYQWp9hs,32407
|
|
55
|
+
scale_gp_beta/resources/questions.py,sha256=7M6TDVoEo4VjVKjm7uHkO3hxeCKjRDs2fBZxyZvh4Mo,30166
|
|
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
|
-
scale_gp_beta/resources/spans.py,sha256=
|
|
58
|
+
scale_gp_beta/resources/spans.py,sha256=n1H-cbyufqR0fg9h_jLb66IAYHxWUPhIrNNokZNi5Ok,33260
|
|
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=yOnyGK2QBaFNL0el5aL1A5T6JmBKof6ghf9Hh80C7mo,50044
|
|
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=dowTYD-xKhCI17zINYZywUtzv7VwofjV1tY6AfncHjE,24603
|
|
65
65
|
scale_gp_beta/types/__init__.py,sha256=UawYclVqYJ0aRV2gVIRH9dahG8qf302hHzXVB9d8vug,6449
|
|
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
|
|
@@ -74,7 +74,7 @@ scale_gp_beta/types/container_param.py,sha256=fwIeOygG1QTG9queCSSJwXqx1F4xLtx7hK
|
|
|
74
74
|
scale_gp_beta/types/credential.py,sha256=meNzxwLyxsBO1FITa0xVNONjfmW_aZhb-xbQw2HMqO4,499
|
|
75
75
|
scale_gp_beta/types/credential_create_params.py,sha256=BqpPxLS3rawzvm9vOsQHKWGn901eySz45tFo0KgP5FY,655
|
|
76
76
|
scale_gp_beta/types/credential_delete_response.py,sha256=QlyDqZ3L11hnEMpLJXRvlxLf3YFDpC04ApQa2ZauBII,252
|
|
77
|
-
scale_gp_beta/types/credential_list_params.py,sha256=
|
|
77
|
+
scale_gp_beta/types/credential_list_params.py,sha256=i_kon5Mn7BKr5TdxGZnHss7CovAOCB3jol8LyrXMXhk,436
|
|
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
|
|
@@ -84,30 +84,30 @@ scale_gp_beta/types/dataset_item.py,sha256=6ScqXWMP7D9IXW3xjOw04AE0CaSYNMHB2JCAp
|
|
|
84
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
|
-
scale_gp_beta/types/dataset_item_list_params.py,sha256=
|
|
87
|
+
scale_gp_beta/types/dataset_item_list_params.py,sha256=67lZCFl0uipJQPmaMmEpEY9w8gY3ax6UuoiQodT1l2A,679
|
|
88
88
|
scale_gp_beta/types/dataset_item_retrieve_params.py,sha256=f0kJg0btCGITamo949F7trvR0no7lOuVfoKTpFLJ5Gw,356
|
|
89
89
|
scale_gp_beta/types/dataset_item_update_params.py,sha256=URTsZxwUcXrh_WMTKS3rW7XRozTz2FmqmhrDh6uyPTc,442
|
|
90
|
-
scale_gp_beta/types/dataset_list_params.py,sha256=
|
|
90
|
+
scale_gp_beta/types/dataset_list_params.py,sha256=gbcZsk3AQcuGFWAtXNBvFpRksGy2WE4n_mNJ9TLbzAU,489
|
|
91
91
|
scale_gp_beta/types/dataset_retrieve_params.py,sha256=5tpzuzX6y1WKKxP2AbjYwwcATpB1eZCv4wZABG3baIQ,282
|
|
92
92
|
scale_gp_beta/types/dataset_update_params.py,sha256=gc3pPByWNRkh17CyPsEySIQj01Oy3UT7SJCbSB2Dg5w,741
|
|
93
|
-
scale_gp_beta/types/evaluation.py,sha256=
|
|
94
|
-
scale_gp_beta/types/evaluation_create_params.py,sha256=
|
|
93
|
+
scale_gp_beta/types/evaluation.py,sha256=ui7MowmtuE2bEXfJjz6k1WUdANAJ_Nuu3iXFBMo1pN4,1936
|
|
94
|
+
scale_gp_beta/types/evaluation_create_params.py,sha256=0WaPCVxYlyQ5vIVsrY_F8P-4v53wCbatyjGnJoCE598,3312
|
|
95
95
|
scale_gp_beta/types/evaluation_item.py,sha256=rymtxIsG5m7x1ux-gB9YXQNNdRvE7FyAVpJBquLV0uI,730
|
|
96
|
-
scale_gp_beta/types/evaluation_item_list_params.py,sha256=
|
|
96
|
+
scale_gp_beta/types/evaluation_item_list_params.py,sha256=cOjeaahKsNNKKkLAsOpRYgV0DGi5rw6cNrHgJI0HRyM,444
|
|
97
97
|
scale_gp_beta/types/evaluation_item_retrieve_params.py,sha256=UYEKIAQ4dy92ZOSV1tWDZcvXG7_0BSpOND5Ehzs7QM4,296
|
|
98
|
-
scale_gp_beta/types/evaluation_list_params.py,sha256=
|
|
98
|
+
scale_gp_beta/types/evaluation_list_params.py,sha256=69LdO9g5HKq11QtbuvlpnQaJaMP71EOyWqJQTBI3X-U,554
|
|
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=F1IAoSXjC2wvZbfDeZsXkzXHya7AhDHvw3vFhp_yWsg,22311
|
|
101
|
+
scale_gp_beta/types/evaluation_task_param.py,sha256=xhX1P75XwlwNnPdcDs2ZpkhsamWfygvu0gox32SeNSw,21651
|
|
102
102
|
scale_gp_beta/types/evaluation_update_params.py,sha256=BcIkNNB_hKAzA9CEUyvxSBw5rRP6-o8seYPChaMABkg,762
|
|
103
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_import_from_cloud_params.py,sha256=LWGtWQOfvH5dJhN5o7PsEPmxq9nttnD0iAdywbekahQ,722
|
|
107
|
-
scale_gp_beta/types/file_import_from_cloud_response.py,sha256=
|
|
108
|
-
scale_gp_beta/types/file_list_params.py,sha256=
|
|
107
|
+
scale_gp_beta/types/file_import_from_cloud_response.py,sha256=H7fNd8B2rmfvJ62ly_WjQOcCQkpFgF08xgXsoj5LM2o,1140
|
|
108
|
+
scale_gp_beta/types/file_list_params.py,sha256=LwSU543G9LZ7x_3bN8zQ8shhgEi0N-a9B1L3i6tNUp8,459
|
|
109
109
|
scale_gp_beta/types/file_update_params.py,sha256=cZAz43aIXmc0jOz-uKWDsZIJx24NN4t9kQ2XDORvQ-Q,297
|
|
110
|
-
scale_gp_beta/types/inference_create_params.py,sha256=
|
|
110
|
+
scale_gp_beta/types/inference_create_params.py,sha256=MnGu6IPy7FLItyQd3HZa8RImPrClVi8e6ZB8X8GXfSY,706
|
|
111
111
|
scale_gp_beta/types/inference_create_response.py,sha256=JgoDjN5B8zRUpOXXasD97vFKVN7A6QHKz_PN64pKB6s,390
|
|
112
112
|
scale_gp_beta/types/inference_model.py,sha256=a1lGEIV8UQ7IHqZpWljAtHpce8skN0rd3jD1LCX1on8,4933
|
|
113
113
|
scale_gp_beta/types/inference_response.py,sha256=PIX9ihGJ6IP6D6i8gk3o_mbSLy9fvRwZdGyICQKh-q8,337
|
|
@@ -116,16 +116,16 @@ scale_gp_beta/types/item_locator.py,sha256=2DgC4WO_8eqnGFUZppHqqhLFhbRQQVph83glx
|
|
|
116
116
|
scale_gp_beta/types/item_locator_template.py,sha256=eEwfJCLdYr0OZ5-Pk5iGtHSa93h0zGZ015C7RtN1XYY,200
|
|
117
117
|
scale_gp_beta/types/model_create_params.py,sha256=kdmA0Hp7if0Y4niLCxfxJF8R7l2YTEGJztAQht0F4ic,3545
|
|
118
118
|
scale_gp_beta/types/model_delete_response.py,sha256=qFOwFx8kjinPSF6oTA347I0fq5x8qBvsrVMG-lxf8V4,242
|
|
119
|
-
scale_gp_beta/types/model_list_params.py,sha256=
|
|
119
|
+
scale_gp_beta/types/model_list_params.py,sha256=g2nDok3hjOpNnmCn2Tw_S6zjJSWUfLuSFz4taer8yPo,654
|
|
120
120
|
scale_gp_beta/types/model_update_params.py,sha256=HwanIDr9Gwp-c9zdJWJx-JQPFP3MhdBX7mEQL-mlayA,3762
|
|
121
121
|
scale_gp_beta/types/question.py,sha256=j2fS-KltMyFM-Ya11yOZSC08fgRNRuCQYIXX5kjphls,5696
|
|
122
122
|
scale_gp_beta/types/question_create_params.py,sha256=bUMrgopy535JQTDekFck7c29J-PZofKcH5ard0AbOE0,4348
|
|
123
|
-
scale_gp_beta/types/question_list_params.py,sha256=
|
|
123
|
+
scale_gp_beta/types/question_list_params.py,sha256=8Frysw9ZBPAcllPKCGJfMnvnmGV7D_srREBosvi6e-A,380
|
|
124
124
|
scale_gp_beta/types/response.py,sha256=urf4oYc5fUDQkiY6Xqrn9yInsdsBe_8UTRQhzEtGLkI,143236
|
|
125
125
|
scale_gp_beta/types/response_create_params.py,sha256=J1NmJi9BwkHAV2Ui1z5_YzrC54fZI8kShT5mWmOmcF0,28272
|
|
126
126
|
scale_gp_beta/types/response_create_response.py,sha256=_S32F3x6GBEf_ICVD2bE1fsfZitb2nOYiDls5cFe7MA,1106716
|
|
127
127
|
scale_gp_beta/types/span.py,sha256=ygHgE2DcK1Iqpg4oMa-Mx1XmZa7UBtDlfBPcPbq67Cg,1331
|
|
128
|
-
scale_gp_beta/types/span_assessment.py,sha256=
|
|
128
|
+
scale_gp_beta/types/span_assessment.py,sha256=HFbD3b1THIGTv7FaBYh-8BCEfSVFcoEfZvgGqHtDZCM,2319
|
|
129
129
|
scale_gp_beta/types/span_assessment_create_params.py,sha256=DaPJNq2SjvwF9yCRJeaPRKL0nVayRAv8iJnP9Vg5Ndo,1055
|
|
130
130
|
scale_gp_beta/types/span_assessment_delete_response.py,sha256=GU7gLHHk0AJ4aSC00A_c16_aksItXjA2nVLGVILHM1o,260
|
|
131
131
|
scale_gp_beta/types/span_assessment_list_params.py,sha256=uWG6tcycpIKPApw11C9HG5dfZRO56eHUWz1b7PFg4Pg,626
|
|
@@ -133,7 +133,7 @@ scale_gp_beta/types/span_assessment_update_params.py,sha256=StwCobyVcnrZV1asDAxG
|
|
|
133
133
|
scale_gp_beta/types/span_batch_params.py,sha256=TsV1LnFXDXLhZdggn1BmIjQtAc8DwD6i57cBLCnStK8,1317
|
|
134
134
|
scale_gp_beta/types/span_batch_response.py,sha256=gNRJL9XVm5ELuIOWTCUbwwetxeD0s-M6JZi11USvBpU,354
|
|
135
135
|
scale_gp_beta/types/span_create_params.py,sha256=z9hRw6kb5xZUJkR6q_JcdHX0i0BSnLAgn9IITxJojDY,1227
|
|
136
|
-
scale_gp_beta/types/span_search_params.py,sha256=
|
|
136
|
+
scale_gp_beta/types/span_search_params.py,sha256=jFSC7g__hvkdU1FofTsGSgcdecW6KKmDnDR6ZqB-gpc,2297
|
|
137
137
|
scale_gp_beta/types/span_status.py,sha256=CFCRCm2AeoQhAe0Eg3m9VRYGbi6r9ZaBOZ0QQd2wKRQ,227
|
|
138
138
|
scale_gp_beta/types/span_type.py,sha256=Y4cFVO66V_KJQ2stokdspyBunh4kxgSDt2EZg960DYI,696
|
|
139
139
|
scale_gp_beta/types/span_update_params.py,sha256=xpk0NKNsw_RAXIZN1U1ddqUHpPE--W9_Y3i1tTZKLZg,574
|
|
@@ -144,13 +144,13 @@ scale_gp_beta/types/chat/chat_completion.py,sha256=JM1meIbWU2ImWkSO2m78666ltpUgD
|
|
|
144
144
|
scale_gp_beta/types/chat/chat_completion_chunk.py,sha256=w7kGJcwoGuj_wl9kEACNspEvy8RV-h1wlwMW3dhC-xY,12025
|
|
145
145
|
scale_gp_beta/types/chat/completion_create_params.py,sha256=B6BQB5m1vImbbkUg953bmp7lMj3UUL7Ow6dA-OlEENw,4557
|
|
146
146
|
scale_gp_beta/types/chat/completion_create_response.py,sha256=0OhfoJW8azVRrZdXRRMuiJ7kEEeMDnKScxrr3sayzDo,374
|
|
147
|
-
scale_gp_beta/types/chat/completion_models_params.py,sha256=
|
|
147
|
+
scale_gp_beta/types/chat/completion_models_params.py,sha256=uNKBXELbZdcgldoJDndI3rANsiloLTMoPWqm0NbIqf4,653
|
|
148
148
|
scale_gp_beta/types/chat/completion_models_response.py,sha256=Ctgj6o-QWPSdjBKzG9J4Id0-DjXu4UGGw1NR6-840Ec,403
|
|
149
149
|
scale_gp_beta/types/chat/model_definition.py,sha256=OWcZ4StZ4K2wfL7FqHNK-HqxLjy9J2zE_JVq2RqPk1w,1098
|
|
150
150
|
scale_gp_beta/types/files/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
151
151
|
scale_gp_beta/types/shared/__init__.py,sha256=6-walu4YgOTaOj7wsidywTj67PyBJaNYFqasfiTP9-4,130
|
|
152
152
|
scale_gp_beta/types/shared/identity.py,sha256=4XDoJjsPI4lkwyaYyNstw7OunIzJjVWujPoZPrNdoQA,348
|
|
153
|
-
scale_gp_beta-0.1.
|
|
154
|
-
scale_gp_beta-0.1.
|
|
155
|
-
scale_gp_beta-0.1.
|
|
156
|
-
scale_gp_beta-0.1.
|
|
153
|
+
scale_gp_beta-0.1.0a40.dist-info/METADATA,sha256=JGb8RavPrGHLbGHxNlmPLkmoSYSpSusgk6Lt8fQQSQI,27988
|
|
154
|
+
scale_gp_beta-0.1.0a40.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
155
|
+
scale_gp_beta-0.1.0a40.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
|
|
156
|
+
scale_gp_beta-0.1.0a40.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|