scale-gp-beta 0.1.0a33__py3-none-any.whl → 0.1.0a34__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.
@@ -14,16 +14,21 @@ from .component import Component as Component
14
14
  from .container import Container as Container
15
15
  from .span_type import SpanType as SpanType
16
16
  from .completion import Completion as Completion
17
+ from .credential import Credential as Credential
17
18
  from .evaluation import Evaluation as Evaluation
18
19
  from .span_status import SpanStatus as SpanStatus
19
20
  from .dataset_item import DatasetItem as DatasetItem
20
21
  from .item_locator import ItemLocator as ItemLocator
22
+ from .approval_status import ApprovalStatus as ApprovalStatus
23
+ from .assessment_type import AssessmentType as AssessmentType
21
24
  from .component_param import ComponentParam as ComponentParam
22
25
  from .container_param import ContainerParam as ContainerParam
23
26
  from .evaluation_item import EvaluationItem as EvaluationItem
24
27
  from .evaluation_task import EvaluationTask as EvaluationTask
25
28
  from .inference_model import InferenceModel as InferenceModel
29
+ from .span_assessment import SpanAssessment as SpanAssessment
26
30
  from .file_list_params import FileListParams as FileListParams
31
+ from .credential_secret import CredentialSecret as CredentialSecret
27
32
  from .model_list_params import ModelListParams as ModelListParams
28
33
  from .span_batch_params import SpanBatchParams as SpanBatchParams
29
34
  from .file_create_params import FileCreateParams as FileCreateParams
@@ -43,6 +48,7 @@ from .dataset_update_params import DatasetUpdateParams as DatasetUpdateParams
43
48
  from .evaluation_task_param import EvaluationTaskParam as EvaluationTaskParam
44
49
  from .item_locator_template import ItemLocatorTemplate as ItemLocatorTemplate
45
50
  from .model_delete_response import ModelDeleteResponse as ModelDeleteResponse
51
+ from .credential_list_params import CredentialListParams as CredentialListParams
46
52
  from .evaluation_list_params import EvaluationListParams as EvaluationListParams
47
53
  from .question_create_params import QuestionCreateParams as QuestionCreateParams
48
54
  from .response_create_params import ResponseCreateParams as ResponseCreateParams
@@ -50,6 +56,8 @@ from .dataset_delete_response import DatasetDeleteResponse as DatasetDeleteRespo
50
56
  from .dataset_retrieve_params import DatasetRetrieveParams as DatasetRetrieveParams
51
57
  from .inference_create_params import InferenceCreateParams as InferenceCreateParams
52
58
  from .completion_create_params import CompletionCreateParams as CompletionCreateParams
59
+ from .credential_create_params import CredentialCreateParams as CredentialCreateParams
60
+ from .credential_update_params import CredentialUpdateParams as CredentialUpdateParams
53
61
  from .dataset_item_list_params import DatasetItemListParams as DatasetItemListParams
54
62
  from .evaluation_create_params import EvaluationCreateParams as EvaluationCreateParams
55
63
  from .evaluation_update_params import EvaluationUpdateParams as EvaluationUpdateParams
@@ -57,14 +65,18 @@ from .inference_response_chunk import InferenceResponseChunk as InferenceRespons
57
65
  from .response_create_response import ResponseCreateResponse as ResponseCreateResponse
58
66
  from .span_upsert_batch_params import SpanUpsertBatchParams as SpanUpsertBatchParams
59
67
  from .inference_create_response import InferenceCreateResponse as InferenceCreateResponse
68
+ from .credential_delete_response import CredentialDeleteResponse as CredentialDeleteResponse
60
69
  from .dataset_item_update_params import DatasetItemUpdateParams as DatasetItemUpdateParams
61
- from .evaluation_delete_response import EvaluationDeleteResponse as EvaluationDeleteResponse
62
70
  from .evaluation_retrieve_params import EvaluationRetrieveParams as EvaluationRetrieveParams
63
71
  from .span_upsert_batch_response import SpanUpsertBatchResponse as SpanUpsertBatchResponse
