scale-gp-beta 0.1.0a9__py3-none-any.whl → 0.1.0a11__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.
Files changed (33) hide show
  1. scale_gp_beta/_base_client.py +207 -233
  2. scale_gp_beta/_client.py +10 -5
  3. scale_gp_beta/_models.py +2 -3
  4. scale_gp_beta/_response.py +1 -1
  5. scale_gp_beta/_utils/_transform.py +46 -1
  6. scale_gp_beta/_utils/_typing.py +3 -1
  7. scale_gp_beta/_utils/_utils.py +9 -1
  8. scale_gp_beta/_version.py +1 -1
  9. scale_gp_beta/resources/__init__.py +14 -0
  10. scale_gp_beta/resources/chat/completions.py +7 -7
  11. scale_gp_beta/resources/completions.py +7 -7
  12. scale_gp_beta/resources/dataset_items.py +1 -4
  13. scale_gp_beta/resources/datasets.py +19 -11
  14. scale_gp_beta/resources/evaluation_items.py +1 -4
  15. scale_gp_beta/resources/evaluations.py +23 -5
  16. scale_gp_beta/resources/files/files.py +1 -6
  17. scale_gp_beta/resources/inference.py +1 -4
  18. scale_gp_beta/resources/models.py +1 -5
  19. scale_gp_beta/resources/spans.py +658 -0
  20. scale_gp_beta/types/__init__.py +4 -0
  21. scale_gp_beta/types/dataset.py +4 -1
  22. scale_gp_beta/types/dataset_create_params.py +4 -1
  23. scale_gp_beta/types/dataset_update_params.py +4 -0
  24. scale_gp_beta/types/evaluation.py +3 -0
  25. scale_gp_beta/types/evaluation_create_params.py +12 -0
  26. scale_gp_beta/types/span.py +38 -0
  27. scale_gp_beta/types/span_create_params.py +58 -0
  28. scale_gp_beta/types/span_list_params.py +26 -0
  29. scale_gp_beta/types/span_update_params.py +21 -0
  30. {scale_gp_beta-0.1.0a9.dist-info → scale_gp_beta-0.1.0a11.dist-info}/METADATA +8 -8
  31. {scale_gp_beta-0.1.0a9.dist-info → scale_gp_beta-0.1.0a11.dist-info}/RECORD +33 -28
  32. {scale_gp_beta-0.1.0a9.dist-info → scale_gp_beta-0.1.0a11.dist-info}/WHEEL +0 -0
  33. {scale_gp_beta-0.1.0a9.dist-info → scale_gp_beta-0.1.0a11.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- from typing import Optional
3
+ from typing import List, Optional
4
4
  from datetime import datetime
5
5
  from typing_extensions import Literal
6
6
 
@@ -20,6 +20,9 @@ class Dataset(BaseModel):
20
20
 
21
21
  name: str
22
22
 
23
+ tags: List[str]
24
+ """The tags associated with the entity"""
25
+
23
26
  archived_at: Optional[datetime] = None
24
27
 
25
28
  description: Optional[str] = None
@@ -2,7 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Dict, Iterable
5
+ from typing import Dict, List, Iterable
6
6
  from typing_extensions import Required, TypedDict
7
7
 
8
8
  __all__ = ["DatasetCreateParams"]
@@ -15,3 +15,6 @@ class DatasetCreateParams(TypedDict, total=False):
15
15
  name: Required[str]
16
16
 
17
17
  description: str
18
+
19
+ tags: List[str]
20
+ """The tags associated with the entity"""
@@ -2,6 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ from typing import List
5
6
  from typing_extensions import TypedDict
6
7
 
7
8
  __all__ = ["DatasetUpdateParams"]
@@ -11,3 +12,6 @@ class DatasetUpdateParams(TypedDict, total=False):
11
12
  description: str
12
13
 
13
14
  name: str
15
+
16
+ tags: List[str]
17
+ """The tags associated with the entity"""
@@ -24,6 +24,9 @@ class Evaluation(BaseModel):
24
24
 
25
25
  status: Literal["failed", "completed", "running"]
26
26
 
27
+ tags: List[str]
28
+ """The tags associated with the entity"""
29
+
27
30
  archived_at: Optional[datetime] = None
28
31
 
29
32
  description: Optional[str] = None
@@ -25,6 +25,9 @@ class EvaluationStandaloneCreateRequest(TypedDict, total=False):
25
25
 
26
26
  description: str
27
27
 
28
+ tags: List[str]
29
+ """The tags associated with the entity"""
30
+
28
31
  tasks: Iterable[EvaluationTaskParam]
29
32
  """Tasks allow you to augment and evaluate your data"""
30
33
 
@@ -40,6 +43,9 @@ class EvaluationFromDatasetCreateRequest(TypedDict, total=False):
40
43
 
41
44
  description: str
42
45
 
46
+ tags: List[str]
47
+ """The tags associated with the entity"""
48
+
43
49
  tasks: Iterable[EvaluationTaskParam]
44
50
  """Tasks allow you to augment and evaluate your data"""
45
51
 
@@ -64,6 +70,9 @@ class EvaluationWithDatasetCreateRequest(TypedDict, total=False):
64
70
 
65
71
  description: str
66
72
 
73
+ tags: List[str]
74
+ """The tags associated with the entity"""
75
+
67
76
  tasks: Iterable[EvaluationTaskParam]
68
77
  """Tasks allow you to augment and evaluate your data"""
69
78
 
@@ -79,6 +88,9 @@ class EvaluationWithDatasetCreateRequestDataset(TypedDict, total=False):
79
88
  If not provided, all keys will be included.
80
89
  """
81
90
 
91
+ tags: List[str]
92
+ """The tags associated with the entity"""
93
+
82
94
 
83
95
  EvaluationCreateParams: TypeAlias = Union[
84
96
  EvaluationStandaloneCreateRequest, EvaluationFromDatasetCreateRequest, EvaluationWithDatasetCreateRequest
@@ -0,0 +1,38 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ import builtins
4
+ from typing import Dict, Optional
5
+ from datetime import datetime
6
+ from typing_extensions import Literal
7
+
8
+ from .._models import BaseModel
9
+
10
+ __all__ = ["Span"]
11
+
12
+
13
+ class Span(BaseModel):
14
+ id: str
15
+
16
+ account_id: str
17
+
18
+ created_by_user_id: str
19
+
20
+ name: str
21
+
22
+ start_timestamp: datetime
23
+
24
+ trace_id: str
25
+ """id for grouping traces together, uuid is recommended"""
26
+
27
+ data: Optional[Dict[str, object]] = None
28
+
29
+ end_timestamp: Optional[datetime] = None
30
+
31
+ input: Optional[Dict[str, object]] = None
32
+
33
+ object: Optional[Literal["span"]] = None
34
+
35
+ output: Optional[Dict[str, builtins.object]] = None
36
+
37
+ parent_id: Optional[str] = None
38
+ """Reference to a parent span_id"""
@@ -0,0 +1,58 @@
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
6
+ from datetime import datetime
7
+ from typing_extensions import Required, Annotated, TypeAlias, TypedDict
8
+
9
+ from .._utils import PropertyInfo
10
+
11
+ __all__ = ["SpanCreateParams", "BaseSpanCreateRequest", "LegacyApplicationSpanCreateRequest"]
12
+
13
+
14
+ class BaseSpanCreateRequest(TypedDict, total=False):
15
+ name: Required[str]
16
+
17
+ start_timestamp: Required[Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]]
18
+
19
+ trace_id: Required[str]
20
+ """id for grouping traces together, uuid is recommended"""
21
+
22
+ data: Dict[str, object]
23
+
24
+ end_timestamp: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
25
+
26
+ input: Dict[str, object]
27
+
28
+ output: Dict[str, object]
29
+
30
+ parent_id: str
31
+ """Reference to a parent span_id"""
32
+
33
+
34
+ class LegacyApplicationSpanCreateRequest(TypedDict, total=False):
35
+ application_interaction_id: Required[str]
36
+
37
+ application_variant_id: Required[str]
38
+
39
+ name: Required[str]
40
+
41
+ start_timestamp: Required[Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]]
42
+
43
+ trace_id: Required[str]
44
+ """id for grouping traces together, uuid is recommended"""
45
+
46
+ data: Dict[str, object]
47
+
48
+ end_timestamp: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
49
+
50
+ input: Dict[str, object]
51
+
52
+ output: Dict[str, object]
53
+
54
+ parent_id: str
55
+ """Reference to a parent span_id"""
56
+
57
+
58
+ SpanCreateParams: TypeAlias = Union[BaseSpanCreateRequest, LegacyApplicationSpanCreateRequest]
@@ -0,0 +1,26 @@
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 Optional
6
+ from typing_extensions import TypedDict
7
+
8
+ __all__ = ["SpanListParams"]
9
+
10
+
11
+ class SpanListParams(TypedDict, total=False):
12
+ ending_before: Optional[str]
13
+
14
+ from_ts: int
15
+ """The starting (oldest) timestamp window in seconds."""
16
+
17
+ limit: int
18
+
19
+ parents_only: Optional[bool]
20
+
21
+ starting_after: Optional[str]
22
+
23
+ to_ts: int
24
+ """The ending (most recent) timestamp in seconds."""
25
+
26
+ trace_id: Optional[str]
@@ -0,0 +1,21 @@
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
6
+ from datetime import datetime
7
+ from typing_extensions import Annotated, TypedDict
8
+
9
+ from .._utils import PropertyInfo
10
+
11
+ __all__ = ["SpanUpdateParams"]
12
+
13
+
14
+ class SpanUpdateParams(TypedDict, total=False):
15
+ data: Dict[str, object]
16
+
17
+ end_timestamp: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
18
+
19
+ name: str
20
+
21
+ output: Dict[str, object]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: scale-gp-beta
3
- Version: 0.1.0a9
3
+ Version: 0.1.0a11
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
@@ -59,10 +59,10 @@ import os
59
59
  from scale_gp_beta import SGPClient
60
60
 
61
61
  client = SGPClient(
62
+ account_id="My Account ID",
62
63
  api_key=os.environ.get("SGP_API_KEY"), # This is the default and can be omitted
63
64
  # defaults to "production".
64
65
  environment="development",
65
- account_id="My Account ID",
66
66
  )
67
67
 
68
68
  completion = client.chat.completions.create(
@@ -87,10 +87,10 @@ import asyncio
87
87
  from scale_gp_beta import AsyncSGPClient
88
88
 
89
89
  client = AsyncSGPClient(
90
+ account_id="My Account ID",
90
91
  api_key=os.environ.get("SGP_API_KEY"), # This is the default and can be omitted
91
92
  # defaults to "production".
92
93
  environment="development",
93
- account_id="My Account ID",
94
94
  )
95
95
 
96
96
 
@@ -252,7 +252,7 @@ print(inference.inference_configuration)
252
252
 
253
253
  ## File uploads
254
254
 
255
- Request parameters that correspond to file uploads can be passed as `bytes`, a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance or a tuple of `(filename, contents, media type)`.
255
+ Request parameters that correspond to file uploads can be passed as `bytes`, or a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance or a tuple of `(filename, contents, media type)`.
256
256
 
257
257
  ```python
258
258
  from pathlib import Path
@@ -328,9 +328,9 @@ from scale_gp_beta import SGPClient
328
328
 
329
329
  # Configure the default for all requests:
330
330
  client = SGPClient(
331
+ account_id="My Account ID",
331
332
  # default is 2
332
333
  max_retries=0,
333
- account_id="My Account ID",
334
334
  )
335
335
 
336
336
  # Or, configure per-request:
@@ -350,15 +350,15 @@ from scale_gp_beta import SGPClient
350
350
 
351
351
  # Configure the default for all requests:
352
352
  client = SGPClient(
353
+ account_id="My Account ID",
353
354
  # 20 seconds (default is 1 minute)
354
355
  timeout=20.0,
355
- account_id="My Account ID",
356
356
  )
357
357
 
358
358
  # More granular control:
359
359
  client = SGPClient(
360
- timeout=httpx.Timeout(60.0, read=5.0, write=10.0, connect=2.0),
361
360
  account_id="My Account ID",
361
+ timeout=httpx.Timeout(60.0, read=5.0, write=10.0, connect=2.0),
362
362
  )
363
363
 
364
364
  # Override per-request:
@@ -490,13 +490,13 @@ import httpx
490
490
  from scale_gp_beta import SGPClient, DefaultHttpxClient
491
491
 
492
492
  client = SGPClient(
493
+ account_id="My Account ID",
493
494
  # Or use the `SGP_CLIENT_BASE_URL` env var
494
495
  base_url="http://my.test.server.example.com:8083",
495
496
  http_client=DefaultHttpxClient(
496
497
  proxy="http://my.test.proxy.example.com",
497
498
  transport=httpx.HTTPTransport(local_address="0.0.0.0"),
498
499
  ),
499
- account_id="My Account ID",
500
500
  )
501
501
  ```
502
502
 
@@ -1,17 +1,17 @@
1
1
  scale_gp_beta/__init__.py,sha256=XmzYbUteZA7f7EPIFNKcPSnSgFpK6ovSlHY57Xk-WGo,2535
2
- scale_gp_beta/_base_client.py,sha256=gMRzeMNQ9Z7kaex2ofZ7U0pd-E-7M754bDa7cVhQXvo,64964
3
- scale_gp_beta/_client.py,sha256=WH_GKR0FzRkvcJ4JqsqEOHT40JDJPI_uXN1bUo8UsXQ,24029
2
+ scale_gp_beta/_base_client.py,sha256=8GtHz6aZm1Bzodrvusazgq3JJMpTHsCNyuUEw86he8M,64851
3
+ scale_gp_beta/_client.py,sha256=3pNXJs9TKLjfYoTjFIIoSdd4mwwX1cc-VUveMBmkl_8,24491
4
4
  scale_gp_beta/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
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=VHiUi-XDLm5MK8EbVoB2TdgX3jbYshIfxYLeKv5jaYI,3620
8
- scale_gp_beta/_models.py,sha256=Bg-k8-T1kDWURAYXrbDF5FSAyLEy7k90Jrvne-dF4Wc,29070
8
+ scale_gp_beta/_models.py,sha256=mB2r2VWQq49jG-F0RIXDrBxPp3v-Eg12wMOtVTNxtv4,29057
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
- scale_gp_beta/_response.py,sha256=ATtij8CjXVjmhdOWozU9Y0SP4Q_uxCYGFUHroxFnSc4,28853
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=EreOLJxNL1xIbxwo55WDcSBH-QRjrwyBmLk6MWaoLPA,173
14
+ scale_gp_beta/_version.py,sha256=mODcLQ7YXuAUUS-DJtjwA5JDqLi0iX-NsPL3W6BhJLY,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
@@ -20,29 +20,30 @@ scale_gp_beta/_utils/_proxy.py,sha256=z3zsateHtb0EARTWKk8QZNHfPkqJbqwd1lM993LBwG
20
20
  scale_gp_beta/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
21
21
  scale_gp_beta/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
22
22
  scale_gp_beta/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
23
- scale_gp_beta/_utils/_transform.py,sha256=asrbdx4Pf5NupzaB8QdEjypW_DgHjjkpswHT0Jum4S0,13987
24
- scale_gp_beta/_utils/_typing.py,sha256=nTJz0jcrQbEgxwy4TtAkNxuU0QHHlmc6mQtA6vIR8tg,4501
25
- scale_gp_beta/_utils/_utils.py,sha256=8UmbPOy_AAr2uUjjFui-VZSrVBHRj6bfNEKRp5YZP2A,12004
23
+ scale_gp_beta/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
24
+ scale_gp_beta/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
25
+ scale_gp_beta/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
26
26
  scale_gp_beta/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
27
- scale_gp_beta/resources/__init__.py,sha256=NiCRW8_9HIIv6qZVCu0INsQm3oM50kEX5bLFRmor1bI,4505
28
- scale_gp_beta/resources/completions.py,sha256=dk7Uvl8dnnieRWTJr2fhzJMZwOzGIjsYSw2GjaMWlCs,31653
29
- scale_gp_beta/resources/dataset_items.py,sha256=BOx6ddLcDvL5L9HweCY62QnxflAs1jQJC-Ni-xzMUf0,22361
30
- scale_gp_beta/resources/datasets.py,sha256=tE2JKxlHc48Sm-SpySH4f265CxCBlaHWT68jKiJKJc8,20717
31
- scale_gp_beta/resources/evaluation_items.py,sha256=iD-srR9ZQQ3WAutxA98_MMj4_1h-B1_lZ_Ujb9F6Ino,11460
32
- scale_gp_beta/resources/evaluations.py,sha256=dC7qgS_dO-znb0OlMqYoXSkC-APtEtKbycnXFLzCZfE,26236
33
- scale_gp_beta/resources/inference.py,sha256=_20eN0x0PZBPNLx2VrozQrJgRVjtlXPjeTpTcnuP0bU,7576
34
- scale_gp_beta/resources/models.py,sha256=85F8qPJN9lBPbfNm9F8bHpdJSsyekS9B3GDPJtCXaMA,32658
27
+ scale_gp_beta/resources/__init__.py,sha256=Fyo05_2_pc5orfyTSIpxa3btmBTd45VasgibwSqbbKo,4942
28
+ scale_gp_beta/resources/completions.py,sha256=4esj9lGTJAxt6wFvON126DvEGkMIChRZ6uZBOf56Aac,31868
29
+ scale_gp_beta/resources/dataset_items.py,sha256=NDgojjDkmFtJqWTxMNvIPKk21ermXvX18cfY8Gtf3x0,22348
30
+ scale_gp_beta/resources/datasets.py,sha256=NBYaSP9G3xxENCpM3jQg1cEpvLu6XNzAOfs3YzVmYV8,21229
31
+ scale_gp_beta/resources/evaluation_items.py,sha256=r5BYvQKd3T2ucrjtJgYeeLtiH0Ay72MpDs6rmgELMfo,11447
32
+ scale_gp_beta/resources/evaluations.py,sha256=n8QQ1SDO7wehTRG_zRQsj5KNTn3GP_6p117VYUSGtOw,26989
33
+ scale_gp_beta/resources/inference.py,sha256=w1JD8S5P_SxhOtj1vDyg-23uP72zVVVU6lKU_YbqX4U,7563
34
+ scale_gp_beta/resources/models.py,sha256=hpbrASdfOjJY3zk1lliqnwOJ-IAvLEU5mi4ZQs-_YsU,32641
35
+ scale_gp_beta/resources/spans.py,sha256=2lEcw6jLLlydMroyRqykvzrqCY_1uKUSd1rIRFdyFAo,24717
35
36
  scale_gp_beta/resources/chat/__init__.py,sha256=BVAfz9TM3DT5W9f_mt0P9YRxL_MsUxKCWAH6u1iogmA,1041
36
37
  scale_gp_beta/resources/chat/chat.py,sha256=4OG_TrwVqYvV-7Ha8Nbc6iuXQuys9wKXgkxYmE6p6jk,3672
37
- scale_gp_beta/resources/chat/completions.py,sha256=ZPa4-9RNKTXldq2VjWahNrlXeO_jYGswyPzgWlPuAVQ,46581
38
+ scale_gp_beta/resources/chat/completions.py,sha256=U8WYjCwIHyGtqx7Hay8I44nBr4pLYolYIsAzddwEDiE,46796
38
39
  scale_gp_beta/resources/files/__init__.py,sha256=VgAtqUimN5Kf_-lmEaNBnu_ApGegKsJQ1zNf-42MXFA,1002
39
40
  scale_gp_beta/resources/files/content.py,sha256=oJxb-28ZOUBgzE_MiAaJOcKFmtlB-N5APdhfZBNJna8,5762
40
- scale_gp_beta/resources/files/files.py,sha256=M8OdZoIi3fFjJL7oIn8w9TD6TVcASCMy1Ze1YZRbPMo,20530
41
- scale_gp_beta/types/__init__.py,sha256=jpEo2h6GCwTrINBXL3MKAf3vVyhWnfekfVc9aC8G_CU,3254
41
+ scale_gp_beta/resources/files/files.py,sha256=78wqCwXRprEx-35voYSWeXB8hokeaMkDn2-akm5F8gw,20509
42
+ scale_gp_beta/types/__init__.py,sha256=PXswtuIKTn38CCRpTeJhV_H8JH68A038rpKKwTmyd9Q,3486
42
43
  scale_gp_beta/types/completion.py,sha256=5eewo25sdqL4vutqvE8wmugE0Cw6YLzZ0_AD6yjP9NM,3259
43
44
  scale_gp_beta/types/completion_create_params.py,sha256=LE9vna29Kbh7E8qUq7EhQbcu7YuCF_h663maKtzOnhk,3063
44
- scale_gp_beta/types/dataset.py,sha256=uTlOPgxkzpiAFOr_NOOYqhTsrqOKkOyXvxzczIe9gaE,511
45
- scale_gp_beta/types/dataset_create_params.py,sha256=k-JIiwO_4rSM3jzOpgq5d_7i7VSt3tik-kvAt1PXzfI,436
45
+ scale_gp_beta/types/dataset.py,sha256=7hm3W_rGtGYLWWCxH_Wto0h74Ea2XSRzaYBSO0jYU74,584
46
+ scale_gp_beta/types/dataset_create_params.py,sha256=e8AftX5klhylAU-pseKOqaL6Fkdjq_xtFlPkewTTMfM,509
46
47
  scale_gp_beta/types/dataset_delete_response.py,sha256=Lc4K761LM__hosWI3gYjYnEl5JXL-cg4DU3lXKhtQoo,345
47
48
  scale_gp_beta/types/dataset_item.py,sha256=b4w5G099vEVyj8GNVnjNn-3SkZoFHvlmCXxfQS7I_nM,519
48
49
  scale_gp_beta/types/dataset_item_batch_create_params.py,sha256=ORwWuIFKilxhuVhzcF32HD68E0-n5dnRlbyxUk4H3Ko,478
@@ -53,10 +54,10 @@ scale_gp_beta/types/dataset_item_retrieve_params.py,sha256=VuTBMASWQdWYKmpY06olX
53
54
  scale_gp_beta/types/dataset_item_update_params.py,sha256=4voEG9nKbxREiFRLzWqXZAWsw3wIm4EU1cnvOmsvGRA,367
54
55
  scale_gp_beta/types/dataset_list_params.py,sha256=4rITQ1avOcQObS17cT0NDikOmF7Fd_rxkSlRIfzzfF4,387
55
56
  scale_gp_beta/types/dataset_retrieve_params.py,sha256=5tpzuzX6y1WKKxP2AbjYwwcATpB1eZCv4wZABG3baIQ,282
56
- scale_gp_beta/types/dataset_update_params.py,sha256=Aw7m-jat5P82qJGJgsuz6xx6nu96jYdfJnM_TR94PAE,287
57
- scale_gp_beta/types/evaluation.py,sha256=t1bx6J8unollQ_S1xL0_84BvmoaXAceQ42J3yPDuTW8,784
57
+ scale_gp_beta/types/dataset_update_params.py,sha256=8S4fyBybzmElV5345ByeP9lPIbw3WGUQg_mABM_YyLk,378
58
+ scale_gp_beta/types/evaluation.py,sha256=HgTyrOFu5NVBy3dukLIeoVaeg3iIItJH-NucczAcF7E,851
58
59
  scale_gp_beta/types/evaluation_archive_response.py,sha256=SkGy3GourPaQRPt84smBd1XhwZqeDTDINK7PtyEEpSY,356
59
- scale_gp_beta/types/evaluation_create_params.py,sha256=1thnDWVjogRI_CaBQvkyBXdd0o8L1YYw0HXC3IM4Cxg,2431
60
+ scale_gp_beta/types/evaluation_create_params.py,sha256=Pcl0wtuuW6TvJrsYf7w5hjGx4ForJ6UE5oJpp3OEgeg,2699
60
61
  scale_gp_beta/types/evaluation_item.py,sha256=KENQ19JXAEGD0q82HwQ6GDx69giPmzP0h0Uo8ehWF8w,603
61
62
  scale_gp_beta/types/evaluation_item_list_params.py,sha256=LquF3dWIU6b7O_Sy_b0R2FMk5XC-Jm6mEHLJGUOKLuk,435
62
63
  scale_gp_beta/types/evaluation_item_retrieve_params.py,sha256=UYEKIAQ4dy92ZOSV1tWDZcvXG7_0BSpOND5Ehzs7QM4,296
@@ -80,13 +81,17 @@ scale_gp_beta/types/model_create_params.py,sha256=K04FNqloYYTwffMHnNLRnrPNOKPgG7
80
81
  scale_gp_beta/types/model_delete_response.py,sha256=fSpTChRLHPOoc9SJbkS4wcLxVOc3kKBOya8wkGow5pY,339
81
82
  scale_gp_beta/types/model_list_params.py,sha256=617LRolXLNCV8kadHK7XRGN-0woh0mvj88ZSbPLdGDg,702
82
83
  scale_gp_beta/types/model_update_params.py,sha256=RFXvs-EIDHmNO-fnPB8H6B9DlK6bYVsiwFDMPPFHGII,3701
84
+ scale_gp_beta/types/span.py,sha256=SeQzIFtCM2q3-4wHy-uzQOoEXRJnA1awxoHZH3-0h9E,792
85
+ scale_gp_beta/types/span_create_params.py,sha256=KZu7-6WNpXOYr5J-1AMRdnzMsTzgQBRvUvsuRedbxQc,1588
86
+ scale_gp_beta/types/span_list_params.py,sha256=VVvM3RorGHaH3YEEcPdUJjNDU9uxUrIFqvmexh2Re9Q,568
87
+ scale_gp_beta/types/span_update_params.py,sha256=pz03g-tLO_nziLUqZOtDMI-6HTlxvzayFEoISXDx9jw,510
83
88
  scale_gp_beta/types/chat/__init__.py,sha256=DA0PFPt0oaPb25RI7Cs3RQEJfDLg5-qBiU8l0S_3nnw,443
84
89
  scale_gp_beta/types/chat/chat_completion.py,sha256=oYOrsTBdGwV9e_mF4F06XmdyZI4pyw06IQ-0mFn0etk,8250
85
90
  scale_gp_beta/types/chat/chat_completion_chunk.py,sha256=57-i6LyOk6IX2HZvXsoUC26e0D0dVBNQjX_GbT0eKEw,7060
86
91
  scale_gp_beta/types/chat/completion_create_params.py,sha256=Y7vJNvNM4Sov77l55aS5YtyRnrf7isediu3nKr6YE-A,4505
87
92
  scale_gp_beta/types/chat/completion_create_response.py,sha256=0OhfoJW8azVRrZdXRRMuiJ7kEEeMDnKScxrr3sayzDo,374
88
93
  scale_gp_beta/types/files/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
89
- scale_gp_beta-0.1.0a9.dist-info/METADATA,sha256=AZQrqd4p2qgSu3nxARiWbXUEem9nVYveVwvOBd2g3vQ,16938
90
- scale_gp_beta-0.1.0a9.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
91
- scale_gp_beta-0.1.0a9.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
92
- scale_gp_beta-0.1.0a9.dist-info/RECORD,,
94
+ scale_gp_beta-0.1.0a11.dist-info/METADATA,sha256=SdvTUqYYe0ZNeAhUEiyFLYpEGXUmiq5lZ7mHgEjkPts,16942
95
+ scale_gp_beta-0.1.0a11.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
96
+ scale_gp_beta-0.1.0a11.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
97
+ scale_gp_beta-0.1.0a11.dist-info/RECORD,,