scale-gp-beta 0.1.0a12__py3-none-any.whl → 0.1.0a14__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/__init__.py +5 -0
- scale_gp_beta/_utils/_proxy.py +4 -1
- scale_gp_beta/_utils/_resources_proxy.py +24 -0
- scale_gp_beta/_version.py +1 -1
- scale_gp_beta/pagination.py +39 -1
- scale_gp_beta/resources/chat/completions.py +136 -1
- scale_gp_beta/resources/dataset_items.py +29 -21
- scale_gp_beta/resources/datasets.py +18 -5
- scale_gp_beta/resources/evaluation_items.py +11 -7
- scale_gp_beta/resources/evaluations.py +142 -21
- scale_gp_beta/resources/files/files.py +10 -5
- scale_gp_beta/resources/models.py +35 -35
- scale_gp_beta/resources/spans.py +312 -24
- scale_gp_beta/types/__init__.py +9 -2
- scale_gp_beta/types/chat/__init__.py +3 -0
- scale_gp_beta/types/chat/completion_models_params.py +31 -0
- scale_gp_beta/types/{dataset_item_batch_create_response.py → chat/completion_models_response.py} +5 -5
- scale_gp_beta/types/chat/model_definition.py +32 -0
- scale_gp_beta/types/component.py +18 -0
- scale_gp_beta/types/component_param.py +19 -0
- scale_gp_beta/types/container.py +35 -0
- scale_gp_beta/types/container_param.py +28 -0
- scale_gp_beta/types/dataset_item.py +2 -0
- scale_gp_beta/types/dataset_item_list_params.py +7 -6
- scale_gp_beta/types/dataset_item_retrieve_params.py +1 -2
- scale_gp_beta/types/dataset_list_params.py +10 -4
- scale_gp_beta/types/evaluation.py +12 -2
- scale_gp_beta/types/evaluation_create_params.py +5 -5
- scale_gp_beta/types/{evaluation_archive_response.py → evaluation_delete_response.py} +2 -2
- scale_gp_beta/types/evaluation_item_list_params.py +6 -5
- scale_gp_beta/types/evaluation_list_params.py +9 -3
- scale_gp_beta/types/evaluation_task.py +139 -33
- scale_gp_beta/types/evaluation_task_param.py +88 -33
- scale_gp_beta/types/evaluation_update_params.py +17 -0
- scale_gp_beta/types/file_list_params.py +5 -4
- scale_gp_beta/types/inference_model.py +0 -4
- scale_gp_beta/types/item_locator.py +7 -0
- scale_gp_beta/types/item_locator_template.py +7 -0
- scale_gp_beta/types/model_list_params.py +17 -18
- scale_gp_beta/types/span.py +40 -1
- scale_gp_beta/types/span_batch_params.py +130 -0
- scale_gp_beta/types/span_create_params.py +71 -3
- scale_gp_beta/types/span_list_params.py +7 -6
- scale_gp_beta/types/span_update_params.py +5 -3
- {scale_gp_beta-0.1.0a12.dist-info → scale_gp_beta-0.1.0a14.dist-info}/METADATA +1 -1
- {scale_gp_beta-0.1.0a12.dist-info → scale_gp_beta-0.1.0a14.dist-info}/RECORD +48 -37
- {scale_gp_beta-0.1.0a12.dist-info → scale_gp_beta-0.1.0a14.dist-info}/WHEEL +0 -0
- {scale_gp_beta-0.1.0a12.dist-info → scale_gp_beta-0.1.0a14.dist-info}/licenses/LICENSE +0 -0
|
@@ -4,7 +4,7 @@ from __future__ import annotations
|
|
|
4
4
|
|
|
5
5
|
from typing import Dict, Union
|
|
6
6
|
from datetime import datetime
|
|
7
|
-
from typing_extensions import Annotated, TypedDict
|
|
7
|
+
from typing_extensions import Literal, Annotated, TypedDict
|
|
8
8
|
|
|
9
9
|
from .._utils import PropertyInfo
|
|
10
10
|
|
|
@@ -12,10 +12,12 @@ __all__ = ["SpanUpdateParams"]
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
class SpanUpdateParams(TypedDict, total=False):
|
|
15
|
-
data: Dict[str, object]
|
|
16
|
-
|
|
17
15
|
end_timestamp: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
18
16
|
|
|
17
|
+
metadata: Dict[str, object]
|
|
18
|
+
|
|
19
19
|
name: str
|
|
20
20
|
|
|
21
21
|
output: Dict[str, object]
|
|
22
|
+
|
|
23
|
+
status: Literal["SUCCESS", "ERROR"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: scale-gp-beta
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a14
|
|
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
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
scale_gp_beta/__init__.py,sha256=
|
|
1
|
+
scale_gp_beta/__init__.py,sha256=x8toPf2r1c14qt9Fvh5cjeX1tytmAWa3lMc4tg9SYKY,2646
|
|
2
2
|
scale_gp_beta/_base_client.py,sha256=8GtHz6aZm1Bzodrvusazgq3JJMpTHsCNyuUEw86he8M,64851
|
|
3
3
|
scale_gp_beta/_client.py,sha256=3pNXJs9TKLjfYoTjFIIoSdd4mwwX1cc-VUveMBmkl_8,24491
|
|
4
4
|
scale_gp_beta/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
|
|
@@ -11,13 +11,14 @@ 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=ScQhVBaKbtJrER3NkXbjokWE9DqSqREMIw9LE0NrFfA,6150
|
|
14
|
-
scale_gp_beta/_version.py,sha256=
|
|
15
|
-
scale_gp_beta/pagination.py,sha256=
|
|
14
|
+
scale_gp_beta/_version.py,sha256=nwmssArd-zLcELgHJ83V1-JtV8qRDuy7zmj3BfF3_xU,174
|
|
15
|
+
scale_gp_beta/pagination.py,sha256=hGfU8yPOvVgfVfMYgahG5lhdLgAS0Cpd6OA65a76lU8,3572
|
|
16
16
|
scale_gp_beta/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
scale_gp_beta/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
|
|
18
18
|
scale_gp_beta/_utils/_logs.py,sha256=e6Q2f2qmGe638ty50AXbwcPVlwCdTtXDzybw3eSWwGU,792
|
|
19
|
-
scale_gp_beta/_utils/_proxy.py,sha256=
|
|
19
|
+
scale_gp_beta/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
|
|
20
20
|
scale_gp_beta/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
|
21
|
+
scale_gp_beta/_utils/_resources_proxy.py,sha256=WaUZOpuuisv9lUR-7qJEbeHhftBmlvziX-7iEcrjbmc,624
|
|
21
22
|
scale_gp_beta/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
22
23
|
scale_gp_beta/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
|
23
24
|
scale_gp_beta/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
|
|
@@ -26,72 +27,82 @@ scale_gp_beta/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf
|
|
|
26
27
|
scale_gp_beta/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
27
28
|
scale_gp_beta/resources/__init__.py,sha256=Fyo05_2_pc5orfyTSIpxa3btmBTd45VasgibwSqbbKo,4942
|
|
28
29
|
scale_gp_beta/resources/completions.py,sha256=4esj9lGTJAxt6wFvON126DvEGkMIChRZ6uZBOf56Aac,31868
|
|
29
|
-
scale_gp_beta/resources/dataset_items.py,sha256=
|
|
30
|
-
scale_gp_beta/resources/datasets.py,sha256=
|
|
31
|
-
scale_gp_beta/resources/evaluation_items.py,sha256=
|
|
32
|
-
scale_gp_beta/resources/evaluations.py,sha256=
|
|
30
|
+
scale_gp_beta/resources/dataset_items.py,sha256=tEkpOkv_SzFx6pXZw5ehZ29ndXzoQxP_8tBRPVQDnxY,22584
|
|
31
|
+
scale_gp_beta/resources/datasets.py,sha256=CVvokGR-PHgghKPP1Yivrdg6seSIwuaSGCJOHt7Wv_o,21783
|
|
32
|
+
scale_gp_beta/resources/evaluation_items.py,sha256=Nvz3zKypvYUJWDDDvraaEwzr--Vbj27GAN670Ro5Mqo,11631
|
|
33
|
+
scale_gp_beta/resources/evaluations.py,sha256=nFWudDB9o8Dc33ypzLfp4B7nJKYDRElxJxjiD-hxpA8,31442
|
|
33
34
|
scale_gp_beta/resources/inference.py,sha256=w1JD8S5P_SxhOtj1vDyg-23uP72zVVVU6lKU_YbqX4U,7563
|
|
34
|
-
scale_gp_beta/resources/models.py,sha256=
|
|
35
|
-
scale_gp_beta/resources/spans.py,sha256=
|
|
35
|
+
scale_gp_beta/resources/models.py,sha256=pur_cBP8PHxN1PAiaEVld6OGxTWnwY-DJZQmkyo_lWQ,32645
|
|
36
|
+
scale_gp_beta/resources/spans.py,sha256=srcR8IdqtVrEHEOM94eQOm10Zfb7tgbSVtKfp7BicIA,34044
|
|
36
37
|
scale_gp_beta/resources/chat/__init__.py,sha256=BVAfz9TM3DT5W9f_mt0P9YRxL_MsUxKCWAH6u1iogmA,1041
|
|
37
38
|
scale_gp_beta/resources/chat/chat.py,sha256=4OG_TrwVqYvV-7Ha8Nbc6iuXQuys9wKXgkxYmE6p6jk,3672
|
|
38
|
-
scale_gp_beta/resources/chat/completions.py,sha256=
|
|
39
|
+
scale_gp_beta/resources/chat/completions.py,sha256=JhPNBdjsm5LL4wLLtwLR22cJ5OUEh-JLgJH50aZ2Ln4,51622
|
|
39
40
|
scale_gp_beta/resources/files/__init__.py,sha256=VgAtqUimN5Kf_-lmEaNBnu_ApGegKsJQ1zNf-42MXFA,1002
|
|
40
41
|
scale_gp_beta/resources/files/content.py,sha256=oJxb-28ZOUBgzE_MiAaJOcKFmtlB-N5APdhfZBNJna8,5762
|
|
41
|
-
scale_gp_beta/resources/files/files.py,sha256=
|
|
42
|
-
scale_gp_beta/types/__init__.py,sha256=
|
|
42
|
+
scale_gp_beta/resources/files/files.py,sha256=yGmHAI8mtO_NjqC5XVk3n2y2ZklzL_qGtnD8OuhDkcQ,20731
|
|
43
|
+
scale_gp_beta/types/__init__.py,sha256=4DM257FuCmwf7W09q6aUnoFIf8ncbpIzUclln_wBgR8,3870
|
|
43
44
|
scale_gp_beta/types/completion.py,sha256=5eewo25sdqL4vutqvE8wmugE0Cw6YLzZ0_AD6yjP9NM,3259
|
|
44
45
|
scale_gp_beta/types/completion_create_params.py,sha256=LE9vna29Kbh7E8qUq7EhQbcu7YuCF_h663maKtzOnhk,3063
|
|
46
|
+
scale_gp_beta/types/component.py,sha256=0dLrvTEHpF628wZ-CIniOpsOzKfnLlaZy4OPIFDzoF0,403
|
|
47
|
+
scale_gp_beta/types/component_param.py,sha256=6y4XFmRxDSoFo82Df9ej6rY1pQiq0lIByQXBjXK8kVA,445
|
|
48
|
+
scale_gp_beta/types/container.py,sha256=G7o6YDKYwf8fiXKGPoql5mYaDrDrMGbp8UKU3HYG1Bc,993
|
|
49
|
+
scale_gp_beta/types/container_param.py,sha256=rCFqFd9PoISIJRVg8-H7SEB_hI8iQ4PhPNYvV-3zwBA,921
|
|
45
50
|
scale_gp_beta/types/dataset.py,sha256=7hm3W_rGtGYLWWCxH_Wto0h74Ea2XSRzaYBSO0jYU74,584
|
|
46
51
|
scale_gp_beta/types/dataset_create_params.py,sha256=e8AftX5klhylAU-pseKOqaL6Fkdjq_xtFlPkewTTMfM,509
|
|
47
52
|
scale_gp_beta/types/dataset_delete_response.py,sha256=Lc4K761LM__hosWI3gYjYnEl5JXL-cg4DU3lXKhtQoo,345
|
|
48
|
-
scale_gp_beta/types/dataset_item.py,sha256=
|
|
53
|
+
scale_gp_beta/types/dataset_item.py,sha256=PZ6OHxNuvCOsAsLoN9kAqb7KugBe3powNSkDaDTM96k,545
|
|
49
54
|
scale_gp_beta/types/dataset_item_batch_create_params.py,sha256=ORwWuIFKilxhuVhzcF32HD68E0-n5dnRlbyxUk4H3Ko,478
|
|
50
|
-
scale_gp_beta/types/dataset_item_batch_create_response.py,sha256=tUVLQ7igWxp4Dn0pvi1K6YEf7m8XnsrlyHbBkVq9i6k,402
|
|
51
55
|
scale_gp_beta/types/dataset_item_delete_response.py,sha256=EffQRHJgGvew_n6XYVdojlC5Ec1oHg91xncrKWkyjGA,358
|
|
52
|
-
scale_gp_beta/types/dataset_item_list_params.py,sha256=
|
|
53
|
-
scale_gp_beta/types/dataset_item_retrieve_params.py,sha256=
|
|
56
|
+
scale_gp_beta/types/dataset_item_list_params.py,sha256=CEB161IozqL-n7YC54g76nFqK0sp7l-A0QB9ET0L86M,661
|
|
57
|
+
scale_gp_beta/types/dataset_item_retrieve_params.py,sha256=f0kJg0btCGITamo949F7trvR0no7lOuVfoKTpFLJ5Gw,356
|
|
54
58
|
scale_gp_beta/types/dataset_item_update_params.py,sha256=4voEG9nKbxREiFRLzWqXZAWsw3wIm4EU1cnvOmsvGRA,367
|
|
55
|
-
scale_gp_beta/types/dataset_list_params.py,sha256=
|
|
59
|
+
scale_gp_beta/types/dataset_list_params.py,sha256=LR9rmVn2X-DqEGXgZ_-OnvYk2pvuJhbkzmam8jQ5aws,448
|
|
56
60
|
scale_gp_beta/types/dataset_retrieve_params.py,sha256=5tpzuzX6y1WKKxP2AbjYwwcATpB1eZCv4wZABG3baIQ,282
|
|
57
61
|
scale_gp_beta/types/dataset_update_params.py,sha256=8S4fyBybzmElV5345ByeP9lPIbw3WGUQg_mABM_YyLk,378
|
|
58
|
-
scale_gp_beta/types/evaluation.py,sha256=
|
|
59
|
-
scale_gp_beta/types/
|
|
60
|
-
scale_gp_beta/types/
|
|
62
|
+
scale_gp_beta/types/evaluation.py,sha256=M2FXgn8VXH6M6cvhfs2mtvh4SO_9hz6EBroB9B9z-RM,1032
|
|
63
|
+
scale_gp_beta/types/evaluation_create_params.py,sha256=kH2i6E4ihIsYVX8ShcSmulGh4rkyAKJplUkSzplKRl4,2705
|
|
64
|
+
scale_gp_beta/types/evaluation_delete_response.py,sha256=UnzxLUOxwpF2PVybC28R_XYLSEfah8r4JbQGwYpZk34,354
|
|
61
65
|
scale_gp_beta/types/evaluation_item.py,sha256=KENQ19JXAEGD0q82HwQ6GDx69giPmzP0h0Uo8ehWF8w,603
|
|
62
|
-
scale_gp_beta/types/evaluation_item_list_params.py,sha256=
|
|
66
|
+
scale_gp_beta/types/evaluation_item_list_params.py,sha256=7sQVVKB87uO45lYuMUhGR6125a6rG19gYx6gckR7sxU,426
|
|
63
67
|
scale_gp_beta/types/evaluation_item_retrieve_params.py,sha256=UYEKIAQ4dy92ZOSV1tWDZcvXG7_0BSpOND5Ehzs7QM4,296
|
|
64
|
-
scale_gp_beta/types/evaluation_list_params.py,sha256=
|
|
68
|
+
scale_gp_beta/types/evaluation_list_params.py,sha256=DMQKsY6Xl5rA7gNngosF85EXuaguaF6U7Dyna3dbErA,489
|
|
65
69
|
scale_gp_beta/types/evaluation_retrieve_params.py,sha256=_YuT-E2VO-f_SvHaIe24KBbhTNoK8T-3tVB6Ov6cqfg,356
|
|
66
|
-
scale_gp_beta/types/evaluation_task.py,sha256=
|
|
67
|
-
scale_gp_beta/types/evaluation_task_param.py,sha256=
|
|
70
|
+
scale_gp_beta/types/evaluation_task.py,sha256=9j_7g7BROtyDrYPtpCao8Fz9ZWyJ0fyciKepdwkaw6g,14978
|
|
71
|
+
scale_gp_beta/types/evaluation_task_param.py,sha256=e9LU8WTIV458cf_9ATGi5jh9lHVYmvLZf7p1LXvHx4M,10543
|
|
72
|
+
scale_gp_beta/types/evaluation_update_params.py,sha256=lNbIG4lH5mCW51BJTzQN-RcXVa9JqPhJNFWyJcdAOUc,384
|
|
68
73
|
scale_gp_beta/types/file.py,sha256=Xkha0eSr1q6hkwjE9e2XNgk8kuHNoTEe1LXNhz6o-1k,528
|
|
69
74
|
scale_gp_beta/types/file_create_params.py,sha256=KpXv6JCbd8BlgceTmBTewxOky2JTJaTW3mcGiVVU7wE,317
|
|
70
75
|
scale_gp_beta/types/file_delete_response.py,sha256=lOsiaw8qrUOnH7smxb27-n7M4D1chfXlAUaMTRmdldY,336
|
|
71
76
|
scale_gp_beta/types/file_list.py,sha256=Ckj6RZNvIcrSeNg3NWbwyj92uezu4v5_6J4I4M0mjdA,637
|
|
72
|
-
scale_gp_beta/types/file_list_params.py,sha256=
|
|
77
|
+
scale_gp_beta/types/file_list_params.py,sha256=rFIimu3tLcEWfJItI4a6FDb8LJFX38JSzNlY-3D_0No,354
|
|
73
78
|
scale_gp_beta/types/file_update_params.py,sha256=cZAz43aIXmc0jOz-uKWDsZIJx24NN4t9kQ2XDORvQ-Q,297
|
|
74
79
|
scale_gp_beta/types/inference_create_params.py,sha256=lpdMjG-ufUDpH8bGPbt2klG0I9Q3o374WrqHBjEpPwE,665
|
|
75
80
|
scale_gp_beta/types/inference_create_response.py,sha256=JgoDjN5B8zRUpOXXasD97vFKVN7A6QHKz_PN64pKB6s,390
|
|
76
|
-
scale_gp_beta/types/inference_model.py,sha256=
|
|
81
|
+
scale_gp_beta/types/inference_model.py,sha256=ufzVXh5-NLwxGQxPvC-8oBOIuR0-nGu8Bvw1iSWLGBU,4401
|
|
77
82
|
scale_gp_beta/types/inference_model_list.py,sha256=I5qlOvpe-kX2HUp-C0h47Na0w6tRfZiC5wGCJ_KMxUk,688
|
|
78
83
|
scale_gp_beta/types/inference_response.py,sha256=PIX9ihGJ6IP6D6i8gk3o_mbSLy9fvRwZdGyICQKh-q8,337
|
|
79
84
|
scale_gp_beta/types/inference_response_chunk.py,sha256=UIw0gVwnqtQKPTH3QAW9UYVlD0lBz7av-EzcMqF7xgg,353
|
|
85
|
+
scale_gp_beta/types/item_locator.py,sha256=2DgC4WO_8eqnGFUZppHqqhLFhbRQQVph83glxrm4WQQ,184
|
|
86
|
+
scale_gp_beta/types/item_locator_template.py,sha256=eEwfJCLdYr0OZ5-Pk5iGtHSa93h0zGZ015C7RtN1XYY,200
|
|
80
87
|
scale_gp_beta/types/model_create_params.py,sha256=K04FNqloYYTwffMHnNLRnrPNOKPgG70R6xKXZzR3Uu0,3484
|
|
81
88
|
scale_gp_beta/types/model_delete_response.py,sha256=fSpTChRLHPOoc9SJbkS4wcLxVOc3kKBOya8wkGow5pY,339
|
|
82
|
-
scale_gp_beta/types/model_list_params.py,sha256=
|
|
89
|
+
scale_gp_beta/types/model_list_params.py,sha256=T4SXYdaqIwmFCeLw_5ZyEoICykSbRrJkXKJ7QWUZEvg,612
|
|
83
90
|
scale_gp_beta/types/model_update_params.py,sha256=RFXvs-EIDHmNO-fnPB8H6B9DlK6bYVsiwFDMPPFHGII,3701
|
|
84
|
-
scale_gp_beta/types/span.py,sha256=
|
|
85
|
-
scale_gp_beta/types/
|
|
86
|
-
scale_gp_beta/types/
|
|
87
|
-
scale_gp_beta/types/
|
|
88
|
-
scale_gp_beta/types/
|
|
91
|
+
scale_gp_beta/types/span.py,sha256=ZyOO7qliKlSSxG2kZ8IzOFwMIWXL3fBdc91rd-2YXSg,1874
|
|
92
|
+
scale_gp_beta/types/span_batch_params.py,sha256=r9VTChzF5CdXZIYiBM0pzVvjn25Ow-YaNl9OV6eohdg,3209
|
|
93
|
+
scale_gp_beta/types/span_create_params.py,sha256=MUREjuWtg6IvjCalESHjmERNh-ufUuf-_x6r-o4Gc0Y,3095
|
|
94
|
+
scale_gp_beta/types/span_list_params.py,sha256=lJUJIX3WAEWQ_41tWnFAhOpBuInmco767tjJE641EB8,549
|
|
95
|
+
scale_gp_beta/types/span_update_params.py,sha256=UWSKLWtcqMkLYHcY9LsVPSTjmGO-9c7H5zvYmODrCoM,564
|
|
96
|
+
scale_gp_beta/types/chat/__init__.py,sha256=YmEJo3C_C7aRkImUaKB5BG97oOGkV0q3sHimL8cMa4g,688
|
|
89
97
|
scale_gp_beta/types/chat/chat_completion.py,sha256=oYOrsTBdGwV9e_mF4F06XmdyZI4pyw06IQ-0mFn0etk,8250
|
|
90
98
|
scale_gp_beta/types/chat/chat_completion_chunk.py,sha256=57-i6LyOk6IX2HZvXsoUC26e0D0dVBNQjX_GbT0eKEw,7060
|
|
91
99
|
scale_gp_beta/types/chat/completion_create_params.py,sha256=Y7vJNvNM4Sov77l55aS5YtyRnrf7isediu3nKr6YE-A,4505
|
|
92
100
|
scale_gp_beta/types/chat/completion_create_response.py,sha256=0OhfoJW8azVRrZdXRRMuiJ7kEEeMDnKScxrr3sayzDo,374
|
|
101
|
+
scale_gp_beta/types/chat/completion_models_params.py,sha256=ETxafJIUx4tTvkiR-ZCrgF3p8ZEY1lbHktfJQrgJ_5c,611
|
|
102
|
+
scale_gp_beta/types/chat/completion_models_response.py,sha256=Ctgj6o-QWPSdjBKzG9J4Id0-DjXu4UGGw1NR6-840Ec,403
|
|
103
|
+
scale_gp_beta/types/chat/model_definition.py,sha256=_mQ5iTzzrEHt_K2SHBSABjO2tMmROLrwSXQyGGTc8Ls,847
|
|
93
104
|
scale_gp_beta/types/files/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
94
|
-
scale_gp_beta-0.1.
|
|
95
|
-
scale_gp_beta-0.1.
|
|
96
|
-
scale_gp_beta-0.1.
|
|
97
|
-
scale_gp_beta-0.1.
|
|
105
|
+
scale_gp_beta-0.1.0a14.dist-info/METADATA,sha256=RqK8PEY0ZopEy80rJ0KKfY9cLMv9oN9KVSdmkLvizN4,16942
|
|
106
|
+
scale_gp_beta-0.1.0a14.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
107
|
+
scale_gp_beta-0.1.0a14.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
|
|
108
|
+
scale_gp_beta-0.1.0a14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|