64
72
  from .evaluation_item_list_params import EvaluationItemListParams as EvaluationItemListParams
73
+ from .span_assessment_list_params import SpanAssessmentListParams as SpanAssessmentListParams
65
74
  from .dataset_item_delete_response import DatasetItemDeleteResponse as DatasetItemDeleteResponse
66
75
  from .dataset_item_retrieve_params import DatasetItemRetrieveParams as DatasetItemRetrieveParams
76
+ from .span_assessment_create_params import SpanAssessmentCreateParams as SpanAssessmentCreateParams
77
+ from .span_assessment_update_params import SpanAssessmentUpdateParams as SpanAssessmentUpdateParams
67
78
  from .evaluation_item_retrieve_params import EvaluationItemRetrieveParams as EvaluationItemRetrieveParams
79
+ from .span_assessment_delete_response import SpanAssessmentDeleteResponse as SpanAssessmentDeleteResponse
68
80
  from .dataset_item_batch_create_params import DatasetItemBatchCreateParams as DatasetItemBatchCreateParams
69
81
  from .dataset_item_batch_create_response import DatasetItemBatchCreateResponse as DatasetItemBatchCreateResponse
70
82
 
@@ -0,0 +1,7 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing_extensions import Literal, TypeAlias
4
+
5
+ __all__ = ["ApprovalStatus"]
6
+
7
+ ApprovalStatus: TypeAlias = Literal["approved", "rejected"]
@@ -0,0 +1,7 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing_extensions import Literal, TypeAlias
4
+
5
+ __all__ = ["AssessmentType"]
6
+
7
+ AssessmentType: TypeAlias = Literal["comment", "rating", "approval", "rubric", "metadata", "overwrite"]
@@ -0,0 +1,30 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Dict, Optional
4
+ from datetime import datetime
5
+
6
+ from .._models import BaseModel
7
+
8
+ __all__ = ["Credential"]
9
+
10
+
11
+ class Credential(BaseModel):
12
+ id: str
13
+
14
+ created_at: datetime
15
+
16
+ created_by_identity_type: str
17
+
18
+ created_by_user_id: str
19
+
20
+ credential_metadata: Dict[str, object]
21
+
22
+ description: str
23
+
24
+ name: str
25
+
26
+ type: str
27
+
28
+ updated_at: datetime
29
+
30
+ object: Optional[str] = None
@@ -0,0 +1,25 @@
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
6
+ from typing_extensions import Required, TypedDict
7
+
8
+ __all__ = ["CredentialCreateParams"]
9
+
10
+
11
+ class CredentialCreateParams(TypedDict, total=False):
12
+ name: Required[str]
13
+ """User-friendly name for the credential"""
14
+
15
+ payload: Required[str]
16
+ """The credential payload to be encrypted"""
17
+
18
+ type: Required[str]
19
+ """Type of credential: key or json"""
20
+
21
+ credential_metadata: Dict[str, object]
22
+ """Optional unencrypted credential_metadata"""
23
+
24
+ description: str
25
+ """Optional description"""
@@ -2,10 +2,10 @@
2
2
 
3
3
  from .._models import BaseModel
4
4
 
5
- __all__ = ["EvaluationDeleteResponse"]
5
+ __all__ = ["CredentialDeleteResponse"]
6
6
 
7
7
 
8
- class EvaluationDeleteResponse(BaseModel):
8
+ class CredentialDeleteResponse(BaseModel):
9
9
  id: str
10
10
 
11
11
  deleted: bool
