scale-gp-beta 0.1.0a13__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/_version.py +1 -1
- scale_gp_beta/pagination.py +39 -1
- scale_gp_beta/resources/chat/completions.py +14 -13
- scale_gp_beta/resources/dataset_items.py +18 -10
- scale_gp_beta/resources/datasets.py +5 -0
- scale_gp_beta/resources/evaluation_items.py +6 -0
- scale_gp_beta/resources/evaluations.py +4 -0
- scale_gp_beta/resources/files/files.py +5 -0
- scale_gp_beta/resources/models.py +4 -0
- scale_gp_beta/resources/spans.py +277 -9
- scale_gp_beta/types/__init__.py +1 -1
- scale_gp_beta/types/chat/__init__.py +1 -0
- scale_gp_beta/types/chat/completion_models_params.py +2 -0
- scale_gp_beta/types/{dataset_item_batch_create_response.py → chat/completion_models_response.py} +5 -5
- scale_gp_beta/types/dataset_item.py +2 -0
- scale_gp_beta/types/dataset_item_list_params.py +3 -1
- scale_gp_beta/types/dataset_list_params.py +3 -1
- scale_gp_beta/types/evaluation_item_list_params.py +3 -1
- scale_gp_beta/types/evaluation_list_params.py +2 -0
- scale_gp_beta/types/file_list_params.py +3 -1
- scale_gp_beta/types/model_list_params.py +2 -0
- scale_gp_beta/types/span_batch_params.py +130 -0
- scale_gp_beta/types/span_create_params.py +62 -2
- scale_gp_beta/types/span_list_params.py +3 -1
- {scale_gp_beta-0.1.0a13.dist-info → scale_gp_beta-0.1.0a14.dist-info}/METADATA +1 -1
- {scale_gp_beta-0.1.0a13.dist-info → scale_gp_beta-0.1.0a14.dist-info}/RECORD +28 -27
- {scale_gp_beta-0.1.0a13.dist-info → scale_gp_beta-0.1.0a14.dist-info}/WHEEL +0 -0
- {scale_gp_beta-0.1.0a13.dist-info → scale_gp_beta-0.1.0a14.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,130 @@
|
|
|
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 Dict, Union, Iterable
|
|
6
|
+
from datetime import datetime
|
|
7
|
+
from typing_extensions import Literal, Required, Annotated, TypeAlias, TypedDict
|
|
8
|
+
|
|
9
|
+
from .._utils import PropertyInfo
|
|
10
|
+
|
|
11
|
+
__all__ = ["SpanBatchParams", "Item", "ItemBaseSpanCreateRequest", "ItemLegacyApplicationSpanCreateRequest"]
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class SpanBatchParams(TypedDict, total=False):
|
|
15
|
+
items: Required[Iterable[Item]]
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class ItemBaseSpanCreateRequest(TypedDict, total=False):
|
|
19
|
+
name: Required[str]
|
|
20
|
+
|
|
21
|
+
start_timestamp: Required[Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]]
|
|
22
|
+
|
|
23
|
+
trace_id: Required[str]
|
|
24
|
+
"""id for grouping traces together, uuid is recommended"""
|
|
25
|
+
|
|
26
|
+
id: str
|
|
27
|
+
"""The id of the span"""
|
|
28
|
+
|
|
29
|
+
end_timestamp: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
30
|
+
|
|
31
|
+
input: Dict[str, object]
|
|
32
|
+
|
|
33
|
+
metadata: Dict[str, object]
|
|
34
|
+
|
|
35
|
+
output: Dict[str, object]
|
|
36
|
+
|
|
37
|
+
parent_id: str
|
|
38
|
+
"""Reference to a parent span_id"""
|
|
39
|
+
|
|
40
|
+
status: Literal["SUCCESS", "ERROR"]
|
|
41
|
+
|
|
42
|
+
type: Literal[
|
|
43
|
+
"TEXT_INPUT",
|
|
44
|
+
"TEXT_OUTPUT",
|
|
45
|
+
"COMPLETION_INPUT",
|
|
46
|
+
"COMPLETION",
|
|
47
|
+
"KB_RETRIEVAL",
|
|
48
|
+
"KB_INPUT",
|
|
49
|
+
"RERANKING",
|
|
50
|
+
"EXTERNAL_ENDPOINT",
|
|
51
|
+
"PROMPT_ENGINEERING",
|
|
52
|
+
"DOCUMENT_INPUT",
|
|
53
|
+
"MAP_REDUCE",
|
|
54
|
+
"DOCUMENT_SEARCH",
|
|
55
|
+
"DOCUMENT_PROMPT",
|
|
56
|
+
"CUSTOM",
|
|
57
|
+
"INPUT_GUARDRAIL",
|
|
58
|
+
"OUTPUT_GUARDRAIL",
|
|
59
|
+
"CODE_EXECUTION",
|
|
60
|
+
"DATA_MANIPULATION",
|
|
61
|
+
"EVALUATION",
|
|
62
|
+
"FILE_RETRIEVAL",
|
|
63
|
+
"KB_ADD_CHUNK",
|
|
64
|
+
"KB_MANAGEMENT",
|
|
65
|
+
"TRACER",
|
|
66
|
+
"AGENT_TRACER",
|
|
67
|
+
"AGENT_WORKFLOW",
|
|
68
|
+
"STANDALONE",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
class ItemLegacyApplicationSpanCreateRequest(TypedDict, total=False):
|
|
73
|
+
application_interaction_id: Required[str]
|
|
74
|
+
|
|
75
|
+
application_variant_id: Required[str]
|
|
76
|
+
|
|
77
|
+
name: Required[str]
|
|
78
|
+
|
|
79
|
+
start_timestamp: Required[Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]]
|
|
80
|
+
|
|
81
|
+
trace_id: Required[str]
|
|
82
|
+
"""id for grouping traces together, uuid is recommended"""
|
|
83
|
+
|
|
84
|
+
id: str
|
|
85
|
+
"""The id of the span"""
|
|
86
|
+
|
|
87
|
+
end_timestamp: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
88
|
+
|
|
89
|
+
input: Dict[str, object]
|
|
90
|
+
|
|
91
|
+
metadata: Dict[str, object]
|
|
92
|
+
|
|
93
|
+
output: Dict[str, object]
|
|
94
|
+
|
|
95
|
+
parent_id: str
|
|
96
|
+
"""Reference to a parent span_id"""
|
|
97
|
+
|
|
98
|
+
status: Literal["SUCCESS", "ERROR"]
|
|
99
|
+
|
|
100
|
+
type: Literal[
|
|
101
|
+
"TEXT_INPUT",
|
|
102
|
+
"TEXT_OUTPUT",
|
|
103
|
+
"COMPLETION_INPUT",
|
|
104
|
+
"COMPLETION",
|
|
105
|
+
"KB_RETRIEVAL",
|
|
106
|
+
"KB_INPUT",
|
|
107
|
+
"RERANKING",
|
|
108
|
+
"EXTERNAL_ENDPOINT",
|
|
109
|
+
"PROMPT_ENGINEERING",
|
|
110
|
+
"DOCUMENT_INPUT",
|
|
111
|
+
"MAP_REDUCE",
|
|
112
|
+
"DOCUMENT_SEARCH",
|
|
113
|
+
"DOCUMENT_PROMPT",
|
|
114
|
+
"CUSTOM",
|
|
115
|
+
"INPUT_GUARDRAIL",
|
|
116
|
+
"OUTPUT_GUARDRAIL",
|
|
117
|
+
"CODE_EXECUTION",
|
|
118
|
+
"DATA_MANIPULATION",
|
|
119
|
+
"EVALUATION",
|
|
120
|
+
"FILE_RETRIEVAL",
|
|
121
|
+
"KB_ADD_CHUNK",
|
|
122
|
+
"KB_MANAGEMENT",
|
|
123
|
+
"TRACER",
|
|
124
|
+
"AGENT_TRACER",
|
|
125
|
+
"AGENT_WORKFLOW",
|
|
126
|
+
"STANDALONE",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
Item: TypeAlias = Union[ItemBaseSpanCreateRequest, ItemLegacyApplicationSpanCreateRequest]
|
|
@@ -19,6 +19,9 @@ class BaseSpanCreateRequest(TypedDict, total=False):
|
|
|
19
19
|
trace_id: Required[str]
|
|
20
20
|
"""id for grouping traces together, uuid is recommended"""
|
|
21
21
|
|
|
22
|
+
id: str
|
|
23
|
+
"""The id of the span"""
|
|
24
|
+
|
|
22
25
|
end_timestamp: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
23
26
|
|
|
24
27
|
input: Dict[str, object]
|
|
@@ -32,7 +35,34 @@ class BaseSpanCreateRequest(TypedDict, total=False):
|
|
|
32
35
|
|
|
33
36
|
status: Literal["SUCCESS", "ERROR"]
|
|
34
37
|
|
|
35
|
-
type:
|
|
38
|
+
type: Literal[
|
|
39
|
+
"TEXT_INPUT",
|
|
40
|
+
"TEXT_OUTPUT",
|
|
41
|
+
"COMPLETION_INPUT",
|
|
42
|
+
"COMPLETION",
|
|
43
|
+
"KB_RETRIEVAL",
|
|
44
|
+
"KB_INPUT",
|
|
45
|
+
"RERANKING",
|
|
46
|
+
"EXTERNAL_ENDPOINT",
|
|
47
|
+
"PROMPT_ENGINEERING",
|
|
48
|
+
"DOCUMENT_INPUT",
|
|
49
|
+
"MAP_REDUCE",
|
|
50
|
+
"DOCUMENT_SEARCH",
|
|
51
|
+
"DOCUMENT_PROMPT",
|
|
52
|
+
"CUSTOM",
|
|
53
|
+
"INPUT_GUARDRAIL",
|
|
54
|
+
"OUTPUT_GUARDRAIL",
|
|
55
|
+
"CODE_EXECUTION",
|
|
56
|
+
"DATA_MANIPULATION",
|
|
57
|
+
"EVALUATION",
|
|
58
|
+
"FILE_RETRIEVAL",
|
|
59
|
+
"KB_ADD_CHUNK",
|
|
60
|
+
"KB_MANAGEMENT",
|
|
61
|
+
"TRACER",
|
|
62
|
+
"AGENT_TRACER",
|
|
63
|
+
"AGENT_WORKFLOW",
|
|
64
|
+
"STANDALONE",
|
|
65
|
+
]
|
|
36
66
|
|
|
37
67
|
|
|
38
68
|
class LegacyApplicationSpanCreateRequest(TypedDict, total=False):
|
|
@@ -47,6 +77,9 @@ class LegacyApplicationSpanCreateRequest(TypedDict, total=False):
|
|
|
47
77
|
trace_id: Required[str]
|
|
48
78
|
"""id for grouping traces together, uuid is recommended"""
|
|
49
79
|
|
|
80
|
+
id: str
|
|
81
|
+
"""The id of the span"""
|
|
82
|
+
|
|
50
83
|
end_timestamp: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
51
84
|
|
|
52
85
|
input: Dict[str, object]
|
|
@@ -60,7 +93,34 @@ class LegacyApplicationSpanCreateRequest(TypedDict, total=False):
|
|
|
60
93
|
|
|
61
94
|
status: Literal["SUCCESS", "ERROR"]
|
|
62
95
|
|
|
63
|
-
type:
|
|
96
|
+
type: Literal[
|
|
97
|
+
"TEXT_INPUT",
|
|
98
|
+
"TEXT_OUTPUT",
|
|
99
|
+
"COMPLETION_INPUT",
|
|
100
|
+
"COMPLETION",
|
|
101
|
+
"KB_RETRIEVAL",
|
|
102
|
+
"KB_INPUT",
|
|
103
|
+
"RERANKING",
|
|
104
|
+
"EXTERNAL_ENDPOINT",
|
|
105
|
+
"PROMPT_ENGINEERING",
|
|
106
|
+
"DOCUMENT_INPUT",
|
|
107
|
+
"MAP_REDUCE",
|
|
108
|
+
"DOCUMENT_SEARCH",
|
|
109
|
+
"DOCUMENT_PROMPT",
|
|
110
|
+
"CUSTOM",
|
|
111
|
+
"INPUT_GUARDRAIL",
|
|
112
|
+
"OUTPUT_GUARDRAIL",
|
|
113
|
+
"CODE_EXECUTION",
|
|
114
|
+
"DATA_MANIPULATION",
|
|
115
|
+
"EVALUATION",
|
|
116
|
+
"FILE_RETRIEVAL",
|
|
117
|
+
"KB_ADD_CHUNK",
|
|
118
|
+
"KB_MANAGEMENT",
|
|
119
|
+
"TRACER",
|
|
120
|
+
"AGENT_TRACER",
|
|
121
|
+
"AGENT_WORKFLOW",
|
|
122
|
+
"STANDALONE",
|
|
123
|
+
]
|
|
64
124
|
|
|
65
125
|
|
|
66
126
|
SpanCreateParams: TypeAlias = Union[BaseSpanCreateRequest, LegacyApplicationSpanCreateRequest]
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing_extensions import TypedDict
|
|
5
|
+
from typing_extensions import Literal, TypedDict
|
|
6
6
|
|
|
7
7
|
__all__ = ["SpanListParams"]
|
|
8
8
|
|
|
@@ -17,6 +17,8 @@ class SpanListParams(TypedDict, total=False):
|
|
|
17
17
|
|
|
18
18
|
parents_only: bool
|
|
19
19
|
|
|
20
|
+
sort_order: Literal["asc", "desc"]
|
|
21
|
+
|
|
20
22
|
starting_after: str
|
|
21
23
|
|
|
22
24
|
to_ts: int
|
|
@@ -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
|
|
@@ -11,8 +11,8 @@ 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
|
|
@@ -27,20 +27,20 @@ scale_gp_beta/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf
|
|
|
27
27
|
scale_gp_beta/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
28
28
|
scale_gp_beta/resources/__init__.py,sha256=Fyo05_2_pc5orfyTSIpxa3btmBTd45VasgibwSqbbKo,4942
|
|
29
29
|
scale_gp_beta/resources/completions.py,sha256=4esj9lGTJAxt6wFvON126DvEGkMIChRZ6uZBOf56Aac,31868
|
|
30
|
-
scale_gp_beta/resources/dataset_items.py,sha256=
|
|
31
|
-
scale_gp_beta/resources/datasets.py,sha256=
|
|
32
|
-
scale_gp_beta/resources/evaluation_items.py,sha256=
|
|
33
|
-
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
|
|
34
34
|
scale_gp_beta/resources/inference.py,sha256=w1JD8S5P_SxhOtj1vDyg-23uP72zVVVU6lKU_YbqX4U,7563
|
|
35
|
-
scale_gp_beta/resources/models.py,sha256=
|
|
36
|
-
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
|
|
37
37
|
scale_gp_beta/resources/chat/__init__.py,sha256=BVAfz9TM3DT5W9f_mt0P9YRxL_MsUxKCWAH6u1iogmA,1041
|
|
38
38
|
scale_gp_beta/resources/chat/chat.py,sha256=4OG_TrwVqYvV-7Ha8Nbc6iuXQuys9wKXgkxYmE6p6jk,3672
|
|
39
|
-
scale_gp_beta/resources/chat/completions.py,sha256=
|
|
39
|
+
scale_gp_beta/resources/chat/completions.py,sha256=JhPNBdjsm5LL4wLLtwLR22cJ5OUEh-JLgJH50aZ2Ln4,51622
|
|
40
40
|
scale_gp_beta/resources/files/__init__.py,sha256=VgAtqUimN5Kf_-lmEaNBnu_ApGegKsJQ1zNf-42MXFA,1002
|
|
41
41
|
scale_gp_beta/resources/files/content.py,sha256=oJxb-28ZOUBgzE_MiAaJOcKFmtlB-N5APdhfZBNJna8,5762
|
|
42
|
-
scale_gp_beta/resources/files/files.py,sha256=
|
|
43
|
-
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
|
|
44
44
|
scale_gp_beta/types/completion.py,sha256=5eewo25sdqL4vutqvE8wmugE0Cw6YLzZ0_AD6yjP9NM,3259
|
|
45
45
|
scale_gp_beta/types/completion_create_params.py,sha256=LE9vna29Kbh7E8qUq7EhQbcu7YuCF_h663maKtzOnhk,3063
|
|
46
46
|
scale_gp_beta/types/component.py,sha256=0dLrvTEHpF628wZ-CIniOpsOzKfnLlaZy4OPIFDzoF0,403
|
|
@@ -50,23 +50,22 @@ scale_gp_beta/types/container_param.py,sha256=rCFqFd9PoISIJRVg8-H7SEB_hI8iQ4PhPN
|
|
|
50
50
|
scale_gp_beta/types/dataset.py,sha256=7hm3W_rGtGYLWWCxH_Wto0h74Ea2XSRzaYBSO0jYU74,584
|
|
51
51
|
scale_gp_beta/types/dataset_create_params.py,sha256=e8AftX5klhylAU-pseKOqaL6Fkdjq_xtFlPkewTTMfM,509
|
|
52
52
|
scale_gp_beta/types/dataset_delete_response.py,sha256=Lc4K761LM__hosWI3gYjYnEl5JXL-cg4DU3lXKhtQoo,345
|
|
53
|
-
scale_gp_beta/types/dataset_item.py,sha256=
|
|
53
|
+
scale_gp_beta/types/dataset_item.py,sha256=PZ6OHxNuvCOsAsLoN9kAqb7KugBe3powNSkDaDTM96k,545
|
|
54
54
|
scale_gp_beta/types/dataset_item_batch_create_params.py,sha256=ORwWuIFKilxhuVhzcF32HD68E0-n5dnRlbyxUk4H3Ko,478
|
|
55
|
-
scale_gp_beta/types/dataset_item_batch_create_response.py,sha256=tUVLQ7igWxp4Dn0pvi1K6YEf7m8XnsrlyHbBkVq9i6k,402
|
|
56
55
|
scale_gp_beta/types/dataset_item_delete_response.py,sha256=EffQRHJgGvew_n6XYVdojlC5Ec1oHg91xncrKWkyjGA,358
|
|
57
|
-
scale_gp_beta/types/dataset_item_list_params.py,sha256=
|
|
56
|
+
scale_gp_beta/types/dataset_item_list_params.py,sha256=CEB161IozqL-n7YC54g76nFqK0sp7l-A0QB9ET0L86M,661
|
|
58
57
|
scale_gp_beta/types/dataset_item_retrieve_params.py,sha256=f0kJg0btCGITamo949F7trvR0no7lOuVfoKTpFLJ5Gw,356
|
|
59
58
|
scale_gp_beta/types/dataset_item_update_params.py,sha256=4voEG9nKbxREiFRLzWqXZAWsw3wIm4EU1cnvOmsvGRA,367
|
|
60
|
-
scale_gp_beta/types/dataset_list_params.py,sha256=
|
|
59
|
+
scale_gp_beta/types/dataset_list_params.py,sha256=LR9rmVn2X-DqEGXgZ_-OnvYk2pvuJhbkzmam8jQ5aws,448
|
|
61
60
|
scale_gp_beta/types/dataset_retrieve_params.py,sha256=5tpzuzX6y1WKKxP2AbjYwwcATpB1eZCv4wZABG3baIQ,282
|
|
62
61
|
scale_gp_beta/types/dataset_update_params.py,sha256=8S4fyBybzmElV5345ByeP9lPIbw3WGUQg_mABM_YyLk,378
|
|
63
62
|
scale_gp_beta/types/evaluation.py,sha256=M2FXgn8VXH6M6cvhfs2mtvh4SO_9hz6EBroB9B9z-RM,1032
|
|
64
63
|
scale_gp_beta/types/evaluation_create_params.py,sha256=kH2i6E4ihIsYVX8ShcSmulGh4rkyAKJplUkSzplKRl4,2705
|
|
65
64
|
scale_gp_beta/types/evaluation_delete_response.py,sha256=UnzxLUOxwpF2PVybC28R_XYLSEfah8r4JbQGwYpZk34,354
|
|
66
65
|
scale_gp_beta/types/evaluation_item.py,sha256=KENQ19JXAEGD0q82HwQ6GDx69giPmzP0h0Uo8ehWF8w,603
|
|
67
|
-
scale_gp_beta/types/evaluation_item_list_params.py,sha256=
|
|
66
|
+
scale_gp_beta/types/evaluation_item_list_params.py,sha256=7sQVVKB87uO45lYuMUhGR6125a6rG19gYx6gckR7sxU,426
|
|
68
67
|
scale_gp_beta/types/evaluation_item_retrieve_params.py,sha256=UYEKIAQ4dy92ZOSV1tWDZcvXG7_0BSpOND5Ehzs7QM4,296
|
|
69
|
-
scale_gp_beta/types/evaluation_list_params.py,sha256=
|
|
68
|
+
scale_gp_beta/types/evaluation_list_params.py,sha256=DMQKsY6Xl5rA7gNngosF85EXuaguaF6U7Dyna3dbErA,489
|
|
70
69
|
scale_gp_beta/types/evaluation_retrieve_params.py,sha256=_YuT-E2VO-f_SvHaIe24KBbhTNoK8T-3tVB6Ov6cqfg,356
|
|
71
70
|
scale_gp_beta/types/evaluation_task.py,sha256=9j_7g7BROtyDrYPtpCao8Fz9ZWyJ0fyciKepdwkaw6g,14978
|
|
72
71
|
scale_gp_beta/types/evaluation_task_param.py,sha256=e9LU8WTIV458cf_9ATGi5jh9lHVYmvLZf7p1LXvHx4M,10543
|
|
@@ -75,7 +74,7 @@ scale_gp_beta/types/file.py,sha256=Xkha0eSr1q6hkwjE9e2XNgk8kuHNoTEe1LXNhz6o-1k,5
|
|
|
75
74
|
scale_gp_beta/types/file_create_params.py,sha256=KpXv6JCbd8BlgceTmBTewxOky2JTJaTW3mcGiVVU7wE,317
|
|
76
75
|
scale_gp_beta/types/file_delete_response.py,sha256=lOsiaw8qrUOnH7smxb27-n7M4D1chfXlAUaMTRmdldY,336
|
|
77
76
|
scale_gp_beta/types/file_list.py,sha256=Ckj6RZNvIcrSeNg3NWbwyj92uezu4v5_6J4I4M0mjdA,637
|
|
78
|
-
scale_gp_beta/types/file_list_params.py,sha256=
|
|
77
|
+
scale_gp_beta/types/file_list_params.py,sha256=rFIimu3tLcEWfJItI4a6FDb8LJFX38JSzNlY-3D_0No,354
|
|
79
78
|
scale_gp_beta/types/file_update_params.py,sha256=cZAz43aIXmc0jOz-uKWDsZIJx24NN4t9kQ2XDORvQ-Q,297
|
|
80
79
|
scale_gp_beta/types/inference_create_params.py,sha256=lpdMjG-ufUDpH8bGPbt2klG0I9Q3o374WrqHBjEpPwE,665
|
|
81
80
|
scale_gp_beta/types/inference_create_response.py,sha256=JgoDjN5B8zRUpOXXasD97vFKVN7A6QHKz_PN64pKB6s,390
|
|
@@ -87,21 +86,23 @@ scale_gp_beta/types/item_locator.py,sha256=2DgC4WO_8eqnGFUZppHqqhLFhbRQQVph83glx
|
|
|
87
86
|
scale_gp_beta/types/item_locator_template.py,sha256=eEwfJCLdYr0OZ5-Pk5iGtHSa93h0zGZ015C7RtN1XYY,200
|
|
88
87
|
scale_gp_beta/types/model_create_params.py,sha256=K04FNqloYYTwffMHnNLRnrPNOKPgG70R6xKXZzR3Uu0,3484
|
|
89
88
|
scale_gp_beta/types/model_delete_response.py,sha256=fSpTChRLHPOoc9SJbkS4wcLxVOc3kKBOya8wkGow5pY,339
|
|
90
|
-
scale_gp_beta/types/model_list_params.py,sha256=
|
|
89
|
+
scale_gp_beta/types/model_list_params.py,sha256=T4SXYdaqIwmFCeLw_5ZyEoICykSbRrJkXKJ7QWUZEvg,612
|
|
91
90
|
scale_gp_beta/types/model_update_params.py,sha256=RFXvs-EIDHmNO-fnPB8H6B9DlK6bYVsiwFDMPPFHGII,3701
|
|
92
91
|
scale_gp_beta/types/span.py,sha256=ZyOO7qliKlSSxG2kZ8IzOFwMIWXL3fBdc91rd-2YXSg,1874
|
|
93
|
-
scale_gp_beta/types/
|
|
94
|
-
scale_gp_beta/types/
|
|
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
95
|
scale_gp_beta/types/span_update_params.py,sha256=UWSKLWtcqMkLYHcY9LsVPSTjmGO-9c7H5zvYmODrCoM,564
|
|
96
|
-
scale_gp_beta/types/chat/__init__.py,sha256=
|
|
96
|
+
scale_gp_beta/types/chat/__init__.py,sha256=YmEJo3C_C7aRkImUaKB5BG97oOGkV0q3sHimL8cMa4g,688
|
|
97
97
|
scale_gp_beta/types/chat/chat_completion.py,sha256=oYOrsTBdGwV9e_mF4F06XmdyZI4pyw06IQ-0mFn0etk,8250
|
|
98
98
|
scale_gp_beta/types/chat/chat_completion_chunk.py,sha256=57-i6LyOk6IX2HZvXsoUC26e0D0dVBNQjX_GbT0eKEw,7060
|
|
99
99
|
scale_gp_beta/types/chat/completion_create_params.py,sha256=Y7vJNvNM4Sov77l55aS5YtyRnrf7isediu3nKr6YE-A,4505
|
|
100
100
|
scale_gp_beta/types/chat/completion_create_response.py,sha256=0OhfoJW8azVRrZdXRRMuiJ7kEEeMDnKScxrr3sayzDo,374
|
|
101
|
-
scale_gp_beta/types/chat/completion_models_params.py,sha256=
|
|
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
|
|
102
103
|
scale_gp_beta/types/chat/model_definition.py,sha256=_mQ5iTzzrEHt_K2SHBSABjO2tMmROLrwSXQyGGTc8Ls,847
|
|
103
104
|
scale_gp_beta/types/files/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
104
|
-
scale_gp_beta-0.1.
|
|
105
|
-
scale_gp_beta-0.1.
|
|
106
|
-
scale_gp_beta-0.1.
|
|
107
|
-
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
|