scale-gp-beta 0.1.0a32__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.
Files changed (38) hide show
  1. scale_gp_beta/_client.py +20 -0
  2. scale_gp_beta/_version.py +1 -1
  3. scale_gp_beta/resources/__init__.py +28 -0
  4. scale_gp_beta/resources/credentials.py +853 -0
  5. scale_gp_beta/resources/evaluations.py +104 -9
  6. scale_gp_beta/resources/span_assessments.py +675 -0
  7. scale_gp_beta/resources/spans.py +24 -0
  8. scale_gp_beta/types/__init__.py +13 -4
  9. scale_gp_beta/types/approval_status.py +7 -0
  10. scale_gp_beta/types/assessment_type.py +7 -0
  11. scale_gp_beta/types/credential.py +30 -0
  12. scale_gp_beta/types/credential_create_params.py +25 -0
  13. scale_gp_beta/types/credential_delete_response.py +13 -0
  14. scale_gp_beta/types/credential_list_params.py +20 -0
  15. scale_gp_beta/types/credential_secret.py +13 -0
  16. scale_gp_beta/types/credential_update_params.py +25 -0
  17. scale_gp_beta/types/dataset_delete_response.py +1 -4
  18. scale_gp_beta/types/dataset_item_delete_response.py +1 -4
  19. scale_gp_beta/types/evaluation_create_params.py +1 -1
  20. scale_gp_beta/types/evaluation_task.py +182 -0
  21. scale_gp_beta/types/evaluation_task_param.py +192 -0
  22. scale_gp_beta/types/evaluation_update_params.py +12 -3
  23. scale_gp_beta/types/file_delete_response.py +1 -4
  24. scale_gp_beta/types/model_delete_response.py +1 -4
  25. scale_gp_beta/types/span_assessment.py +72 -0
  26. scale_gp_beta/types/span_assessment_create_params.py +40 -0
  27. scale_gp_beta/types/span_assessment_delete_response.py +13 -0
  28. scale_gp_beta/types/span_assessment_list_params.py +26 -0
  29. scale_gp_beta/types/span_assessment_update_params.py +34 -0
  30. scale_gp_beta/types/span_search_params.py +9 -0
  31. {scale_gp_beta-0.1.0a32.dist-info → scale_gp_beta-0.1.0a34.dist-info}/METADATA +1 -1
  32. {scale_gp_beta-0.1.0a32.dist-info → scale_gp_beta-0.1.0a34.dist-info}/RECORD +34 -23
  33. scale_gp_beta/types/evaluation_delete_response.py +0 -16
  34. scale_gp_beta/types/file_list.py +0 -27
  35. scale_gp_beta/types/inference_model_list.py +0 -27
  36. scale_gp_beta/types/question_list.py +0 -27
  37. {scale_gp_beta-0.1.0a32.dist-info → scale_gp_beta-0.1.0a34.dist-info}/WHEEL +0 -0
  38. {scale_gp_beta-0.1.0a32.dist-info → scale_gp_beta-0.1.0a34.dist-info}/licenses/LICENSE +0 -0
@@ -1,16 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import Optional
4
- from typing_extensions import Literal
5
-
6
- from .._models import BaseModel
7
-
8
- __all__ = ["EvaluationDeleteResponse"]
9
-
10
-
11
- class EvaluationDeleteResponse(BaseModel):
12
- id: str
13
-
14
- deleted: bool
15
-
16
- object: Optional[Literal["evaluation"]] = None
@@ -1,27 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import List, Optional
4
- from typing_extensions import Literal
5
-
6
- from .file import File
7
- from .._models import BaseModel
8
-
9
- __all__ = ["FileList"]
10
-
11
-
12
- class FileList(BaseModel):
13
- has_more: bool
14
- """Whether there are more items left to be fetched."""
15
-
16
- items: List[File]
17
-
18
- total: int
19
- """The total of items that match the query.
20
-
21
- This is greater than or equal to the number of items returned.
22
- """
23
-
24
- limit: Optional[int] = None
25
- """The maximum number of items to return."""
26
-
27
- object: Optional[Literal["list"]] = None
@@ -1,27 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import List, Optional
4
- from typing_extensions import Literal
5
-
6
- from .._models import BaseModel
7
- from .inference_model import InferenceModel
8
-
9
- __all__ = ["InferenceModelList"]
10
-
11
-
12
- class InferenceModelList(BaseModel):
13
- has_more: bool
14
- """Whether there are more items left to be fetched."""
15
-
16
- items: List[InferenceModel]
17
-
18
- total: int
19
- """The total of items that match the query.
20
-
21
- This is greater than or equal to the number of items returned.
22
- """
23
-
24
- limit: Optional[int] = None
25
- """The maximum number of items to return."""
26
-
27
- object: Optional[Literal["list"]] = None
@@ -1,27 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import List, Optional
4
- from typing_extensions import Literal
5
-
6
- from .._models import BaseModel
7
- from .question import Question
8
-
9
- __all__ = ["QuestionList"]
10
-
11
-
12
- class QuestionList(BaseModel):
13
- has_more: bool
14
- """Whether there are more items left to be fetched."""
15
-
16
- items: List[Question]
17
-
18
- total: int
19
- """The total of items that match the query.
20
-
21
- This is greater than or equal to the number of items returned.
22
- """
23
-
24
- limit: Optional[int] = None
25
- """The maximum number of items to return."""
26
-
27
- object: Optional[Literal["list"]] = None