@@ -0,0 +1,20 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Literal, TypedDict
6
+
7
+ __all__ = ["CredentialListParams"]
8
+
9
+
10
+ class CredentialListParams(TypedDict, total=False):
11
+ ending_before: str
12
+
13
+ limit: int
14
+
15
+ name: str
16
+ """Filter credentials by name"""
17
+
18
+ sort_order: Literal["asc", "desc"]
19
+
20
+ starting_after: str
@@ -0,0 +1,13 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Optional
4
+
5
+ from .._models import BaseModel
6
+
7
+ __all__ = ["CredentialSecret"]
8
+
9
+
10
+ class CredentialSecret(BaseModel):
11
+ result: str
12
+
13
+ object: Optional[str] = None
@@ -0,0 +1,25 @@
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
6
+ from typing_extensions import TypedDict
7
+
8
+ __all__ = ["CredentialUpdateParams"]
9
+
10
+
11
+ class CredentialUpdateParams(TypedDict, total=False):
12
+ credential_metadata: Dict[str, object]
13
+ """Optional unencrypted credential_metadata"""
14
+
15
+ description: str
16
+ """Optional description"""
17
+
18
+ name: str
19
+ """User-friendly name for the credential"""
20
+
21
+ payload: str
22
+ """The credential payload to be encrypted"""
23
+
24
+ type: str
25
+ """Type of credential: key or json"""
@@ -2,17 +2,26 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing_extensions import TypedDict
5
+ from typing import Union
6
+ from typing_extensions import Literal, Required, TypeAlias, TypedDict
6
7
 
7
8
  from .._types import SequenceNotStr
8
9
 
9
- __all__ = ["EvaluationUpdateParams"]
10
+ __all__ = ["EvaluationUpdateParams", "PartialEvaluationUpdateRequest", "RestoreRequest"]
10
11
 
11
12
 
12
- class EvaluationUpdateParams(TypedDict, total=False):
13
+ class PartialEvaluationUpdateRequest(TypedDict, total=False):
13
14
  description: str
14
15
 
15
16
  name: str
16
17
 
17
18
  tags: SequenceNotStr[str]
18
19
  """The tags associated with the entity"""
