scale-gp-beta 0.1.0a30__py3-none-any.whl → 0.1.0a31__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 +3 -3
- scale_gp_beta/_client.py +8 -8
- scale_gp_beta/_compat.py +48 -48
- scale_gp_beta/_models.py +41 -41
- scale_gp_beta/_types.py +35 -1
- 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 +11 -1
- scale_gp_beta/_utils/_typing.py +6 -1
- scale_gp_beta/_utils/_utils.py +0 -1
- scale_gp_beta/_version.py +1 -1
- scale_gp_beta/resources/__init__.py +6 -6
- scale_gp_beta/resources/chat/completions.py +18 -18
- scale_gp_beta/resources/completions.py +18 -18
- scale_gp_beta/resources/datasets.py +8 -8
- scale_gp_beta/resources/evaluations.py +35 -13
- scale_gp_beta/resources/responses.py +4 -4
- scale_gp_beta/resources/spans.py +15 -15
- scale_gp_beta/types/__init__.py +4 -4
- scale_gp_beta/types/chat/completion_create_params.py +5 -3
- 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 +4 -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_param.py +4 -3
- scale_gp_beta/types/evaluation_update_params.py +3 -2
- scale_gp_beta/types/inference_model.py +4 -0
- 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_create_params.py +7 -5
- scale_gp_beta/types/span_search_params.py +8 -7
- {scale_gp_beta-0.1.0a30.dist-info → scale_gp_beta-0.1.0a31.dist-info}/METADATA +1 -1
- {scale_gp_beta-0.1.0a30.dist-info → scale_gp_beta-0.1.0a31.dist-info}/RECORD +42 -40
- {scale_gp_beta-0.1.0a30.dist-info → scale_gp_beta-0.1.0a31.dist-info}/WHEEL +0 -0
- {scale_gp_beta-0.1.0a30.dist-info → scale_gp_beta-0.1.0a31.dist-info}/licenses/LICENSE +0 -0
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Dict,
|
|
5
|
+
from typing import Dict, Union
|
|
6
6
|
from typing_extensions import Literal, Required, TypeAlias, TypedDict
|
|
7
7
|
|
|
8
|
+
from .._types import SequenceNotStr
|
|
9
|
+
|
|
8
10
|
__all__ = [
|
|
9
11
|
"ModelUpdateParams",
|
|
10
12
|
"DefaultModelPatchRequest",
|
|
@@ -31,7 +33,7 @@ class ModelConfigurationPatchRequest(TypedDict, total=False):
|
|
|
31
33
|
class ModelConfigurationPatchRequestVendorConfigurationPartialLaunchVendorConfigurationModelImage(
|
|
32
34
|
TypedDict, total=False
|
|
33
35
|
):
|
|
34
|
-
command:
|
|
36
|
+
command: SequenceNotStr[str]
|
|
35
37
|
|
|
36
38
|
env_vars: Dict[str, object]
|
|
37
39
|
|
|
@@ -49,7 +51,7 @@ class ModelConfigurationPatchRequestVendorConfigurationPartialLaunchVendorConfig
|
|
|
49
51
|
|
|
50
52
|
response_schema: Dict[str, object]
|
|
51
53
|
|
|
52
|
-
streaming_command:
|
|
54
|
+
streaming_command: SequenceNotStr[str]
|
|
53
55
|
|
|
54
56
|
streaming_predict_route: str
|
|
55
57
|
|
|
@@ -133,7 +135,7 @@ class ModelConfigurationPatchRequestVendorConfigurationPartialLlmEngineVendorCon
|
|
|
133
135
|
|
|
134
136
|
per_worker: int
|
|
135
137
|
|
|
136
|
-
post_inference_hooks:
|
|
138
|
+
post_inference_hooks: SequenceNotStr[str]
|
|
137
139
|
|
|
138
140
|
public_inference: bool
|
|
139
141
|
|
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Dict,
|
|
5
|
+
from typing import Dict, Union
|
|
6
6
|
from typing_extensions import Literal, Required, TypeAlias, TypedDict
|
|
7
7
|
|
|
8
|
+
from .._types import SequenceNotStr
|
|
9
|
+
|
|
8
10
|
__all__ = [
|
|
9
11
|
"QuestionCreateParams",
|
|
10
12
|
"CategoricalQuestionRequest",
|
|
@@ -32,7 +34,7 @@ class CategoricalQuestionRequest(TypedDict, total=False):
|
|
|
32
34
|
|
|
33
35
|
|
|
34
36
|
class CategoricalQuestionRequestConfiguration(TypedDict, total=False):
|
|
35
|
-
choices: Required[
|
|
37
|
+
choices: Required[SequenceNotStr[str]]
|
|
36
38
|
"""Categorical answer choices (must contain at least one entry)"""
|
|
37
39
|
|
|
38
40
|
|
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Dict,
|
|
5
|
+
from typing import Dict, Union, Iterable
|
|
6
6
|
from typing_extensions import Literal, Required, TypeAlias, TypedDict
|
|
7
7
|
|
|
8
|
+
from .._types import SequenceNotStr
|
|
9
|
+
|
|
8
10
|
__all__ = [
|
|
9
11
|
"ResponseCreateParams",
|
|
10
12
|
"InputUnionMember1",
|
|
@@ -82,7 +84,7 @@ class ResponseCreateParams(TypedDict, total=False):
|
|
|
82
84
|
model: Required[str]
|
|
83
85
|
"""model specified as `model_vendor/model`, for example `openai/gpt-4o`"""
|
|
84
86
|
|
|
85
|
-
include:
|
|
87
|
+
include: SequenceNotStr[str]
|
|
86
88
|
"""Which fields to include in the response"""
|
|
87
89
|
|
|
88
90
|
instructions: str
|
|
@@ -353,7 +355,7 @@ class InputUnionMember1ResponseFileSearchToolCallParamResult(TypedDict, total=Fa
|
|
|
353
355
|
class InputUnionMember1ResponseFileSearchToolCallParam(TypedDict, total=False):
|
|
354
356
|
id: Required[str]
|
|
355
357
|
|
|
356
|
-
queries: Required[
|
|
358
|
+
queries: Required[SequenceNotStr[str]]
|
|
357
359
|
|
|
358
360
|
status: Required[Literal["in_progress", "searching", "completed", "incomplete", "failed"]]
|
|
359
361
|
|
|
@@ -407,7 +409,7 @@ class InputUnionMember1ResponseComputerToolCallParamActionOpenAITypesResponsesRe
|
|
|
407
409
|
class InputUnionMember1ResponseComputerToolCallParamActionOpenAITypesResponsesResponseComputerToolCallParamActionKeypress(
|
|
408
410
|
TypedDict, total=False
|
|
409
411
|
):
|
|
410
|
-
keys: Required[
|
|
412
|
+
keys: Required[SequenceNotStr[str]]
|
|
411
413
|
|
|
412
414
|
type: Required[Literal["keypress"]]
|
|
413
415
|
|
|
@@ -667,7 +669,7 @@ class InputUnionMember1ResponseCodeInterpreterToolCallParam(TypedDict, total=Fal
|
|
|
667
669
|
|
|
668
670
|
|
|
669
671
|
class InputUnionMember1OpenAITypesResponsesResponseInputParamLocalShellCallAction(TypedDict, total=False):
|
|
670
|
-
command: Required[
|
|
672
|
+
command: Required[SequenceNotStr[str]]
|
|
671
673
|
|
|
672
674
|
env: Required[Dict[str, str]]
|
|
673
675
|
|
|
@@ -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.0a31
|
|
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
1
|
scale_gp_beta/__init__.py,sha256=1-OM7-VWB-h9n8WOf7lPVuG6JUHDYRc0v1w-G8tU6gU,2696
|
|
2
|
-
scale_gp_beta/_base_client.py,sha256=
|
|
3
|
-
scale_gp_beta/_client.py,sha256=
|
|
4
|
-
scale_gp_beta/_compat.py,sha256=
|
|
2
|
+
scale_gp_beta/_base_client.py,sha256=qg4NqKOMXw6m1ZnA1qzD2Lh2L-f7pKF8-nPfTk7Buyk,67054
|
|
3
|
+
scale_gp_beta/_client.py,sha256=beCeGutaHScQV5qB_xHtu-OfNcHkex10KOc2cyKIbTE,25718
|
|
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=
|
|
8
|
+
scale_gp_beta/_models.py,sha256=c29x_mRccdxlGwdUPfSR5eJxGXe74Ea5Dje5igZTrKQ,30024
|
|
9
9
|
scale_gp_beta/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
|
|
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=KQoUjyZyy5FXXJHCZpCVbxnYpqAXR3LSxUK9eWTxyZ8,7303
|
|
14
|
+
scale_gp_beta/_version.py,sha256=24QZWPhwrMXtDog6bZ26qeD8MwEpjZuU4aBPOAevIiY,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=i_U4R82RtQJtKKCriwFqmfcWjtwmmsiiF1AEXKQ_OPo,15957
|
|
27
|
+
scale_gp_beta/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
28
|
+
scale_gp_beta/_utils/_utils.py,sha256=D2QE7mVPNEJzaB50u8rvDQAUDS5jx7JoeFD7zdj-TeI,12231
|
|
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/__init__.py,sha256=JaGVUb2Ufumn2qeKZWN8z6Ec9wm4Rct6KnNef2DSPPE,5920
|
|
47
|
+
scale_gp_beta/resources/completions.py,sha256=IZUfKNJumvgY8xIIhClgygFfHpVwTnExpEfBkjVC-3Q,32038
|
|
46
48
|
scale_gp_beta/resources/dataset_items.py,sha256=2d7O5zmqVEafJTxVwgbRz9yq-4T81dPPfFuPDRAaWqU,22510
|
|
47
|
-
scale_gp_beta/resources/datasets.py,sha256=
|
|
49
|
+
scale_gp_beta/resources/datasets.py,sha256=FEw0QQF25qTNcouiQ8V493YrJl0QJ__G67M-LDQ9o1I,21853
|
|
48
50
|
scale_gp_beta/resources/evaluation_items.py,sha256=Nvz3zKypvYUJWDDDvraaEwzr--Vbj27GAN670Ro5Mqo,11631
|
|
49
|
-
scale_gp_beta/resources/evaluations.py,sha256=
|
|
51
|
+
scale_gp_beta/resources/evaluations.py,sha256=n7pjlNtLx5ZAzY202TL8lnkcgrON2CdBXg8EXL_Me3E,32586
|
|
50
52
|
scale_gp_beta/resources/inference.py,sha256=w1JD8S5P_SxhOtj1vDyg-23uP72zVVVU6lKU_YbqX4U,7563
|
|
51
53
|
scale_gp_beta/resources/models.py,sha256=z-P2nzIFLublMJgvaKyDHxdH-QnN629oNxIN8-CAlJc,32701
|
|
52
54
|
scale_gp_beta/resources/questions.py,sha256=0kNyVJwKvDconhlfhxY7aDYHNSB_I9QqtVpOst9GdL0,26050
|
|
53
|
-
scale_gp_beta/resources/responses.py,sha256=
|
|
54
|
-
scale_gp_beta/resources/spans.py,sha256=
|
|
55
|
+
scale_gp_beta/resources/responses.py,sha256=hiBz5-IaC4xi7xTezMICMi_hRGANjCj35hkRFi34TOk,12013
|
|
56
|
+
scale_gp_beta/resources/spans.py,sha256=mCAywJg41fqkiHa87b8HoiP6w6Eec9v8voKYUbuk2kE,31552
|
|
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=vJ8XnIbaqr1XvLeBsT1_zznJmx62PF9n8DcupMcSCoI,52116
|
|
58
60
|
scale_gp_beta/resources/files/__init__.py,sha256=VgAtqUimN5Kf_-lmEaNBnu_ApGegKsJQ1zNf-42MXFA,1002
|
|
59
61
|
scale_gp_beta/resources/files/content.py,sha256=oJxb-28ZOUBgzE_MiAaJOcKFmtlB-N5APdhfZBNJna8,5762
|
|
60
62
|
scale_gp_beta/resources/files/files.py,sha256=yGmHAI8mtO_NjqC5XVk3n2y2ZklzL_qGtnD8OuhDkcQ,20731
|
|
61
|
-
scale_gp_beta/types/__init__.py,sha256=
|
|
63
|
+
scale_gp_beta/types/__init__.py,sha256=WQG22_vA7Z18G_UWKYAXiudJC_YpxGEV6evTj_gGWJc,5464
|
|
62
64
|
scale_gp_beta/types/completion.py,sha256=QbPAietxmff0uRyM_Jga2Dx92GzqkGg7GFAmSC31TVE,4035
|
|
63
|
-
scale_gp_beta/types/completion_create_params.py,sha256=
|
|
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=Bt0yAkQqOaZddvRSrrzijWvGC7g540dEKygkJNJKEHg,1084
|
|
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
91
|
scale_gp_beta/types/evaluation_task.py,sha256=erP_A4nXcnjoyZEllNtTiHX1NUOZFheukcatGC_XMTw,13142
|
|
90
|
-
scale_gp_beta/types/evaluation_task_param.py,sha256
|
|
91
|
-
scale_gp_beta/types/evaluation_update_params.py,sha256=
|
|
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,28 +99,28 @@ 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=nAan1OIHwMJFH4BwvNGMgQ-VRSEb5VLnop92ChiN9A0,4706
|
|
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
116
|
scale_gp_beta/types/response.py,sha256=VOPeYfxf3gYe4N9JlcA9EYG8iL_UMQDXi0yfk6K_u3U,110993
|
|
115
|
-
scale_gp_beta/types/response_create_params.py,sha256=
|
|
117
|
+
scale_gp_beta/types/response_create_params.py,sha256=J1NmJi9BwkHAV2Ui1z5_YzrC54fZI8kShT5mWmOmcF0,28272
|
|
116
118
|
scale_gp_beta/types/response_create_response.py,sha256=7h8kjOmHcXQQ4-bFbmqxrzxptx1xb2jBz937Yr1aSuk,876938
|
|
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
|
|
@@ -127,7 +129,7 @@ scale_gp_beta/types/span_upsert_batch_response.py,sha256=Gkndmd_cyfodeGaCJu4sF4T
|
|
|
127
129
|
scale_gp_beta/types/chat/__init__.py,sha256=YmEJo3C_C7aRkImUaKB5BG97oOGkV0q3sHimL8cMa4g,688
|
|
128
130
|
scale_gp_beta/types/chat/chat_completion.py,sha256=ieyxy0MTCYr-lnsJzdhu_9p24wZDY_rRzw4N6hM2MWU,12013
|
|
129
131
|
scale_gp_beta/types/chat/chat_completion_chunk.py,sha256=oyrDYMVN_wX6WzH352dFxrvgZjd3mpxnW2mbFflyU50,8838
|
|
130
|
-
scale_gp_beta/types/chat/completion_create_params.py,sha256=
|
|
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.0a31.dist-info/METADATA,sha256=beN3Y8O2kPae_xqYZhOkbVzbnwF1IRIFWpedmasnuPw,28623
|
|
141
|
+
scale_gp_beta-0.1.0a31.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
142
|
+
scale_gp_beta-0.1.0a31.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
|
|
143
|
+
scale_gp_beta-0.1.0a31.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|