scale-gp-beta 0.1.0a11__py3-none-any.whl → 0.1.0a13__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/resources/chat/completions.py +136 -2
- scale_gp_beta/resources/dataset_items.py +11 -11
- scale_gp_beta/resources/datasets.py +13 -5
- scale_gp_beta/resources/evaluation_items.py +6 -8
- scale_gp_beta/resources/evaluations.py +138 -21
- scale_gp_beta/resources/files/files.py +5 -5
- scale_gp_beta/resources/models.py +31 -35
- scale_gp_beta/resources/spans.py +42 -22
- scale_gp_beta/types/__init__.py +8 -1
- scale_gp_beta/types/chat/__init__.py +2 -0
- scale_gp_beta/types/chat/completion_models_params.py +29 -0
- 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_list_params.py +4 -5
- scale_gp_beta/types/dataset_item_retrieve_params.py +1 -2
- scale_gp_beta/types/dataset_list_params.py +7 -3
- 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 +3 -4
- scale_gp_beta/types/evaluation_list_params.py +7 -3
- scale_gp_beta/types/evaluation_task.py +232 -33
- scale_gp_beta/types/evaluation_task_param.py +176 -33
- scale_gp_beta/types/evaluation_update_params.py +17 -0
- scale_gp_beta/types/file_list_params.py +2 -3
- 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 +15 -18
- scale_gp_beta/types/span.py +40 -1
- scale_gp_beta/types/span_create_params.py +13 -5
- scale_gp_beta/types/span_list_params.py +4 -5
- scale_gp_beta/types/span_update_params.py +5 -3
- {scale_gp_beta-0.1.0a11.dist-info → scale_gp_beta-0.1.0a13.dist-info}/METADATA +1 -1
- {scale_gp_beta-0.1.0a11.dist-info → scale_gp_beta-0.1.0a13.dist-info}/RECORD +44 -34
- {scale_gp_beta-0.1.0a11.dist-info → scale_gp_beta-0.1.0a13.dist-info}/WHEEL +0 -0
- {scale_gp_beta-0.1.0a11.dist-info → scale_gp_beta-0.1.0a13.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import List
|
|
6
|
+
from typing_extensions import TypedDict
|
|
7
|
+
|
|
8
|
+
__all__ = ["EvaluationUpdateParams"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class EvaluationUpdateParams(TypedDict, total=False):
|
|
12
|
+
description: str
|
|
13
|
+
|
|
14
|
+
name: str
|
|
15
|
+
|
|
16
|
+
tags: List[str]
|
|
17
|
+
"""The tags associated with the entity"""
|
|
@@ -2,15 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Optional
|
|
6
5
|
from typing_extensions import TypedDict
|
|
7
6
|
|
|
8
7
|
__all__ = ["FileListParams"]
|
|
9
8
|
|
|
10
9
|
|
|
11
10
|
class FileListParams(TypedDict, total=False):
|
|
12
|
-
ending_before:
|
|
11
|
+
ending_before: str
|
|
13
12
|
|
|
14
13
|
limit: int
|
|
15
14
|
|
|
16
|
-
starting_after:
|
|
15
|
+
starting_after: str
|
|
@@ -170,10 +170,6 @@ class InferenceModel(BaseModel):
|
|
|
170
170
|
|
|
171
171
|
status: Literal["failed", "ready", "deploying"]
|
|
172
172
|
|
|
173
|
-
description: Optional[str] = None
|
|
174
|
-
|
|
175
|
-
display_name: Optional[str] = None
|
|
176
|
-
|
|
177
173
|
api_model_metadata: Optional[Dict[str, object]] = FieldInfo(alias="model_metadata", default=None)
|
|
178
174
|
|
|
179
175
|
object: Optional[Literal["model"]] = None
|
|
@@ -2,33 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Optional
|
|
6
5
|
from typing_extensions import Literal, TypedDict
|
|
7
6
|
|
|
8
7
|
__all__ = ["ModelListParams"]
|
|
9
8
|
|
|
10
9
|
|
|
11
10
|
class ModelListParams(TypedDict, total=False):
|
|
12
|
-
ending_before:
|
|
11
|
+
ending_before: str
|
|
13
12
|
|
|
14
13
|
limit: int
|
|
15
14
|
|
|
16
|
-
model_vendor:
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"xai",
|
|
29
|
-
]
|
|
15
|
+
model_vendor: Literal[
|
|
16
|
+
"openai",
|
|
17
|
+
"cohere",
|
|
18
|
+
"vertex_ai",
|
|
19
|
+
"anthropic",
|
|
20
|
+
"azure",
|
|
21
|
+
"gemini",
|
|
22
|
+
"launch",
|
|
23
|
+
"llmengine",
|
|
24
|
+
"model_zoo",
|
|
25
|
+
"bedrock",
|
|
26
|
+
"xai",
|
|
30
27
|
]
|
|
31
28
|
|
|
32
|
-
name:
|
|
29
|
+
name: str
|
|
33
30
|
|
|
34
|
-
starting_after:
|
|
31
|
+
starting_after: str
|
scale_gp_beta/types/span.py
CHANGED
|
@@ -24,15 +24,54 @@ class Span(BaseModel):
|
|
|
24
24
|
trace_id: str
|
|
25
25
|
"""id for grouping traces together, uuid is recommended"""
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
application_interaction_id: Optional[str] = None
|
|
28
|
+
"""The interaction ID this span belongs to"""
|
|
29
|
+
|
|
30
|
+
application_variant_id: Optional[str] = None
|
|
31
|
+
"""The id of the application variant this span belongs to"""
|
|
28
32
|
|
|
29
33
|
end_timestamp: Optional[datetime] = None
|
|
30
34
|
|
|
31
35
|
input: Optional[Dict[str, object]] = None
|
|
32
36
|
|
|
37
|
+
metadata: Optional[Dict[str, object]] = None
|
|
38
|
+
|
|
33
39
|
object: Optional[Literal["span"]] = None
|
|
34
40
|
|
|
35
41
|
output: Optional[Dict[str, builtins.object]] = None
|
|
36
42
|
|
|
37
43
|
parent_id: Optional[str] = None
|
|
38
44
|
"""Reference to a parent span_id"""
|
|
45
|
+
|
|
46
|
+
status: Optional[Literal["SUCCESS", "ERROR"]] = None
|
|
47
|
+
|
|
48
|
+
type: Optional[
|
|
49
|
+
Literal[
|
|
50
|
+
"TEXT_INPUT",
|
|
51
|
+
"TEXT_OUTPUT",
|
|
52
|
+
"COMPLETION_INPUT",
|
|
53
|
+
"COMPLETION",
|
|
54
|
+
"KB_RETRIEVAL",
|
|
55
|
+
"KB_INPUT",
|
|
56
|
+
"RERANKING",
|
|
57
|
+
"EXTERNAL_ENDPOINT",
|
|
58
|
+
"PROMPT_ENGINEERING",
|
|
59
|
+
"DOCUMENT_INPUT",
|
|
60
|
+
"MAP_REDUCE",
|
|
61
|
+
"DOCUMENT_SEARCH",
|
|
62
|
+
"DOCUMENT_PROMPT",
|
|
63
|
+
"CUSTOM",
|
|
64
|
+
"INPUT_GUARDRAIL",
|
|
65
|
+
"OUTPUT_GUARDRAIL",
|
|
66
|
+
"CODE_EXECUTION",
|
|
67
|
+
"DATA_MANIPULATION",
|
|
68
|
+
"EVALUATION",
|
|
69
|
+
"FILE_RETRIEVAL",
|
|
70
|
+
"KB_ADD_CHUNK",
|
|
71
|
+
"KB_MANAGEMENT",
|
|
72
|
+
"TRACER",
|
|
73
|
+
"AGENT_TRACER",
|
|
74
|
+
"AGENT_WORKFLOW",
|
|
75
|
+
"STANDALONE",
|
|
76
|
+
]
|
|
77
|
+
] = None
|
|
@@ -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 Required, Annotated, TypeAlias, TypedDict
|
|
7
|
+
from typing_extensions import Literal, Required, Annotated, TypeAlias, TypedDict
|
|
8
8
|
|
|
9
9
|
from .._utils import PropertyInfo
|
|
10
10
|
|
|
@@ -19,17 +19,21 @@ class BaseSpanCreateRequest(TypedDict, total=False):
|
|
|
19
19
|
trace_id: Required[str]
|
|
20
20
|
"""id for grouping traces together, uuid is recommended"""
|
|
21
21
|
|
|
22
|
-
data: Dict[str, object]
|
|
23
|
-
|
|
24
22
|
end_timestamp: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
25
23
|
|
|
26
24
|
input: Dict[str, object]
|
|
27
25
|
|
|
26
|
+
metadata: Dict[str, object]
|
|
27
|
+
|
|
28
28
|
output: Dict[str, object]
|
|
29
29
|
|
|
30
30
|
parent_id: str
|
|
31
31
|
"""Reference to a parent span_id"""
|
|
32
32
|
|
|
33
|
+
status: Literal["SUCCESS", "ERROR"]
|
|
34
|
+
|
|
35
|
+
type: str
|
|
36
|
+
|
|
33
37
|
|
|
34
38
|
class LegacyApplicationSpanCreateRequest(TypedDict, total=False):
|
|
35
39
|
application_interaction_id: Required[str]
|
|
@@ -43,16 +47,20 @@ class LegacyApplicationSpanCreateRequest(TypedDict, total=False):
|
|
|
43
47
|
trace_id: Required[str]
|
|
44
48
|
"""id for grouping traces together, uuid is recommended"""
|
|
45
49
|
|
|
46
|
-
data: Dict[str, object]
|
|
47
|
-
|
|
48
50
|
end_timestamp: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
49
51
|
|
|
50
52
|
input: Dict[str, object]
|
|
51
53
|
|
|
54
|
+
metadata: Dict[str, object]
|
|
55
|
+
|
|
52
56
|
output: Dict[str, object]
|
|
53
57
|
|
|
54
58
|
parent_id: str
|
|
55
59
|
"""Reference to a parent span_id"""
|
|
56
60
|
|
|
61
|
+
status: Literal["SUCCESS", "ERROR"]
|
|
62
|
+
|
|
63
|
+
type: str
|
|
64
|
+
|
|
57
65
|
|
|
58
66
|
SpanCreateParams: TypeAlias = Union[BaseSpanCreateRequest, LegacyApplicationSpanCreateRequest]
|
|
@@ -2,25 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Optional
|
|
6
5
|
from typing_extensions import TypedDict
|
|
7
6
|
|
|
8
7
|
__all__ = ["SpanListParams"]
|
|
9
8
|
|
|
10
9
|
|
|
11
10
|
class SpanListParams(TypedDict, total=False):
|
|
12
|
-
ending_before:
|
|
11
|
+
ending_before: str
|
|
13
12
|
|
|
14
13
|
from_ts: int
|
|
15
14
|
"""The starting (oldest) timestamp window in seconds."""
|
|
16
15
|
|
|
17
16
|
limit: int
|
|
18
17
|
|
|
19
|
-
parents_only:
|
|
18
|
+
parents_only: bool
|
|
20
19
|
|
|
21
|
-
starting_after:
|
|
20
|
+
starting_after: str
|
|
22
21
|
|
|
23
22
|
to_ts: int
|
|
24
23
|
"""The ending (most recent) timestamp in seconds."""
|
|
25
24
|
|
|
26
|
-
trace_id:
|
|
25
|
+
trace_id: str
|
|
@@ -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.0a13
|
|
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=
|
|
14
|
+
scale_gp_beta/_version.py,sha256=DWsLRVbuODR-T6oKAbRRfHZTgYgIQ_bvECa677TIXsU,174
|
|
15
15
|
scale_gp_beta/pagination.py,sha256=6AAa8_V0wARlMd1MIXijugYbG1mILGc2tHVKbUQbZyQ,2595
|
|
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,22 +27,26 @@ 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=UypS0-nRi8LN2ubF1mrhyZwDlZASw3YqPkie2FpNTpc,22238
|
|
31
|
+
scale_gp_beta/resources/datasets.py,sha256=yM_y7DFajJsVvzbxTRwFBEt0ZWmUIASSd0SOUD_DPRc,21511
|
|
32
|
+
scale_gp_beta/resources/evaluation_items.py,sha256=KSTTCjH0ZOPbGZXdAfiQjg9OtpF5-iHi5tlsEOtw8Z0,11358
|
|
33
|
+
scale_gp_beta/resources/evaluations.py,sha256=vxO6cx4GWNFCjRPsBFhjHZBWYo29hL8uu0oVGnCJmOU,31208
|
|
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=FIbpOqak4kMM5hXMGfw9ymFM_DD3ja0kFO60s0FTktI,32411
|
|
36
|
+
scale_gp_beta/resources/spans.py,sha256=1hMTeiozEGJUwD_oESrkWFJjbUxhhNf31NfAtIDXSf8,25716
|
|
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=xshu4RArR1B4JzRClmVBCp7i7DT_AE95nW3ehHL7Dwo,51564
|
|
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=i3PKjTJh3DK7iE4NIng6nMcDUpulcEp31YblXB6CixM,20459
|
|
43
|
+
scale_gp_beta/types/__init__.py,sha256=7vBBnliSnmZ_Ht8Yw2tHmSm2LlJERHU9ACoDurM_p5k,3917
|
|
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
|
|
@@ -49,49 +54,54 @@ scale_gp_beta/types/dataset_item.py,sha256=b4w5G099vEVyj8GNVnjNn-3SkZoFHvlmCXxfQ
|
|
|
49
54
|
scale_gp_beta/types/dataset_item_batch_create_params.py,sha256=ORwWuIFKilxhuVhzcF32HD68E0-n5dnRlbyxUk4H3Ko,478
|
|
50
55
|
scale_gp_beta/types/dataset_item_batch_create_response.py,sha256=tUVLQ7igWxp4Dn0pvi1K6YEf7m8XnsrlyHbBkVq9i6k,402
|
|
51
56
|
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=
|
|
57
|
+
scale_gp_beta/types/dataset_item_list_params.py,sha256=p0MM1WvHePo_xkMTK5ZijiDuTxx-x_9szXp77_XkUOA,612
|
|
58
|
+
scale_gp_beta/types/dataset_item_retrieve_params.py,sha256=f0kJg0btCGITamo949F7trvR0no7lOuVfoKTpFLJ5Gw,356
|
|
54
59
|
scale_gp_beta/types/dataset_item_update_params.py,sha256=4voEG9nKbxREiFRLzWqXZAWsw3wIm4EU1cnvOmsvGRA,367
|
|
55
|
-
scale_gp_beta/types/dataset_list_params.py,sha256=
|
|
60
|
+
scale_gp_beta/types/dataset_list_params.py,sha256=OjGejDg6bvEDTrXxepW5HzepGUV7_VWvgPDkK2UvF2Y,399
|
|
56
61
|
scale_gp_beta/types/dataset_retrieve_params.py,sha256=5tpzuzX6y1WKKxP2AbjYwwcATpB1eZCv4wZABG3baIQ,282
|
|
57
62
|
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/
|
|
63
|
+
scale_gp_beta/types/evaluation.py,sha256=M2FXgn8VXH6M6cvhfs2mtvh4SO_9hz6EBroB9B9z-RM,1032
|
|
64
|
+
scale_gp_beta/types/evaluation_create_params.py,sha256=kH2i6E4ihIsYVX8ShcSmulGh4rkyAKJplUkSzplKRl4,2705
|
|
65
|
+
scale_gp_beta/types/evaluation_delete_response.py,sha256=UnzxLUOxwpF2PVybC28R_XYLSEfah8r4JbQGwYpZk34,354
|
|
61
66
|
scale_gp_beta/types/evaluation_item.py,sha256=KENQ19JXAEGD0q82HwQ6GDx69giPmzP0h0Uo8ehWF8w,603
|
|
62
|
-
scale_gp_beta/types/evaluation_item_list_params.py,sha256=
|
|
67
|
+
scale_gp_beta/types/evaluation_item_list_params.py,sha256=JRwODtpUq89v0Ey9wnL6EsMpT9SSphekJRH8XNzN7nE,377
|
|
63
68
|
scale_gp_beta/types/evaluation_item_retrieve_params.py,sha256=UYEKIAQ4dy92ZOSV1tWDZcvXG7_0BSpOND5Ehzs7QM4,296
|
|
64
|
-
scale_gp_beta/types/evaluation_list_params.py,sha256=
|
|
69
|
+
scale_gp_beta/types/evaluation_list_params.py,sha256=c-89uw-cn0p-IgGT1HuFJC2vCecKT8C2tfLRMT9LiA0,449
|
|
65
70
|
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=
|
|
71
|
+
scale_gp_beta/types/evaluation_task.py,sha256=9j_7g7BROtyDrYPtpCao8Fz9ZWyJ0fyciKepdwkaw6g,14978
|
|
72
|
+
scale_gp_beta/types/evaluation_task_param.py,sha256=e9LU8WTIV458cf_9ATGi5jh9lHVYmvLZf7p1LXvHx4M,10543
|
|
73
|
+
scale_gp_beta/types/evaluation_update_params.py,sha256=lNbIG4lH5mCW51BJTzQN-RcXVa9JqPhJNFWyJcdAOUc,384
|
|
68
74
|
scale_gp_beta/types/file.py,sha256=Xkha0eSr1q6hkwjE9e2XNgk8kuHNoTEe1LXNhz6o-1k,528
|
|
69
75
|
scale_gp_beta/types/file_create_params.py,sha256=KpXv6JCbd8BlgceTmBTewxOky2JTJaTW3mcGiVVU7wE,317
|
|
70
76
|
scale_gp_beta/types/file_delete_response.py,sha256=lOsiaw8qrUOnH7smxb27-n7M4D1chfXlAUaMTRmdldY,336
|
|
71
77
|
scale_gp_beta/types/file_list.py,sha256=Ckj6RZNvIcrSeNg3NWbwyj92uezu4v5_6J4I4M0mjdA,637
|
|
72
|
-
scale_gp_beta/types/file_list_params.py,sha256=
|
|
78
|
+
scale_gp_beta/types/file_list_params.py,sha256=OQk-4R0R-8esqQxQhli8EvndlEnT8xvmSaAtbn6HdCA,305
|
|
73
79
|
scale_gp_beta/types/file_update_params.py,sha256=cZAz43aIXmc0jOz-uKWDsZIJx24NN4t9kQ2XDORvQ-Q,297
|
|
74
80
|
scale_gp_beta/types/inference_create_params.py,sha256=lpdMjG-ufUDpH8bGPbt2klG0I9Q3o374WrqHBjEpPwE,665
|
|
75
81
|
scale_gp_beta/types/inference_create_response.py,sha256=JgoDjN5B8zRUpOXXasD97vFKVN7A6QHKz_PN64pKB6s,390
|
|
76
|
-
scale_gp_beta/types/inference_model.py,sha256=
|
|
82
|
+
scale_gp_beta/types/inference_model.py,sha256=ufzVXh5-NLwxGQxPvC-8oBOIuR0-nGu8Bvw1iSWLGBU,4401
|
|
77
83
|
scale_gp_beta/types/inference_model_list.py,sha256=I5qlOvpe-kX2HUp-C0h47Na0w6tRfZiC5wGCJ_KMxUk,688
|
|
78
84
|
scale_gp_beta/types/inference_response.py,sha256=PIX9ihGJ6IP6D6i8gk3o_mbSLy9fvRwZdGyICQKh-q8,337
|
|
79
85
|
scale_gp_beta/types/inference_response_chunk.py,sha256=UIw0gVwnqtQKPTH3QAW9UYVlD0lBz7av-EzcMqF7xgg,353
|
|
86
|
+
scale_gp_beta/types/item_locator.py,sha256=2DgC4WO_8eqnGFUZppHqqhLFhbRQQVph83glxrm4WQQ,184
|
|
87
|
+
scale_gp_beta/types/item_locator_template.py,sha256=eEwfJCLdYr0OZ5-Pk5iGtHSa93h0zGZ015C7RtN1XYY,200
|
|
80
88
|
scale_gp_beta/types/model_create_params.py,sha256=K04FNqloYYTwffMHnNLRnrPNOKPgG70R6xKXZzR3Uu0,3484
|
|
81
89
|
scale_gp_beta/types/model_delete_response.py,sha256=fSpTChRLHPOoc9SJbkS4wcLxVOc3kKBOya8wkGow5pY,339
|
|
82
|
-
scale_gp_beta/types/model_list_params.py,sha256=
|
|
90
|
+
scale_gp_beta/types/model_list_params.py,sha256=JsYwYJYny0QT9LpDoeRBM9eFfjsyRx-jKrPMHBC_LrU,572
|
|
83
91
|
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/span_create_params.py,sha256=
|
|
86
|
-
scale_gp_beta/types/span_list_params.py,sha256=
|
|
87
|
-
scale_gp_beta/types/span_update_params.py,sha256=
|
|
88
|
-
scale_gp_beta/types/chat/__init__.py,sha256=
|
|
92
|
+
scale_gp_beta/types/span.py,sha256=ZyOO7qliKlSSxG2kZ8IzOFwMIWXL3fBdc91rd-2YXSg,1874
|
|
93
|
+
scale_gp_beta/types/span_create_params.py,sha256=Hd9lqRJTa7ZtGYqPdSatahNe5CCYzupM3M_hkpqWpsA,1717
|
|
94
|
+
scale_gp_beta/types/span_list_params.py,sha256=d4ewERZysMdT5Z2_Do_Wc8OXQnoOw-vGlwAFpwnGwjc,500
|
|
95
|
+
scale_gp_beta/types/span_update_params.py,sha256=UWSKLWtcqMkLYHcY9LsVPSTjmGO-9c7H5zvYmODrCoM,564
|
|
96
|
+
scale_gp_beta/types/chat/__init__.py,sha256=xpUkeoWDOMjW8P-V5vr8ezDowv0dKjFjs8TS_UmcPBc,595
|
|
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=kaPItMqdLSdlNrLuaHpuJo-NJuX5gESbgU2Q06l5vso,571
|
|
102
|
+
scale_gp_beta/types/chat/model_definition.py,sha256=_mQ5iTzzrEHt_K2SHBSABjO2tMmROLrwSXQyGGTc8Ls,847
|
|
93
103
|
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.
|
|
104
|
+
scale_gp_beta-0.1.0a13.dist-info/METADATA,sha256=C3LAneayNsv-LqQGPYfP4iMdqq6b2Rh3pxUvI0Bl5oo,16942
|
|
105
|
+
scale_gp_beta-0.1.0a13.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
106
|
+
scale_gp_beta-0.1.0a13.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
|
|
107
|
+
scale_gp_beta-0.1.0a13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|