20
+
21
+
22
+ class RestoreRequest(TypedDict, total=False):
23
+ restore: Required[Literal[True]]
24
+ """Set to true to restore the entity from the database."""
25
+
26
+
27
+ EvaluationUpdateParams: TypeAlias = Union[PartialEvaluationUpdateRequest, RestoreRequest]
@@ -0,0 +1,72 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ import builtins
4
+ from typing import TYPE_CHECKING, Dict, Optional
5
+ from datetime import datetime
6
+ from typing_extensions import Literal
7
+
8
+ from pydantic import Field as FieldInfo
9
+
10
+ from .._models import BaseModel
11
+ from .approval_status import ApprovalStatus
12
+ from .assessment_type import AssessmentType
13
+
14
+ __all__ = ["SpanAssessment"]
15
+
16
+
17
+ class SpanAssessment(BaseModel):
18
+ assessment_id: str
19
+ """Unique identifier for the assessment"""
20
+
21
+ assessment_type: AssessmentType
22
+ """Type of assessment"""
23
+
24
+ created_by: str
25
+ """User who submitted the assessment"""
26
+
27
+ span_id: str
28
+ """The span this assessment is attached to"""
29
+
30
+ trace_id: str
31
+ """The trace this assessment is attached to"""
32
+
33
+ account_id: Optional[str] = None
34
+ """Account this assessment belongs to"""
35
+
36
+ approval: Optional[ApprovalStatus] = None
37
+ """Approval status (approved/rejected)"""
38
+
39
+ comment: Optional[str] = None
40
+ """Raw text feedback"""
41
+
42
+ created_at: Optional[datetime] = None
43
+ """When this assessment was created"""
44
+
45
+ metadata: Optional[Dict[str, object]] = None
46
+ """Arbitrary JSON object for additional data"""
47
+
48
+ object: Optional[Literal["span.assessment"]] = None
49
+
50
+ overwrite: Optional[Dict[str, builtins.object]] = None
51
+ """User corrections to span output"""
52
+
53
+ rating: Optional[int] = None
54
+ """Numerical rating (1-5)"""
55
+
56
+ rubric: Optional[Dict[str, str]] = None
57
+ """Rule key-value pairs for rubric evaluation"""
58
+
59
+ updated_at: Optional[datetime] = None
60
+ """When this assessment was last updated"""
61
+
62
+ if TYPE_CHECKING:
63
+ # Some versions of Pydantic <2.8.0 have a bug and don’t allow assigning a
64
+ # value to this field, so for compatibility we avoid doing it at runtime.
65
+ __pydantic_extra__: Dict[str, builtins.object] = FieldInfo(init=False) # pyright: ignore[reportIncompatibleVariableOverride]
66
+
67
+ # Stub to indicate that arbitrary properties are accepted.
68
+ # To access properties that are not valid identifiers you can use `getattr`, e.g.
69
+ # `getattr(obj, '$type')`
70
+ def __getattr__(self, attr: str) -> builtins.object: ...
71
+ else:
72
+ __pydantic_extra__: Dict[str, builtins.object]
@@ -0,0 +1,40 @@
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
6
+ from typing_extensions import Required, TypedDict
7
+
8
+ from .approval_status import ApprovalStatus
9
+ from .assessment_type import AssessmentType
10
+
11
+ __all__ = ["SpanAssessmentCreateParams"]
12
+
13
+
14
+ class SpanAssessmentCreateParams(TypedDict, total=False):
15
+ assessment_type: Required[AssessmentType]
16
+ """Type of assessment"""
17
+
18
+ span_id: Required[str]
19
+ """The ID of the span this assessment is attached to"""
20
+
21
+ trace_id: Required[str]
22
+ """The ID of the trace this assessment is attached to"""
23
+
24
+ approval: ApprovalStatus
25
+ """Approval status (approved/rejected)"""
26
+
27
+ comment: str
28
+ """Raw text feedback"""
29
+
30
+ metadata: Dict[str, object]
31
+ """Arbitrary JSON object for additional data"""
32
+
33
+ overwrite: Dict[str, object]
34
+ """User corrections to span output"""
35
+
36
+ rating: int
37
+ """Numerical rating (1-5)"""
38
+
39
+ rubric: Dict[str, str]
40
+ """Rule key-value pairs for rubric evaluation"""
@@ -0,0 +1,13 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from .._models import BaseModel
4
+
5
+ __all__ = ["SpanAssessmentDeleteResponse"]
6
+
7
+
8
+ class SpanAssessmentDeleteResponse(BaseModel):
9
+ id: str
10
+
11
+ deleted: bool
12
+
13
+ object: str
@@ -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_extensions import TypedDict
6
+
7
+ from .assessment_type import AssessmentType
8
+
9
+ __all__ = ["SpanAssessmentListParams"]
10
+
11
+
12
+ class SpanAssessmentListParams(TypedDict, total=False):
13
+ assessment_type: AssessmentType
14
+ """Filter by assessment type"""
15
+
16
+ span_id: str
17
+ """Filter by span ID.
18
+
19
+ Either span_id or trace_id must be provided as a query parameter.
20
+ """
21
+
22
+ trace_id: str
23
+ """Filter by trace ID.
24
+
25
+ Either span_id or trace_id must be provided as a query parameter.
26
+ """
@@ -0,0 +1,34 @@
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
6
+ from typing_extensions import TypedDict
7
+
8
+ from .approval_status import ApprovalStatus
9
+ from .assessment_type import AssessmentType
10
+
11
+ __all__ = ["SpanAssessmentUpdateParams"]
12
+
13
+
14
+ class SpanAssessmentUpdateParams(TypedDict, total=False):
15
+ approval: ApprovalStatus
16
+ """Approval status (approved/rejected)"""
17
+
18
+ assessment_type: AssessmentType
19
+ """Type of assessment"""
20
+
21
+ comment: str
22
+ """Raw text feedback"""
23
+
24
+ metadata: Dict[str, object]
25
+ """Arbitrary JSON object for additional data"""
26
+
27
+ overwrite: Dict[str, object]
28
+ """User corrections to span output"""
29
+
30
+ rating: int
31
+ """Numerical rating (1-5)"""
32
+
33
+ rubric: Dict[str, str]
34
+ """Rule key-value pairs for rubric evaluation"""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: scale-gp-beta
3
- Version: 0.1.0a33
3
+ Version: 0.1.0a34
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,6 +1,6 @@
1
1
  scale_gp_beta/__init__.py,sha256=MFsKxnaLkZ-Rqv127bA2T0OpHD3me1OnwIom-0I2gB0,2742
