scale-gp-beta 0.1.0a30__py3-none-any.whl → 0.1.0a32__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 +3 -1
- scale_gp_beta/_base_client.py +12 -12
- scale_gp_beta/_client.py +20 -20
- scale_gp_beta/_compat.py +48 -48
- scale_gp_beta/_models.py +51 -45
- scale_gp_beta/_qs.py +7 -7
- scale_gp_beta/_types.py +53 -12
- scale_gp_beta/_utils/__init__.py +9 -2
- scale_gp_beta/_utils/_compat.py +45 -0
- scale_gp_beta/_utils/_datetime_parse.py +136 -0
- scale_gp_beta/_utils/_transform.py +13 -3
- scale_gp_beta/_utils/_typing.py +6 -1
- scale_gp_beta/_utils/_utils.py +4 -5
- scale_gp_beta/_version.py +1 -1
- scale_gp_beta/resources/__init__.py +6 -6
- scale_gp_beta/resources/chat/completions.py +236 -236
- scale_gp_beta/resources/completions.py +142 -142
- scale_gp_beta/resources/dataset_items.py +27 -27
- scale_gp_beta/resources/datasets.py +38 -38
- scale_gp_beta/resources/evaluation_items.py +19 -19
- scale_gp_beta/resources/evaluations.py +97 -75
- scale_gp_beta/resources/files/content.py +3 -3
- scale_gp_beta/resources/files/files.py +21 -21
- scale_gp_beta/resources/inference.py +7 -7
- scale_gp_beta/resources/models.py +71 -73
- scale_gp_beta/resources/questions.py +43 -43
- scale_gp_beta/resources/responses.py +34 -34
- scale_gp_beta/resources/spans.py +81 -81
- scale_gp_beta/types/__init__.py +4 -4
- scale_gp_beta/types/chat/chat_completion.py +114 -19
- scale_gp_beta/types/chat/chat_completion_chunk.py +84 -14
- scale_gp_beta/types/chat/completion_create_params.py +5 -3
- scale_gp_beta/types/completion.py +36 -6
- scale_gp_beta/types/completion_create_params.py +5 -3
- scale_gp_beta/types/container.py +2 -2
- scale_gp_beta/types/container_param.py +2 -2
- scale_gp_beta/types/dataset_create_params.py +4 -2
- scale_gp_beta/types/dataset_list_params.py +3 -2
- scale_gp_beta/types/dataset_update_params.py +3 -2
- scale_gp_beta/types/evaluation.py +7 -1
- scale_gp_beta/types/evaluation_create_params.py +17 -6
- scale_gp_beta/types/evaluation_list_params.py +3 -1
- scale_gp_beta/types/evaluation_task.py +6 -1
- scale_gp_beta/types/evaluation_task_param.py +4 -3
- scale_gp_beta/types/evaluation_update_params.py +3 -2
- scale_gp_beta/types/inference_model.py +10 -1
- scale_gp_beta/types/model_create_params.py +6 -4
- scale_gp_beta/types/model_update_params.py +6 -4
- scale_gp_beta/types/question_create_params.py +4 -2
- scale_gp_beta/types/response.py +852 -142
- scale_gp_beta/types/response_create_params.py +7 -5
- scale_gp_beta/types/response_create_response.py +6072 -1012
- scale_gp_beta/types/span_search_params.py +8 -7
- {scale_gp_beta-0.1.0a30.dist-info → scale_gp_beta-0.1.0a32.dist-info}/METADATA +1 -1
- {scale_gp_beta-0.1.0a30.dist-info → scale_gp_beta-0.1.0a32.dist-info}/RECORD +57 -55
- {scale_gp_beta-0.1.0a30.dist-info → scale_gp_beta-0.1.0a32.dist-info}/WHEEL +0 -0
- {scale_gp_beta-0.1.0a30.dist-info → scale_gp_beta-0.1.0a32.dist-info}/licenses/LICENSE +0 -0
|
@@ -6,6 +6,7 @@ from typing import Dict, List, Union
|
|
|
6
6
|
from datetime import datetime
|
|
7
7
|
from typing_extensions import Literal, Annotated, TypedDict
|
|
8
8
|
|
|
9
|
+
from .._types import SequenceNotStr
|
|
9
10
|
from .._utils import PropertyInfo
|
|
10
11
|
from .span_type import SpanType
|
|
11
12
|
from .span_status import SpanStatus
|
|
@@ -28,13 +29,13 @@ class SpanSearchParams(TypedDict, total=False):
|
|
|
28
29
|
to_ts: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
29
30
|
"""The ending (most recent) timestamp in ISO format."""
|
|
30
31
|
|
|
31
|
-
application_variant_ids:
|
|
32
|
+
application_variant_ids: SequenceNotStr[str]
|
|
32
33
|
"""Filter by application variant IDs"""
|
|
33
34
|
|
|
34
|
-
excluded_span_ids:
|
|
35
|
+
excluded_span_ids: SequenceNotStr[str]
|
|
35
36
|
"""List of span IDs to exclude from results"""
|
|
36
37
|
|
|
37
|
-
excluded_trace_ids:
|
|
38
|
+
excluded_trace_ids: SequenceNotStr[str]
|
|
38
39
|
"""List of trace IDs to exclude from results"""
|
|
39
40
|
|
|
40
41
|
extra_metadata: Dict[str, object]
|
|
@@ -43,22 +44,22 @@ class SpanSearchParams(TypedDict, total=False):
|
|
|
43
44
|
group_id: str
|
|
44
45
|
"""Filter by group ID"""
|
|
45
46
|
|
|
46
|
-
names:
|
|
47
|
+
names: SequenceNotStr[str]
|
|
47
48
|
"""Filter by trace/span name"""
|
|
48
49
|
|
|
49
50
|
parents_only: bool
|
|
50
51
|
"""Only fetch spans that are the top-level (ie. have no parent_id)"""
|
|
51
52
|
|
|
52
|
-
search_texts:
|
|
53
|
+
search_texts: SequenceNotStr[str]
|
|
53
54
|
"""Free text search across span input and output fields"""
|
|
54
55
|
|
|
55
|
-
span_ids:
|
|
56
|
+
span_ids: SequenceNotStr[str]
|
|
56
57
|
"""Filter by span IDs"""
|
|
57
58
|
|
|
58
59
|
statuses: List[SpanStatus]
|
|
59
60
|
"""Filter on span status"""
|
|
60
61
|
|
|
61
|
-
trace_ids:
|
|
62
|
+
trace_ids: SequenceNotStr[str]
|
|
62
63
|
"""Filter by trace IDs"""
|
|
63
64
|
|
|
64
65
|
types: List[SpanType]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: scale-gp-beta
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a32
|
|
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,29 +1,31 @@
|
|
|
1
|
-
scale_gp_beta/__init__.py,sha256=
|
|
2
|
-
scale_gp_beta/_base_client.py,sha256
|
|
3
|
-
scale_gp_beta/_client.py,sha256=
|
|
4
|
-
scale_gp_beta/_compat.py,sha256=
|
|
1
|
+
scale_gp_beta/__init__.py,sha256=MFsKxnaLkZ-Rqv127bA2T0OpHD3me1OnwIom-0I2gB0,2742
|
|
2
|
+
scale_gp_beta/_base_client.py,sha256=-akZ2LpczGs3fUHVZg3eDppkodX4ithhenKNhNp2nb8,67054
|
|
3
|
+
scale_gp_beta/_client.py,sha256=Gbb0SurEtX0OrJ0NPKoULYSnWt9x0I3R01GobVeSpJg,25703
|
|
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
|
|
7
7
|
scale_gp_beta/_files.py,sha256=HOCL7NYupx5rmxPWzvzifOW_LkRj0zBssmxqLFtYURI,3616
|
|
8
|
-
scale_gp_beta/_models.py,sha256=
|
|
9
|
-
scale_gp_beta/_qs.py,sha256=
|
|
8
|
+
scale_gp_beta/_models.py,sha256=lKnskYPONAWDvWo8tmbbVk7HmG7UOsI0Nve0vSMmkRc,30452
|
|
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
12
|
scale_gp_beta/_streaming.py,sha256=fcCSGXslmi2SmmkM05g2SACXHk2Mj7k1X5uMBu6U5s8,10112
|
|
13
|
-
scale_gp_beta/_types.py,sha256=
|
|
14
|
-
scale_gp_beta/_version.py,sha256=
|
|
13
|
+
scale_gp_beta/_types.py,sha256=3-dTgyCs1Fep_LgdDCs7B_SYv9He9BYHJYJunweFT9U,7243
|
|
14
|
+
scale_gp_beta/_version.py,sha256=G56fUCFVCNhbUk_7rmIery7HLg85RH4glTMMXqUrC6o,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
|
-
scale_gp_beta/_utils/__init__.py,sha256=
|
|
17
|
+
scale_gp_beta/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
18
|
+
scale_gp_beta/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
19
|
+
scale_gp_beta/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
|
|
18
20
|
scale_gp_beta/_utils/_logs.py,sha256=e6Q2f2qmGe638ty50AXbwcPVlwCdTtXDzybw3eSWwGU,792
|
|
19
21
|
scale_gp_beta/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
|
|
20
22
|
scale_gp_beta/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
|
21
23
|
scale_gp_beta/_utils/_resources_proxy.py,sha256=WaUZOpuuisv9lUR-7qJEbeHhftBmlvziX-7iEcrjbmc,624
|
|
22
24
|
scale_gp_beta/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
23
25
|
scale_gp_beta/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
|
24
|
-
scale_gp_beta/_utils/_transform.py,sha256=
|
|
25
|
-
scale_gp_beta/_utils/_typing.py,sha256=
|
|
26
|
-
scale_gp_beta/_utils/_utils.py,sha256=
|
|
26
|
+
scale_gp_beta/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
|
|
27
|
+
scale_gp_beta/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
28
|
+
scale_gp_beta/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
|
|
27
29
|
scale_gp_beta/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
28
30
|
scale_gp_beta/lib/CONTRIBUTING.MD,sha256=Fv8H-hZi86n7Vsi2JyeoHi7JzKZGRiNZKO5EqG63IKM,2495
|
|
29
31
|
scale_gp_beta/lib/tracing/__init__.py,sha256=UgyExbqAA2ljDEF4X4YFhtbBZuoQJ2IF4hkGs_xQEc0,226
|
|
@@ -41,32 +43,32 @@ scale_gp_beta/lib/tracing/integrations/openai/__init__.py,sha256=47DEQpj8HBSa-_T
|
|
|
41
43
|
scale_gp_beta/lib/tracing/integrations/openai/openai_span_type_map.py,sha256=WIPVdOd1aaVmenZuK3PJ7pZMnk_uJRX5vQXj0s6O9ow,792
|
|
42
44
|
scale_gp_beta/lib/tracing/integrations/openai/openai_tracing_sgp_processor.py,sha256=o-Fp_V7U9cC1kKP0_750GQInKGlF7KAdpIbGTmyu2tg,5270
|
|
43
45
|
scale_gp_beta/lib/tracing/integrations/openai/utils.py,sha256=s6tbNFJ3N7GjqXDM9f2f4r9ugz3wjO0OTU6KzlU_tLQ,2113
|
|
44
|
-
scale_gp_beta/resources/__init__.py,sha256=
|
|
45
|
-
scale_gp_beta/resources/completions.py,sha256=
|
|
46
|
-
scale_gp_beta/resources/dataset_items.py,sha256=
|
|
47
|
-
scale_gp_beta/resources/datasets.py,sha256=
|
|
48
|
-
scale_gp_beta/resources/evaluation_items.py,sha256=
|
|
49
|
-
scale_gp_beta/resources/evaluations.py,sha256=
|
|
50
|
-
scale_gp_beta/resources/inference.py,sha256=
|
|
51
|
-
scale_gp_beta/resources/models.py,sha256=
|
|
52
|
-
scale_gp_beta/resources/questions.py,sha256=
|
|
53
|
-
scale_gp_beta/resources/responses.py,sha256=
|
|
54
|
-
scale_gp_beta/resources/spans.py,sha256=
|
|
46
|
+
scale_gp_beta/resources/__init__.py,sha256=JaGVUb2Ufumn2qeKZWN8z6Ec9wm4Rct6KnNef2DSPPE,5920
|
|
47
|
+
scale_gp_beta/resources/completions.py,sha256=wtVhUh5LMwXolICQhpeCZUlzRM-ChLSvLiQm92sO-EQ,30934
|
|
48
|
+
scale_gp_beta/resources/dataset_items.py,sha256=DGKu3067yVBuUkkR3xRnl0OLqPWY7TyWQd5hviYq5vk,22378
|
|
49
|
+
scale_gp_beta/resources/datasets.py,sha256=6AN7ZETWP42xcVf-uWErzcOuPlKnkAQ1jrtIxzMDd3o,21631
|
|
50
|
+
scale_gp_beta/resources/evaluation_items.py,sha256=tR8FtxCnxVdQzpAnPg9dYQkDZKXyCFe9zEXgk3cbrgw,11517
|
|
51
|
+
scale_gp_beta/resources/evaluations.py,sha256=_UsuhxmJjPanfhXp7-JH5yo-PGYIgrAzL93jITQ5_tw,32004
|
|
52
|
+
scale_gp_beta/resources/inference.py,sha256=Gwi7yt8BK47LFRbx9X4Ei4HLh3keZ5a37dHd2eONf4g,7539
|
|
53
|
+
scale_gp_beta/resources/models.py,sha256=obGc4jz3k8Cxl7t218GPmq8HvODX911vc6-wGJ-cXSA,32247
|
|
54
|
+
scale_gp_beta/resources/questions.py,sha256=ylrn_3waLErYzTZHiUkHVLynvKYwIBSRHxgJd0717yk,25828
|
|
55
|
+
scale_gp_beta/resources/responses.py,sha256=ha6JeU1vCoxC4Z00jsbS1D7jEpxy-xlCiEkx5-RqrX0,11755
|
|
56
|
+
scale_gp_beta/resources/spans.py,sha256=HaM6C-4dLF_aicNVDFCgPM4m2kEdWkf_OTLtDvxSSBE,30952
|
|
55
57
|
scale_gp_beta/resources/chat/__init__.py,sha256=BVAfz9TM3DT5W9f_mt0P9YRxL_MsUxKCWAH6u1iogmA,1041
|
|
56
58
|
scale_gp_beta/resources/chat/chat.py,sha256=4OG_TrwVqYvV-7Ha8Nbc6iuXQuys9wKXgkxYmE6p6jk,3672
|
|
57
|
-
scale_gp_beta/resources/chat/completions.py,sha256=
|
|
59
|
+
scale_gp_beta/resources/chat/completions.py,sha256=NiseRADexm4sZrWBR1CnJZjY46M9qiOMHNECxLIRKu0,50112
|
|
58
60
|
scale_gp_beta/resources/files/__init__.py,sha256=VgAtqUimN5Kf_-lmEaNBnu_ApGegKsJQ1zNf-42MXFA,1002
|
|
59
|
-
scale_gp_beta/resources/files/content.py,sha256=
|
|
60
|
-
scale_gp_beta/resources/files/files.py,sha256=
|
|
61
|
-
scale_gp_beta/types/__init__.py,sha256=
|
|
62
|
-
scale_gp_beta/types/completion.py,sha256=
|
|
63
|
-
scale_gp_beta/types/completion_create_params.py,sha256=
|
|
61
|
+
scale_gp_beta/resources/files/content.py,sha256=QDtcnsK2my4-ndmwyaR6zyQnV1fEjIJ7CSDoyXUcYxg,5762
|
|
62
|
+
scale_gp_beta/resources/files/files.py,sha256=vN1SNr5DouIX9SFKz7TchbPNTKT9aDCe_t9QQE28A4Y,20653
|
|
63
|
+
scale_gp_beta/types/__init__.py,sha256=WQG22_vA7Z18G_UWKYAXiudJC_YpxGEV6evTj_gGWJc,5464
|
|
64
|
+
scale_gp_beta/types/completion.py,sha256=1UOFGSkAmTCfhKGSQQLEU-PHGdnWLV1y0usa1UizBBQ,5406
|
|
65
|
+
scale_gp_beta/types/completion_create_params.py,sha256=XWyto29VVJQ5nJTykSXPwlW5b4CZxGU7GSlk1hMwDxo,3114
|
|
64
66
|
scale_gp_beta/types/component.py,sha256=0dLrvTEHpF628wZ-CIniOpsOzKfnLlaZy4OPIFDzoF0,403
|
|
65
67
|
scale_gp_beta/types/component_param.py,sha256=6y4XFmRxDSoFo82Df9ej6rY1pQiq0lIByQXBjXK8kVA,445
|
|
66
|
-
scale_gp_beta/types/container.py,sha256=
|
|
67
|
-
scale_gp_beta/types/container_param.py,sha256=
|
|
68
|
+
scale_gp_beta/types/container.py,sha256=LoH-zq7JI7dE_BGxUiqBgaS8XbUk2zzkC7ByUF9TzUw,891
|
|
69
|
+
scale_gp_beta/types/container_param.py,sha256=fwIeOygG1QTG9queCSSJwXqx1F4xLtx7hKwH3wf3oMI,925
|
|
68
70
|
scale_gp_beta/types/dataset.py,sha256=wts1ygPfzuh5pyYZ12YxuJMxVd-yM5hF_ZNUYxpfbho,667
|
|
69
|
-
scale_gp_beta/types/dataset_create_params.py,sha256=
|
|
71
|
+
scale_gp_beta/types/dataset_create_params.py,sha256=D754CiYUWu-yCGr0S1PxIGSIXolOYbpEME8OxIKJ8_I,550
|
|
70
72
|
scale_gp_beta/types/dataset_delete_response.py,sha256=Lc4K761LM__hosWI3gYjYnEl5JXL-cg4DU3lXKhtQoo,345
|
|
71
73
|
scale_gp_beta/types/dataset_item.py,sha256=ObH7-q9frNAAQ5odjVajozZ53wGTbqZRqNd19dW1iqM,628
|
|
72
74
|
scale_gp_beta/types/dataset_item_batch_create_params.py,sha256=ORwWuIFKilxhuVhzcF32HD68E0-n5dnRlbyxUk4H3Ko,478
|
|
@@ -75,20 +77,20 @@ scale_gp_beta/types/dataset_item_delete_response.py,sha256=EffQRHJgGvew_n6XYVdoj
|
|
|
75
77
|
scale_gp_beta/types/dataset_item_list_params.py,sha256=CEB161IozqL-n7YC54g76nFqK0sp7l-A0QB9ET0L86M,661
|
|
76
78
|
scale_gp_beta/types/dataset_item_retrieve_params.py,sha256=f0kJg0btCGITamo949F7trvR0no7lOuVfoKTpFLJ5Gw,356
|
|
77
79
|
scale_gp_beta/types/dataset_item_update_params.py,sha256=4voEG9nKbxREiFRLzWqXZAWsw3wIm4EU1cnvOmsvGRA,367
|
|
78
|
-
scale_gp_beta/types/dataset_list_params.py,sha256=
|
|
80
|
+
scale_gp_beta/types/dataset_list_params.py,sha256=C-NCvkrOv5n43NSe2AiR225zDT0MOEjtEW6qQJSm9zk,471
|
|
79
81
|
scale_gp_beta/types/dataset_retrieve_params.py,sha256=5tpzuzX6y1WKKxP2AbjYwwcATpB1eZCv4wZABG3baIQ,282
|
|
80
|
-
scale_gp_beta/types/dataset_update_params.py,sha256=
|
|
81
|
-
scale_gp_beta/types/evaluation.py,sha256=
|
|
82
|
-
scale_gp_beta/types/evaluation_create_params.py,sha256=
|
|
82
|
+
scale_gp_beta/types/dataset_update_params.py,sha256=fCci9UEzKEiXCoeH_QxmLRShmqn-EIbz-OkjicHgcfs,401
|
|
83
|
+
scale_gp_beta/types/evaluation.py,sha256=M1cq-FW51SjvWCkNvX0YxmG7LF8A0bSbeWZGGCkM_2Q,1164
|
|
84
|
+
scale_gp_beta/types/evaluation_create_params.py,sha256=7KKu2aVo9T9BvIg9mn59Osk9fBQCqcZHF1tks3G1l5M,3074
|
|
83
85
|
scale_gp_beta/types/evaluation_delete_response.py,sha256=UnzxLUOxwpF2PVybC28R_XYLSEfah8r4JbQGwYpZk34,354
|
|
84
86
|
scale_gp_beta/types/evaluation_item.py,sha256=a1bkOepT748Zs5VCF6FbsOOmX6vJHG-oUmLdxW3-UCE,686
|
|
85
87
|
scale_gp_beta/types/evaluation_item_list_params.py,sha256=7sQVVKB87uO45lYuMUhGR6125a6rG19gYx6gckR7sxU,426
|
|
86
88
|
scale_gp_beta/types/evaluation_item_retrieve_params.py,sha256=UYEKIAQ4dy92ZOSV1tWDZcvXG7_0BSpOND5Ehzs7QM4,296
|
|
87
|
-
scale_gp_beta/types/evaluation_list_params.py,sha256=
|
|
89
|
+
scale_gp_beta/types/evaluation_list_params.py,sha256=Xe88rpcm2w-ufTR8bnJYJfk09FiESKddWMzwZCjP_LU,536
|
|
88
90
|
scale_gp_beta/types/evaluation_retrieve_params.py,sha256=_YuT-E2VO-f_SvHaIe24KBbhTNoK8T-3tVB6Ov6cqfg,356
|
|
89
|
-
scale_gp_beta/types/evaluation_task.py,sha256=
|
|
90
|
-
scale_gp_beta/types/evaluation_task_param.py,sha256
|
|
91
|
-
scale_gp_beta/types/evaluation_update_params.py,sha256=
|
|
91
|
+
scale_gp_beta/types/evaluation_task.py,sha256=Dt39pNlChl_T-0O3uxpsLmW30fF16rybErVfCXAcUj8,13369
|
|
92
|
+
scale_gp_beta/types/evaluation_task_param.py,sha256=-gM2-YyE9IYsRWKwTM3_jvM-hxnvJx5kRZ2hvimp64U,12680
|
|
93
|
+
scale_gp_beta/types/evaluation_update_params.py,sha256=P3HAAR2-Eb6lfxAcCbMezNKIdHr46CxFXmtSXvKCRQM,407
|
|
92
94
|
scale_gp_beta/types/file.py,sha256=vgbFpARZs5_UYOQZkWLur8rFvGM8EROUO_8Ig0uu2B0,611
|
|
93
95
|
scale_gp_beta/types/file_create_params.py,sha256=KpXv6JCbd8BlgceTmBTewxOky2JTJaTW3mcGiVVU7wE,317
|
|
94
96
|
scale_gp_beta/types/file_delete_response.py,sha256=lOsiaw8qrUOnH7smxb27-n7M4D1chfXlAUaMTRmdldY,336
|
|
@@ -97,37 +99,37 @@ scale_gp_beta/types/file_list_params.py,sha256=rFIimu3tLcEWfJItI4a6FDb8LJFX38JSz
|
|
|
97
99
|
scale_gp_beta/types/file_update_params.py,sha256=cZAz43aIXmc0jOz-uKWDsZIJx24NN4t9kQ2XDORvQ-Q,297
|
|
98
100
|
scale_gp_beta/types/inference_create_params.py,sha256=lpdMjG-ufUDpH8bGPbt2klG0I9Q3o374WrqHBjEpPwE,665
|
|
99
101
|
scale_gp_beta/types/inference_create_response.py,sha256=JgoDjN5B8zRUpOXXasD97vFKVN7A6QHKz_PN64pKB6s,390
|
|
100
|
-
scale_gp_beta/types/inference_model.py,sha256=
|
|
102
|
+
scale_gp_beta/types/inference_model.py,sha256=a1lGEIV8UQ7IHqZpWljAtHpce8skN0rd3jD1LCX1on8,4933
|
|
101
103
|
scale_gp_beta/types/inference_model_list.py,sha256=I5qlOvpe-kX2HUp-C0h47Na0w6tRfZiC5wGCJ_KMxUk,688
|
|
102
104
|
scale_gp_beta/types/inference_response.py,sha256=PIX9ihGJ6IP6D6i8gk3o_mbSLy9fvRwZdGyICQKh-q8,337
|
|
103
105
|
scale_gp_beta/types/inference_response_chunk.py,sha256=UIw0gVwnqtQKPTH3QAW9UYVlD0lBz7av-EzcMqF7xgg,353
|
|
104
106
|
scale_gp_beta/types/item_locator.py,sha256=2DgC4WO_8eqnGFUZppHqqhLFhbRQQVph83glxrm4WQQ,184
|
|
105
107
|
scale_gp_beta/types/item_locator_template.py,sha256=eEwfJCLdYr0OZ5-Pk5iGtHSa93h0zGZ015C7RtN1XYY,200
|
|
106
|
-
scale_gp_beta/types/model_create_params.py,sha256=
|
|
108
|
+
scale_gp_beta/types/model_create_params.py,sha256=kdmA0Hp7if0Y4niLCxfxJF8R7l2YTEGJztAQht0F4ic,3545
|
|
107
109
|
scale_gp_beta/types/model_delete_response.py,sha256=fSpTChRLHPOoc9SJbkS4wcLxVOc3kKBOya8wkGow5pY,339
|
|
108
110
|
scale_gp_beta/types/model_list_params.py,sha256=UJkBX6LCoK4mVUe6LJx_qD1dZLFypPeXof1YBTXURS8,636
|
|
109
|
-
scale_gp_beta/types/model_update_params.py,sha256=
|
|
111
|
+
scale_gp_beta/types/model_update_params.py,sha256=HwanIDr9Gwp-c9zdJWJx-JQPFP3MhdBX7mEQL-mlayA,3762
|
|
110
112
|
scale_gp_beta/types/question.py,sha256=0Qgidm-6kQ9-oD-dJtOzWkA3tHBFrcy76e31W30zczg,4149
|
|
111
|
-
scale_gp_beta/types/question_create_params.py,sha256=
|
|
113
|
+
scale_gp_beta/types/question_create_params.py,sha256=nYWUMBD0cpmQTGVohR73CqIc4BV54i8b28C6m4CU-Is,3119
|
|
112
114
|
scale_gp_beta/types/question_list.py,sha256=lk4GWhnnThcqnwmbxUNq07vqyXS8ToUYRp4nf7YctGs,657
|
|
113
115
|
scale_gp_beta/types/question_list_params.py,sha256=2x9Ww7wPAhc0hr6WpcqydLuB-mECpMK-MG7jbmtfKJM,362
|
|
114
|
-
scale_gp_beta/types/response.py,sha256=
|
|
115
|
-
scale_gp_beta/types/response_create_params.py,sha256=
|
|
116
|
-
scale_gp_beta/types/response_create_response.py,sha256=
|
|
116
|
+
scale_gp_beta/types/response.py,sha256=urf4oYc5fUDQkiY6Xqrn9yInsdsBe_8UTRQhzEtGLkI,143236
|
|
117
|
+
scale_gp_beta/types/response_create_params.py,sha256=J1NmJi9BwkHAV2Ui1z5_YzrC54fZI8kShT5mWmOmcF0,28272
|
|
118
|
+
scale_gp_beta/types/response_create_response.py,sha256=_S32F3x6GBEf_ICVD2bE1fsfZitb2nOYiDls5cFe7MA,1106716
|
|
117
119
|
scale_gp_beta/types/span.py,sha256=ygHgE2DcK1Iqpg4oMa-Mx1XmZa7UBtDlfBPcPbq67Cg,1331
|
|
118
120
|
scale_gp_beta/types/span_batch_params.py,sha256=TsV1LnFXDXLhZdggn1BmIjQtAc8DwD6i57cBLCnStK8,1317
|
|
119
121
|
scale_gp_beta/types/span_batch_response.py,sha256=gNRJL9XVm5ELuIOWTCUbwwetxeD0s-M6JZi11USvBpU,354
|
|
120
122
|
scale_gp_beta/types/span_create_params.py,sha256=z9hRw6kb5xZUJkR6q_JcdHX0i0BSnLAgn9IITxJojDY,1227
|
|
121
|
-
scale_gp_beta/types/span_search_params.py,sha256
|
|
123
|
+
scale_gp_beta/types/span_search_params.py,sha256=clSskG9Ok4kYMhdPcr53wuzDlGhFhJh5-DhPEmP1GbA,1760
|
|
122
124
|
scale_gp_beta/types/span_status.py,sha256=CFCRCm2AeoQhAe0Eg3m9VRYGbi6r9ZaBOZ0QQd2wKRQ,227
|
|
123
125
|
scale_gp_beta/types/span_type.py,sha256=Y4cFVO66V_KJQ2stokdspyBunh4kxgSDt2EZg960DYI,696
|
|
124
126
|
scale_gp_beta/types/span_update_params.py,sha256=xpk0NKNsw_RAXIZN1U1ddqUHpPE--W9_Y3i1tTZKLZg,574
|
|
125
127
|
scale_gp_beta/types/span_upsert_batch_params.py,sha256=JdXDZapv7kRYYgU5Stltyagtw4PPuCZLUy7Qo8019bQ,1329
|
|
126
128
|
scale_gp_beta/types/span_upsert_batch_response.py,sha256=Gkndmd_cyfodeGaCJu4sF4TsgB22hgHVlmoek3e_Kkc,366
|
|
127
129
|
scale_gp_beta/types/chat/__init__.py,sha256=YmEJo3C_C7aRkImUaKB5BG97oOGkV0q3sHimL8cMa4g,688
|
|
128
|
-
scale_gp_beta/types/chat/chat_completion.py,sha256=
|
|
129
|
-
scale_gp_beta/types/chat/chat_completion_chunk.py,sha256=
|
|
130
|
-
scale_gp_beta/types/chat/completion_create_params.py,sha256=
|
|
130
|
+
scale_gp_beta/types/chat/chat_completion.py,sha256=JM1meIbWU2ImWkSO2m78666ltpUgDzgj1RpN5y3EaZM,16335
|
|
131
|
+
scale_gp_beta/types/chat/chat_completion_chunk.py,sha256=w7kGJcwoGuj_wl9kEACNspEvy8RV-h1wlwMW3dhC-xY,12025
|
|
132
|
+
scale_gp_beta/types/chat/completion_create_params.py,sha256=B6BQB5m1vImbbkUg953bmp7lMj3UUL7Ow6dA-OlEENw,4557
|
|
131
133
|
scale_gp_beta/types/chat/completion_create_response.py,sha256=0OhfoJW8azVRrZdXRRMuiJ7kEEeMDnKScxrr3sayzDo,374
|
|
132
134
|
scale_gp_beta/types/chat/completion_models_params.py,sha256=1uh-rVdoqUvDFYuicHdxEWwX3CjLOJOIfmUql8-47Ic,665
|
|
133
135
|
scale_gp_beta/types/chat/completion_models_response.py,sha256=Ctgj6o-QWPSdjBKzG9J4Id0-DjXu4UGGw1NR6-840Ec,403
|
|
@@ -135,7 +137,7 @@ scale_gp_beta/types/chat/model_definition.py,sha256=OWcZ4StZ4K2wfL7FqHNK-HqxLjy9
|
|
|
135
137
|
scale_gp_beta/types/files/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
136
138
|
scale_gp_beta/types/shared/__init__.py,sha256=6-walu4YgOTaOj7wsidywTj67PyBJaNYFqasfiTP9-4,130
|
|
137
139
|
scale_gp_beta/types/shared/identity.py,sha256=4XDoJjsPI4lkwyaYyNstw7OunIzJjVWujPoZPrNdoQA,348
|
|
138
|
-
scale_gp_beta-0.1.
|
|
139
|
-
scale_gp_beta-0.1.
|
|
140
|
-
scale_gp_beta-0.1.
|
|
141
|
-
scale_gp_beta-0.1.
|
|
140
|
+
scale_gp_beta-0.1.0a32.dist-info/METADATA,sha256=CxqBf4q0GTZz6lGD_bRZNdSeS2259-K9qmsO-_1jgVY,28623
|
|
141
|
+
scale_gp_beta-0.1.0a32.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
142
|
+
scale_gp_beta-0.1.0a32.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
|
|
143
|
+
scale_gp_beta-0.1.0a32.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|