2
2
  scale_gp_beta/_base_client.py,sha256=-akZ2LpczGs3fUHVZg3eDppkodX4ithhenKNhNp2nb8,67054
3
- scale_gp_beta/_client.py,sha256=Gbb0SurEtX0OrJ0NPKoULYSnWt9x0I3R01GobVeSpJg,25703
3
+ scale_gp_beta/_client.py,sha256=7JuikklooBzOCkrqjOInwwkPPHvkMZneilODQQ1JxLI,27168
4
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
@@ -11,7 +11,7 @@ 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=3-dTgyCs1Fep_LgdDCs7B_SYv9He9BYHJYJunweFT9U,7243
14
- scale_gp_beta/_version.py,sha256=f7maJKCHPH5qeQyJPcJ9JgUhJIIs6QMazClfxIXQXrk,174
14
+ scale_gp_beta/_version.py,sha256=-hdANg0MmPrBZC1r6ClfYk9xpwzx6f9FFAXrxR4SYEM,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
17
  scale_gp_beta/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
@@ -43,16 +43,18 @@ scale_gp_beta/lib/tracing/integrations/openai/__init__.py,sha256=47DEQpj8HBSa-_T
43
43
  scale_gp_beta/lib/tracing/integrations/openai/openai_span_type_map.py,sha256=WIPVdOd1aaVmenZuK3PJ7pZMnk_uJRX5vQXj0s6O9ow,792
44
44
  scale_gp_beta/lib/tracing/integrations/openai/openai_tracing_sgp_processor.py,sha256=o-Fp_V7U9cC1kKP0_750GQInKGlF7KAdpIbGTmyu2tg,5270
45
45
  scale_gp_beta/lib/tracing/integrations/openai/utils.py,sha256=s6tbNFJ3N7GjqXDM9f2f4r9ugz3wjO0OTU6KzlU_tLQ,2113
46
- scale_gp_beta/resources/__init__.py,sha256=JaGVUb2Ufumn2qeKZWN8z6Ec9wm4Rct6KnNef2DSPPE,5920
46
+ scale_gp_beta/resources/__init__.py,sha256=93-Ld9MSd_dX_jld0IQD_Ckm4n5NvoR2dy0AiNUYDrg,7003
47
47
  scale_gp_beta/resources/completions.py,sha256=wtVhUh5LMwXolICQhpeCZUlzRM-ChLSvLiQm92sO-EQ,30934
48
+ scale_gp_beta/resources/credentials.py,sha256=BDhz10_4Ag5bM_iZLGSCWzvdycxM4U3bAYATVml9JYQ,32743
48
49
  scale_gp_beta/resources/dataset_items.py,sha256=DGKu3067yVBuUkkR3xRnl0OLqPWY7TyWQd5hviYq5vk,22378
49
50
  scale_gp_beta/resources/datasets.py,sha256=6AN7ZETWP42xcVf-uWErzcOuPlKnkAQ1jrtIxzMDd3o,21631
50
51
  scale_gp_beta/resources/evaluation_items.py,sha256=tR8FtxCnxVdQzpAnPg9dYQkDZKXyCFe9zEXgk3cbrgw,11517
51
- scale_gp_beta/resources/evaluations.py,sha256=skWDqr0u9lM8LDc7Jg3rEq4numHjrpWlZnuIAzm2hDU,31992
52
+ scale_gp_beta/resources/evaluations.py,sha256=MZ21uvFaI-mFl6mOJP3Y1Xu1I6M0FtSwxKxwaZVKGOo,35442
52
53
  scale_gp_beta/resources/inference.py,sha256=Gwi7yt8BK47LFRbx9X4Ei4HLh3keZ5a37dHd2eONf4g,7539
53
54
  scale_gp_beta/resources/models.py,sha256=obGc4jz3k8Cxl7t218GPmq8HvODX911vc6-wGJ-cXSA,32247
54
55
  scale_gp_beta/resources/questions.py,sha256=ylrn_3waLErYzTZHiUkHVLynvKYwIBSRHxgJd0717yk,25828
55
56
  scale_gp_beta/resources/responses.py,sha256=ha6JeU1vCoxC4Z00jsbS1D7jEpxy-xlCiEkx5-RqrX0,11755
57
+ scale_gp_beta/resources/span_assessments.py,sha256=HOJ6qKtwXVPkgRLO8VmcfEoFWTAlAHl-SrjCpIDj7Ck,25560
56
58
  scale_gp_beta/resources/spans.py,sha256=ootzSRVA_1hYXOjADrKJ8uO7CwhwZsfYLVJHE83CnIE,32080
57
59
  scale_gp_beta/resources/chat/__init__.py,sha256=BVAfz9TM3DT5W9f_mt0P9YRxL_MsUxKCWAH6u1iogmA,1041
58
60
  scale_gp_beta/resources/chat/chat.py,sha256=4OG_TrwVqYvV-7Ha8Nbc6iuXQuys9wKXgkxYmE6p6jk,3672
@@ -60,13 +62,21 @@ scale_gp_beta/resources/chat/completions.py,sha256=NiseRADexm4sZrWBR1CnJZjY46M9q
60
62
  scale_gp_beta/resources/files/__init__.py,sha256=VgAtqUimN5Kf_-lmEaNBnu_ApGegKsJQ1zNf-42MXFA,1002
61
63
  scale_gp_beta/resources/files/content.py,sha256=QDtcnsK2my4-ndmwyaR6zyQnV1fEjIJ7CSDoyXUcYxg,5762
62
64
  scale_gp_beta/resources/files/files.py,sha256=vN1SNr5DouIX9SFKz7TchbPNTKT9aDCe_t9QQE28A4Y,20653
63
- scale_gp_beta/types/__init__.py,sha256=cG4tnrFqqFFWm_4MoItsB6NEcybIaLskCEX_4sEdIpg,5289
65
+ scale_gp_beta/types/__init__.py,sha256=krfTV2Vwq8tHS7PhegzeoshLL2lzxUxVAqi8RKX3T84,6247
66
+ scale_gp_beta/types/approval_status.py,sha256=rI70l7e2ey2ax8tR_sBkziVSirq_QaDDV1bHgNrfCWQ,227
67
+ scale_gp_beta/types/assessment_type.py,sha256=_4V6RZ5wUyU0UYrDjCoIRdaiiZtZVpY6DMsW1QClq-c,271
64
68
  scale_gp_beta/types/completion.py,sha256=1UOFGSkAmTCfhKGSQQLEU-PHGdnWLV1y0usa1UizBBQ,5406
65
69
  scale_gp_beta/types/completion_create_params.py,sha256=XWyto29VVJQ5nJTykSXPwlW5b4CZxGU7GSlk1hMwDxo,3114
66
70
  scale_gp_beta/types/component.py,sha256=0dLrvTEHpF628wZ-CIniOpsOzKfnLlaZy4OPIFDzoF0,403
67
71
  scale_gp_beta/types/component_param.py,sha256=6y4XFmRxDSoFo82Df9ej6rY1pQiq0lIByQXBjXK8kVA,445
68
72
  scale_gp_beta/types/container.py,sha256=LoH-zq7JI7dE_BGxUiqBgaS8XbUk2zzkC7ByUF9TzUw,891
69
73
  scale_gp_beta/types/container_param.py,sha256=fwIeOygG1QTG9queCSSJwXqx1F4xLtx7hKwH3wf3oMI,925
74
+ scale_gp_beta/types/credential.py,sha256=meNzxwLyxsBO1FITa0xVNONjfmW_aZhb-xbQw2HMqO4,499
75
+ scale_gp_beta/types/credential_create_params.py,sha256=BqpPxLS3rawzvm9vOsQHKWGn901eySz45tFo0KgP5FY,655
76
+ scale_gp_beta/types/credential_delete_response.py,sha256=QlyDqZ3L11hnEMpLJXRvlxLf3YFDpC04ApQa2ZauBII,252
77
+ scale_gp_beta/types/credential_list_params.py,sha256=3yh0VLCaD3PlON_zlddB7rnJsUGc8GU4odrpVMvlr2U,418
78
+ scale_gp_beta/types/credential_secret.py,sha256=xC-_rE4b-s2QJbduvE6DtVPXXI9yWzJ3IGjZB0IM4t4,267
79
+ scale_gp_beta/types/credential_update_params.py,sha256=kZKaZVgBShHxoYVNqWAUo2ZWKN7bcau4Ym3ckYs9_VU,615
70
80
  scale_gp_beta/types/dataset.py,sha256=wts1ygPfzuh5pyYZ12YxuJMxVd-yM5hF_ZNUYxpfbho,667
71
81
  scale_gp_beta/types/dataset_create_params.py,sha256=D754CiYUWu-yCGr0S1PxIGSIXolOYbpEME8OxIKJ8_I,550
72
82
  scale_gp_beta/types/dataset_delete_response.py,sha256=OKLcQBastV6fhdKw4kNX1HNn_IczD6OCpHDbkAyg3mM,246
@@ -82,7 +92,6 @@ scale_gp_beta/types/dataset_retrieve_params.py,sha256=5tpzuzX6y1WKKxP2AbjYwwcATp
82
92
  scale_gp_beta/types/dataset_update_params.py,sha256=fCci9UEzKEiXCoeH_QxmLRShmqn-EIbz-OkjicHgcfs,401
83
93
  scale_gp_beta/types/evaluation.py,sha256=M1cq-FW51SjvWCkNvX0YxmG7LF8A0bSbeWZGGCkM_2Q,1164
84
94
  scale_gp_beta/types/evaluation_create_params.py,sha256=lyc7smsbyaRWftdp2A3qIULYyq9m2Cgaq_wyqDD6gws,3068
85
- scale_gp_beta/types/evaluation_delete_response.py,sha256=ylihVlxOaUzxYrwhK2fM991ZmQuAKI9SYTlgUV9m4Ss,252
86
95
  scale_gp_beta/types/evaluation_item.py,sha256=a1bkOepT748Zs5VCF6FbsOOmX6vJHG-oUmLdxW3-UCE,686
87
96
  scale_gp_beta/types/evaluation_item_list_params.py,sha256=7sQVVKB87uO45lYuMUhGR6125a6rG19gYx6gckR7sxU,426
88
97
  scale_gp_beta/types/evaluation_item_retrieve_params.py,sha256=UYEKIAQ4dy92ZOSV1tWDZcvXG7_0BSpOND5Ehzs7QM4,296
@@ -90,7 +99,7 @@ scale_gp_beta/types/evaluation_list_params.py,sha256=Xe88rpcm2w-ufTR8bnJYJfk09Fi
90
99
  scale_gp_beta/types/evaluation_retrieve_params.py,sha256=_YuT-E2VO-f_SvHaIe24KBbhTNoK8T-3tVB6Ov6cqfg,356
91
100
  scale_gp_beta/types/evaluation_task.py,sha256=k2-Hg5EXWZSYB5_luuf_KPCYQr1HfOi5mFhAa0g4NUg,21563
92
101
  scale_gp_beta/types/evaluation_task_param.py,sha256=c21FaFoIO5di8YGcvYCLbNo0cz37VWanOnN83Fp3Bfg,20915
93
- scale_gp_beta/types/evaluation_update_params.py,sha256=P3HAAR2-Eb6lfxAcCbMezNKIdHr46CxFXmtSXvKCRQM,407
102
+ scale_gp_beta/types/evaluation_update_params.py,sha256=BcIkNNB_hKAzA9CEUyvxSBw5rRP6-o8seYPChaMABkg,762
94
103
  scale_gp_beta/types/file.py,sha256=vgbFpARZs5_UYOQZkWLur8rFvGM8EROUO_8Ig0uu2B0,611
95
104
  scale_gp_beta/types/file_create_params.py,sha256=KpXv6JCbd8BlgceTmBTewxOky2JTJaTW3mcGiVVU7wE,317
96
105
  scale_gp_beta/types/file_delete_response.py,sha256=IgZhHsKNfc9NqwqLTYrAam5APFuyquIEUVNQgsz4zyg,240
@@ -114,6 +123,11 @@ scale_gp_beta/types/response.py,sha256=urf4oYc5fUDQkiY6Xqrn9yInsdsBe_8UTRQhzEtGL
114
123
  scale_gp_beta/types/response_create_params.py,sha256=J1NmJi9BwkHAV2Ui1z5_YzrC54fZI8kShT5mWmOmcF0,28272
115
124
  scale_gp_beta/types/response_create_response.py,sha256=_S32F3x6GBEf_ICVD2bE1fsfZitb2nOYiDls5cFe7MA,1106716
116
125
  scale_gp_beta/types/span.py,sha256=ygHgE2DcK1Iqpg4oMa-Mx1XmZa7UBtDlfBPcPbq67Cg,1331
126
+ scale_gp_beta/types/span_assessment.py,sha256=yoRuUooLv7GRJn-jw7VhtvTKedp8Z-hGUoV1uwfjYic,2273
127
+ scale_gp_beta/types/span_assessment_create_params.py,sha256=DaPJNq2SjvwF9yCRJeaPRKL0nVayRAv8iJnP9Vg5Ndo,1055
128
+ scale_gp_beta/types/span_assessment_delete_response.py,sha256=GU7gLHHk0AJ4aSC00A_c16_aksItXjA2nVLGVILHM1o,260
129
+ scale_gp_beta/types/span_assessment_list_params.py,sha256=uWG6tcycpIKPApw11C9HG5dfZRO56eHUWz1b7PFg4Pg,626
130
+ scale_gp_beta/types/span_assessment_update_params.py,sha256=StwCobyVcnrZV1asDAxGEasXNEOiiHkD7DU1uD1n9PI,857
117
131
  scale_gp_beta/types/span_batch_params.py,sha256=TsV1LnFXDXLhZdggn1BmIjQtAc8DwD6i57cBLCnStK8,1317
118
132
  scale_gp_beta/types/span_batch_response.py,sha256=gNRJL9XVm5ELuIOWTCUbwwetxeD0s-M6JZi11USvBpU,354
119
133
  scale_gp_beta/types/span_create_params.py,sha256=z9hRw6kb5xZUJkR6q_JcdHX0i0BSnLAgn9IITxJojDY,1227
@@ -134,7 +148,7 @@ scale_gp_beta/types/chat/model_definition.py,sha256=OWcZ4StZ4K2wfL7FqHNK-HqxLjy9
134
148
  scale_gp_beta/types/files/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
135
149
  scale_gp_beta/types/shared/__init__.py,sha256=6-walu4YgOTaOj7wsidywTj67PyBJaNYFqasfiTP9-4,130
136
150
  scale_gp_beta/types/shared/identity.py,sha256=4XDoJjsPI4lkwyaYyNstw7OunIzJjVWujPoZPrNdoQA,348
137
- scale_gp_beta-0.1.0a33.dist-info/METADATA,sha256=639FjY5S0yzKyZ-tcmGADGr_KlPFCVDqV4s8_UPB2h0,28623
138
- scale_gp_beta-0.1.0a33.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
139
- scale_gp_beta-0.1.0a33.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
140
- scale_gp_beta-0.1.0a33.dist-info/RECORD,,
151
+ scale_gp_beta-0.1.0a34.dist-info/METADATA,sha256=B-16ODqeoxR5ncBMP1DWKSVJVXCXfKKauVhnlWVwS_I,28623
152
+ scale_gp_beta-0.1.0a34.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
153
+ scale_gp_beta-0.1.0a34.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
154
+ scale_gp_beta-0.1.0a34.dist-info/RECORD,,