scale-gp-beta 0.1.0a39__py3-none-any.whl → 0.1.0a41__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 (46) hide show
  1. scale_gp_beta/_base_client.py +140 -11
  2. scale_gp_beta/_client.py +602 -143
  3. scale_gp_beta/_models.py +16 -1
  4. scale_gp_beta/_streaming.py +12 -10
  5. scale_gp_beta/_types.py +12 -2
  6. scale_gp_beta/_version.py +1 -1
  7. scale_gp_beta/resources/__init__.py +14 -0
  8. scale_gp_beta/resources/build.py +582 -0
  9. scale_gp_beta/resources/chat/completions.py +4 -0
  10. scale_gp_beta/resources/credentials.py +4 -0
  11. scale_gp_beta/resources/dataset_items.py +4 -0
  12. scale_gp_beta/resources/datasets.py +4 -0
  13. scale_gp_beta/resources/evaluation_items.py +4 -0
  14. scale_gp_beta/resources/evaluations.py +4 -0
  15. scale_gp_beta/resources/files/files.py +4 -0
  16. scale_gp_beta/resources/models.py +4 -0
  17. scale_gp_beta/resources/questions.py +4 -0
  18. scale_gp_beta/resources/spans.py +28 -0
  19. scale_gp_beta/types/__init__.py +6 -0
  20. scale_gp_beta/types/build_cancel_response.py +38 -0
  21. scale_gp_beta/types/build_create_params.py +26 -0
  22. scale_gp_beta/types/build_create_response.py +38 -0
  23. scale_gp_beta/types/build_list_params.py +19 -0
  24. scale_gp_beta/types/build_list_response.py +38 -0
  25. scale_gp_beta/types/build_retrieve_response.py +38 -0
  26. scale_gp_beta/types/chat/completion_models_params.py +2 -0
  27. scale_gp_beta/types/credential_list_params.py +2 -0
  28. scale_gp_beta/types/dataset_item_list_params.py +2 -0
  29. scale_gp_beta/types/dataset_list_params.py +2 -0
  30. scale_gp_beta/types/evaluation.py +2 -0
  31. scale_gp_beta/types/evaluation_create_params.py +2 -0
  32. scale_gp_beta/types/evaluation_item_list_params.py +2 -0
  33. scale_gp_beta/types/evaluation_list_params.py +2 -0
  34. scale_gp_beta/types/evaluation_task.py +5 -1
  35. scale_gp_beta/types/evaluation_task_param.py +5 -1
  36. scale_gp_beta/types/file_import_from_cloud_response.py +4 -0
  37. scale_gp_beta/types/file_list_params.py +2 -0
  38. scale_gp_beta/types/inference_create_params.py +2 -0
  39. scale_gp_beta/types/model_list_params.py +2 -0
  40. scale_gp_beta/types/question_list_params.py +2 -0
  41. scale_gp_beta/types/span_assessment.py +2 -0
  42. scale_gp_beta/types/span_search_params.py +11 -0
  43. {scale_gp_beta-0.1.0a39.dist-info → scale_gp_beta-0.1.0a41.dist-info}/METADATA +14 -42
  44. {scale_gp_beta-0.1.0a39.dist-info → scale_gp_beta-0.1.0a41.dist-info}/RECORD +46 -39
  45. {scale_gp_beta-0.1.0a39.dist-info → scale_gp_beta-0.1.0a41.dist-info}/licenses/LICENSE +1 -1
  46. {scale_gp_beta-0.1.0a39.dist-info → scale_gp_beta-0.1.0a41.dist-info}/WHEEL +0 -0
@@ -20,6 +20,8 @@ class InferenceCreateParams(TypedDict, total=False):
20
20
 
21
21
 
22
22
  class InferenceConfiguration(TypedDict, total=False):
23
+ """Vendor specific configuration"""
24
+
23
25
  num_retries: int
24
26
 
25
27
  timeout_seconds: int
@@ -29,6 +29,8 @@ class ModelListParams(TypedDict, total=False):
29
29
 
30
30
  name: str
31
31
 
32
+ sort_by: str
33
+
32
34
  sort_order: Literal["asc", "desc"]
33
35
 
34
36
  starting_after: str
@@ -12,6 +12,8 @@ class QuestionListParams(TypedDict, total=False):
12
12
 
13
13
  limit: int
14
14
 
15
+ sort_by: str
16
+
15
17
  sort_order: Literal["asc", "desc"]
16
18
 
17
19
  starting_after: str
@@ -15,6 +15,8 @@ __all__ = ["SpanAssessment"]
15
15
 
16
16
 
17
17
  class SpanAssessment(BaseModel):
18
+ """Response model for span assessment"""
19
+
18
20
  assessment_id: str
19
21
  """Unique identifier for the assessment"""
20
22
 
@@ -22,6 +22,8 @@ class SpanSearchParams(TypedDict, total=False):
22
22
 
23
23
  limit: int
24
24
 
25
+ sort_by: str
26
+
25
27
  sort_order: Literal["asc", "desc"]
26
28
 
27
29
  starting_after: str
@@ -29,6 +31,15 @@ class SpanSearchParams(TypedDict, total=False):
29
31
  to_ts: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
30
32
  """The ending (most recent) timestamp in ISO format."""
31
33
 
34
+ acp_types: SequenceNotStr[str]
35
+ """Filter by ACP types"""
36
+
37
+ agentex_agent_ids: SequenceNotStr[str]
38
+ """Filter by Agentex agent IDs"""
39
+
40
+ agentex_agent_names: SequenceNotStr[str]
41
+ """Filter by Agentex agent names"""
42
+
32
43
  application_variant_ids: SequenceNotStr[str]
33
44
  """Filter by application variant IDs"""
34
45
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: scale-gp-beta
3
- Version: 0.1.0a39
3
+ Version: 0.1.0a41
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
@@ -44,6 +44,15 @@ and offers both synchronous and asynchronous clients powered by [httpx](https://
44
44
 
45
45
  It is generated with [Stainless](https://www.stainless.com/).
46
46
 
47
+ ## MCP Server
48
+
49
+ Use the Scale GP MCP Server to enable AI assistants to interact with this API, allowing them to explore endpoints, make test requests, and use documentation to help integrate this SDK into your application.
50
+
51
+ [![Add to Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en-US/install-mcp?name=scale-gp-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsInNjYWxlLWdwLW1jcCJdfQ)
52
+ [![Install in VS Code](https://img.shields.io/badge/_-Add_to_VS_Code-blue?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCA0MCA0MCI+PHBhdGggZmlsbD0iI0VFRSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMzAuMjM1IDM5Ljg4NGEyLjQ5MSAyLjQ5MSAwIDAgMS0xLjc4MS0uNzNMMTIuNyAyNC43OGwtMy40NiAyLjYyNC0zLjQwNiAyLjU4MmExLjY2NSAxLjY2NSAwIDAgMS0xLjA4Mi4zMzggMS42NjQgMS42NjQgMCAwIDEtMS4wNDYtLjQzMWwtMi4yLTJhMS42NjYgMS42NjYgMCAwIDEgMC0yLjQ2M0w3LjQ1OCAyMCA0LjY3IDE3LjQ1MyAxLjUwNyAxNC41N2ExLjY2NSAxLjY2NSAwIDAgMSAwLTIuNDYzbDIuMi0yYTEuNjY1IDEuNjY1IDAgMCAxIDIuMTMtLjA5N2w2Ljg2MyA1LjIwOUwyOC40NTIuODQ0YTIuNDg4IDIuNDg4IDAgMCAxIDEuODQxLS43MjljLjM1MS4wMDkuNjk5LjA5MSAxLjAxOS4yNDVsOC4yMzYgMy45NjFhMi41IDIuNSAwIDAgMSAxLjQxNSAyLjI1M3YuMDk5LS4wNDVWMzMuMzd2LS4wNDUuMDk1YTIuNTAxIDIuNTAxIDAgMCAxLTEuNDE2IDIuMjU3bC04LjIzNSAzLjk2MWEyLjQ5MiAyLjQ5MiAwIDAgMS0xLjA3Ny4yNDZabS43MTYtMjguOTQ3LTExLjk0OCA5LjA2MiAxMS45NTIgOS4wNjUtLjAwNC0xOC4xMjdaIi8+PC9zdmc+)](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22scale-gp-mcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22scale-gp-mcp%22%5D%7D)
53
+
54
+ > Note: You may need to set environment variables in your MCP client.
55
+
47
56
  ## Documentation
48
57
 
49
58
  The REST API documentation can be found on [docs.gp.scale.com](https://docs.gp.scale.com). The full API of this library can be found in [api.md](https://github.com/scaleapi/sgp-python-beta/tree/main/api.md).
@@ -52,7 +61,7 @@ The REST API documentation can be found on [docs.gp.scale.com](https://docs.gp.s
52
61
 
53
62
  ```sh
54
63
  # install from PyPI
55
- pip install --pre scale-gp-beta
64
+ pip install '--pre scale-gp-beta'
56
65
  ```
57
66
 
58
67
  ## Usage
@@ -358,12 +367,13 @@ You can enable this by installing `aiohttp`:
358
367
 
359
368
  ```sh
360
369
  # install from PyPI
361
- pip install --pre scale-gp-beta[aiohttp]
370
+ pip install '--pre scale-gp-beta[aiohttp]'
362
371
  ```
363
372
 
364
373
  Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
365
374
 
366
375
  ```python
376
+ import os
367
377
  import asyncio
368
378
  from scale_gp_beta import DefaultAioHttpClient
369
379
  from scale_gp_beta import AsyncSGPClient
@@ -372,7 +382,7 @@ from scale_gp_beta import AsyncSGPClient
372
382
  async def main() -> None:
373
383
  async with AsyncSGPClient(
374
384
  account_id="My Account ID",
375
- api_key="My API Key",
385
+ api_key=os.environ.get("SGP_API_KEY"), # This is the default and can be omitted
376
386
  http_client=DefaultAioHttpClient(),
377
387
  ) as client:
378
388
  completion = await client.chat.completions.create(
@@ -385,44 +395,6 @@ async def main() -> None:
385
395
  asyncio.run(main())
386
396
  ```
387
397
 
388
- ## Streaming responses
389
-
390
- We provide support for streaming responses using Server Side Events (SSE).
391
-
392
- ```python
393
- from scale_gp_beta import SGPClient
394
-
395
- client = SGPClient(
396
- account_id="My Account ID",
397
- )
398
-
399
- stream = client.chat.completions.create(
400
- messages=[{"foo": "bar"}],
401
- model="model",
402
- stream=True,
403
- )
404
- for completion in stream:
405
- print(completion)
406
- ```
407
-
408
- The async client uses the exact same interface.
409
-
410
- ```python
411
- from scale_gp_beta import AsyncSGPClient
412
-
413
- client = AsyncSGPClient(
414
- account_id="My Account ID",
415
- )
416
-
417
- stream = await client.chat.completions.create(
418
- messages=[{"foo": "bar"}],
419
- model="model",
420
- stream=True,
421
- )
422
- async for completion in stream:
423
- print(completion)
424
- ```
425
-
426
398
  ## Using types
427
399
 
428
400
  Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typing.html#typing.TypedDict). Responses are [Pydantic models](https://docs.pydantic.dev) which also provide helper methods for things like:
@@ -1,17 +1,17 @@
1
1
  scale_gp_beta/__init__.py,sha256=MFsKxnaLkZ-Rqv127bA2T0OpHD3me1OnwIom-0I2gB0,2742
2
- scale_gp_beta/_base_client.py,sha256=-akZ2LpczGs3fUHVZg3eDppkodX4ithhenKNhNp2nb8,67054
3
- scale_gp_beta/_client.py,sha256=7JuikklooBzOCkrqjOInwwkPPHvkMZneilODQQ1JxLI,27168
2
+ scale_gp_beta/_base_client.py,sha256=J1u-5BLJ_gL10TknCyP420e8kRngnTzGh6bY5AcZez8,73416
3
+ scale_gp_beta/_client.py,sha256=0fFnb2Te5RY5NqhgOOEx_l_218gDReBBnfUPrTtmI6Y,41097
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
7
7
  scale_gp_beta/_files.py,sha256=HOCL7NYupx5rmxPWzvzifOW_LkRj0zBssmxqLFtYURI,3616
8
- scale_gp_beta/_models.py,sha256=3D65psj_C02Mw0K2zpBWrn1khmrvtEXgTTQ6P4r3tUY,31837
8
+ scale_gp_beta/_models.py,sha256=R3MpO2z4XhTAnD3ObEks32suRXleF1g7BEgQTOLIxTs,32112
9
9
  scale_gp_beta/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
10
  scale_gp_beta/_resource.py,sha256=siZly_U6D0AOVLAzaOsqUdEFFzVMbWRj-ml30nvRp7E,1118
11
11
  scale_gp_beta/_response.py,sha256=GemuybPk0uemovTlGHyHkj-ScYTTDJA0jqH5FQqIPwQ,28852
12
- scale_gp_beta/_streaming.py,sha256=KHa_-WJgY6cCYhvrYLLc1oqUre23iUGidYXefuyNOrw,10161
13
- scale_gp_beta/_types.py,sha256=3-dTgyCs1Fep_LgdDCs7B_SYv9He9BYHJYJunweFT9U,7243
14
- scale_gp_beta/_version.py,sha256=wGtBtPFreTUH4ZPdtzQxGykaX5DdBiNk1dBtpoow2O8,174
12
+ scale_gp_beta/_streaming.py,sha256=-_hEXPmI3ouK-z-AqZgV-7E0nsg0hGFbSay_4DS0G4E,10233
13
+ scale_gp_beta/_types.py,sha256=91u4yp566AoT5VoDhNGZbmJ213XzpSbyPHgZLCBqAs8,7601
14
+ scale_gp_beta/_version.py,sha256=n4_fu2WdZu0bO0wYwmjuwZm6voO_F8uLlhqB7e7nFJU,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,28 +43,35 @@ 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=DqCb7_QX-OT4y34K9wtoXIv7-Yk_IOvSbQvC96Sgpy8,2183
46
- scale_gp_beta/resources/__init__.py,sha256=93-Ld9MSd_dX_jld0IQD_Ckm4n5NvoR2dy0AiNUYDrg,7003
46
+ scale_gp_beta/resources/__init__.py,sha256=7OBbTu19SH3ZS6kO0VWCPIOUk66prBJpLy6PVP4W8ZA,7440
47
+ scale_gp_beta/resources/build.py,sha256=7m6FhLsasO7aGazAvqvCD_BHmnDicPQspXg4DCram5M,22002
47
48
  scale_gp_beta/resources/completions.py,sha256=wtVhUh5LMwXolICQhpeCZUlzRM-ChLSvLiQm92sO-EQ,30934
48
- scale_gp_beta/resources/credentials.py,sha256=BDhz10_4Ag5bM_iZLGSCWzvdycxM4U3bAYATVml9JYQ,32743
49
- scale_gp_beta/resources/dataset_items.py,sha256=yQvv5-njB0MVds7tt6bYB4AHU3pVNIo5CbJFcH8VQ4Y,23118
50
- scale_gp_beta/resources/datasets.py,sha256=x2m3Aua452kqVFI2gF_wjHAcupcS_EeaXoQuyZhObwA,25483
51
- scale_gp_beta/resources/evaluation_items.py,sha256=tR8FtxCnxVdQzpAnPg9dYQkDZKXyCFe9zEXgk3cbrgw,11517
52
- scale_gp_beta/resources/evaluations.py,sha256=4i12A5WfHrS-iclGQHL7pzkO0x2moluijJZo8xf-5IQ,36080
49
+ scale_gp_beta/resources/credentials.py,sha256=Eax7ouhJQ61CHy-mQlmBiylBKiNfGhBFoWlBiuHHQH4,32903
50
+ scale_gp_beta/resources/dataset_items.py,sha256=-cJJ1ikJ5mDUGIRkhqTuY652h0EAP5Wa-lmH2gA782w,23278
51
+ scale_gp_beta/resources/datasets.py,sha256=EoaQQRwONXz1Hb23GagxJXU4lWsg-zedGqxbe7Njffc,25643
52
+ scale_gp_beta/resources/evaluation_items.py,sha256=Tm76T2eu26nYHOFP9Dp-F6hzt6dx3dImFGy2iCQHwew,11677
53
+ scale_gp_beta/resources/evaluations.py,sha256=zlA4OXp7oKDiNRcrI0379Li7LPBHZOxduQ6FQRMC-_w,36240
53
54
  scale_gp_beta/resources/inference.py,sha256=Gwi7yt8BK47LFRbx9X4Ei4HLh3keZ5a37dHd2eONf4g,7539
54
- scale_gp_beta/resources/models.py,sha256=obGc4jz3k8Cxl7t218GPmq8HvODX911vc6-wGJ-cXSA,32247
55
- scale_gp_beta/resources/questions.py,sha256=wNd4H3F0uk09shhdg6yZQN1DedjwKGvhZQQN1j53Oiw,30006
55
+ scale_gp_beta/resources/models.py,sha256=_sUDzgLJbP7BL_NzkfpufG0Ln-JGBGx7Zx8jYQWp9hs,32407
56
+ scale_gp_beta/resources/questions.py,sha256=7M6TDVoEo4VjVKjm7uHkO3hxeCKjRDs2fBZxyZvh4Mo,30166
56
57
  scale_gp_beta/resources/responses.py,sha256=ha6JeU1vCoxC4Z00jsbS1D7jEpxy-xlCiEkx5-RqrX0,11755
57
58
  scale_gp_beta/resources/span_assessments.py,sha256=HOJ6qKtwXVPkgRLO8VmcfEoFWTAlAHl-SrjCpIDj7Ck,25560
58
- scale_gp_beta/resources/spans.py,sha256=ootzSRVA_1hYXOjADrKJ8uO7CwhwZsfYLVJHE83CnIE,32080
59
+ scale_gp_beta/resources/spans.py,sha256=n1H-cbyufqR0fg9h_jLb66IAYHxWUPhIrNNokZNi5Ok,33260
59
60
  scale_gp_beta/resources/chat/__init__.py,sha256=BVAfz9TM3DT5W9f_mt0P9YRxL_MsUxKCWAH6u1iogmA,1041
60
61
  scale_gp_beta/resources/chat/chat.py,sha256=4OG_TrwVqYvV-7Ha8Nbc6iuXQuys9wKXgkxYmE6p6jk,3672
61
- scale_gp_beta/resources/chat/completions.py,sha256=jhRDNgdpdI5NR2Hq3vUZwdxD-gUrAqLGNTJ7Kc7f-iI,49884
62
+ scale_gp_beta/resources/chat/completions.py,sha256=yOnyGK2QBaFNL0el5aL1A5T6JmBKof6ghf9Hh80C7mo,50044
62
63
  scale_gp_beta/resources/files/__init__.py,sha256=VgAtqUimN5Kf_-lmEaNBnu_ApGegKsJQ1zNf-42MXFA,1002
63
64
  scale_gp_beta/resources/files/content.py,sha256=QDtcnsK2my4-ndmwyaR6zyQnV1fEjIJ7CSDoyXUcYxg,5762
64
- scale_gp_beta/resources/files/files.py,sha256=ZNbjDjV6_t3EWbzJQx5UoGsypX5-S-dyNRLDou6b3hs,24443
65
- scale_gp_beta/types/__init__.py,sha256=UawYclVqYJ0aRV2gVIRH9dahG8qf302hHzXVB9d8vug,6449
65
+ scale_gp_beta/resources/files/files.py,sha256=dowTYD-xKhCI17zINYZywUtzv7VwofjV1tY6AfncHjE,24603
66
+ scale_gp_beta/types/__init__.py,sha256=cgPnOBpdkmIF5fyr5uCCXkPewwv4fFdXVPjEq7P3pIc,6899
66
67
  scale_gp_beta/types/approval_status.py,sha256=rI70l7e2ey2ax8tR_sBkziVSirq_QaDDV1bHgNrfCWQ,227
67
68
  scale_gp_beta/types/assessment_type.py,sha256=_4V6RZ5wUyU0UYrDjCoIRdaiiZtZVpY6DMsW1QClq-c,271
69
+ scale_gp_beta/types/build_cancel_response.py,sha256=ghlldFT3BpPZbbDa0Ag0Jj4gJKXXe9rDxX9BPN9j29Q,867
70
+ scale_gp_beta/types/build_create_params.py,sha256=3alD9BW5k1rHJxgUE4qj4Bj4xeMevV2jY0makgJzrHs,628
71
+ scale_gp_beta/types/build_create_response.py,sha256=-llE80GkT8AnycW4Bl8XacbhnkJQCdV8oNxG2MnsFe8,867
72
+ scale_gp_beta/types/build_list_params.py,sha256=Vwq0wtyTrHPcaRpr-qIBBjf2BRqISbgo7J5S8qUAHG8,374
73
+ scale_gp_beta/types/build_list_response.py,sha256=SBAAuCRpQw3C6dbE43GhPGQMAHQ9YYTtZ8xAlcgbYro,863
74
+ scale_gp_beta/types/build_retrieve_response.py,sha256=wnSjOzg2Cq61FCBu48Pn1v2a6LKFj5Hyz5jsqSLJGVA,871
68
75
  scale_gp_beta/types/completion.py,sha256=1UOFGSkAmTCfhKGSQQLEU-PHGdnWLV1y0usa1UizBBQ,5406
69
76
  scale_gp_beta/types/completion_create_params.py,sha256=XWyto29VVJQ5nJTykSXPwlW5b4CZxGU7GSlk1hMwDxo,3114
70
77
  scale_gp_beta/types/component.py,sha256=0dLrvTEHpF628wZ-CIniOpsOzKfnLlaZy4OPIFDzoF0,403
@@ -74,7 +81,7 @@ scale_gp_beta/types/container_param.py,sha256=fwIeOygG1QTG9queCSSJwXqx1F4xLtx7hK
74
81
  scale_gp_beta/types/credential.py,sha256=meNzxwLyxsBO1FITa0xVNONjfmW_aZhb-xbQw2HMqO4,499
75
82
  scale_gp_beta/types/credential_create_params.py,sha256=BqpPxLS3rawzvm9vOsQHKWGn901eySz45tFo0KgP5FY,655
76
83
  scale_gp_beta/types/credential_delete_response.py,sha256=QlyDqZ3L11hnEMpLJXRvlxLf3YFDpC04ApQa2ZauBII,252
77
- scale_gp_beta/types/credential_list_params.py,sha256=3yh0VLCaD3PlON_zlddB7rnJsUGc8GU4odrpVMvlr2U,418
84
+ scale_gp_beta/types/credential_list_params.py,sha256=i_kon5Mn7BKr5TdxGZnHss7CovAOCB3jol8LyrXMXhk,436
78
85
  scale_gp_beta/types/credential_secret.py,sha256=xC-_rE4b-s2QJbduvE6DtVPXXI9yWzJ3IGjZB0IM4t4,267
79
86
  scale_gp_beta/types/credential_update_params.py,sha256=kZKaZVgBShHxoYVNqWAUo2ZWKN7bcau4Ym3ckYs9_VU,615
80
87
  scale_gp_beta/types/dataset.py,sha256=wts1ygPfzuh5pyYZ12YxuJMxVd-yM5hF_ZNUYxpfbho,667
@@ -84,30 +91,30 @@ scale_gp_beta/types/dataset_item.py,sha256=6ScqXWMP7D9IXW3xjOw04AE0CaSYNMHB2JCAp
84
91
  scale_gp_beta/types/dataset_item_batch_create_params.py,sha256=ZdcL_57X7IDwzaA7hFkYKuLleT_IToWlSJ6q6G27a04,563
85
92
  scale_gp_beta/types/dataset_item_batch_create_response.py,sha256=tUVLQ7igWxp4Dn0pvi1K6YEf7m8XnsrlyHbBkVq9i6k,402
86
93
  scale_gp_beta/types/dataset_item_delete_response.py,sha256=uwOgD05XLn1xQixILGwOb3EcDK9ov8fuJkyfsg1pjug,254
87
- scale_gp_beta/types/dataset_item_list_params.py,sha256=CEB161IozqL-n7YC54g76nFqK0sp7l-A0QB9ET0L86M,661
94
+ scale_gp_beta/types/dataset_item_list_params.py,sha256=67lZCFl0uipJQPmaMmEpEY9w8gY3ax6UuoiQodT1l2A,679
88
95
  scale_gp_beta/types/dataset_item_retrieve_params.py,sha256=f0kJg0btCGITamo949F7trvR0no7lOuVfoKTpFLJ5Gw,356
89
96
  scale_gp_beta/types/dataset_item_update_params.py,sha256=URTsZxwUcXrh_WMTKS3rW7XRozTz2FmqmhrDh6uyPTc,442
90
- scale_gp_beta/types/dataset_list_params.py,sha256=C-NCvkrOv5n43NSe2AiR225zDT0MOEjtEW6qQJSm9zk,471
97
+ scale_gp_beta/types/dataset_list_params.py,sha256=gbcZsk3AQcuGFWAtXNBvFpRksGy2WE4n_mNJ9TLbzAU,489
91
98
  scale_gp_beta/types/dataset_retrieve_params.py,sha256=5tpzuzX6y1WKKxP2AbjYwwcATpB1eZCv4wZABG3baIQ,282
92
99
  scale_gp_beta/types/dataset_update_params.py,sha256=gc3pPByWNRkh17CyPsEySIQj01Oy3UT7SJCbSB2Dg5w,741
93
- scale_gp_beta/types/evaluation.py,sha256=ACWbBpcfqi4ZFlKuUoVz5zY7Fkb7OECsqCzTZfQf4Vg,1875
94
- scale_gp_beta/types/evaluation_create_params.py,sha256=YlfRv_mAbMgEtFp_mj7QrgNCkoghfJHNKLpKZehbb28,3244
100
+ scale_gp_beta/types/evaluation.py,sha256=ui7MowmtuE2bEXfJjz6k1WUdANAJ_Nuu3iXFBMo1pN4,1936
101
+ scale_gp_beta/types/evaluation_create_params.py,sha256=0WaPCVxYlyQ5vIVsrY_F8P-4v53wCbatyjGnJoCE598,3312
95
102
  scale_gp_beta/types/evaluation_item.py,sha256=rymtxIsG5m7x1ux-gB9YXQNNdRvE7FyAVpJBquLV0uI,730
96
- scale_gp_beta/types/evaluation_item_list_params.py,sha256=7sQVVKB87uO45lYuMUhGR6125a6rG19gYx6gckR7sxU,426
103
+ scale_gp_beta/types/evaluation_item_list_params.py,sha256=cOjeaahKsNNKKkLAsOpRYgV0DGi5rw6cNrHgJI0HRyM,444
97
104
  scale_gp_beta/types/evaluation_item_retrieve_params.py,sha256=UYEKIAQ4dy92ZOSV1tWDZcvXG7_0BSpOND5Ehzs7QM4,296
98
- scale_gp_beta/types/evaluation_list_params.py,sha256=Xe88rpcm2w-ufTR8bnJYJfk09FiESKddWMzwZCjP_LU,536
105
+ scale_gp_beta/types/evaluation_list_params.py,sha256=69LdO9g5HKq11QtbuvlpnQaJaMP71EOyWqJQTBI3X-U,554
99
106
  scale_gp_beta/types/evaluation_retrieve_params.py,sha256=_YuT-E2VO-f_SvHaIe24KBbhTNoK8T-3tVB6Ov6cqfg,356
100
- scale_gp_beta/types/evaluation_task.py,sha256=LMfbN2FWRX7LvuEHeUYWadhax8Wa4g2-UCrGf31Zk_Q,22166
101
- scale_gp_beta/types/evaluation_task_param.py,sha256=-0kSVBN2Hf41qzEuz9y-7DkMO27GT_ewIsQyXBqlLhU,21519
107
+ scale_gp_beta/types/evaluation_task.py,sha256=F1IAoSXjC2wvZbfDeZsXkzXHya7AhDHvw3vFhp_yWsg,22311
108
+ scale_gp_beta/types/evaluation_task_param.py,sha256=xhX1P75XwlwNnPdcDs2ZpkhsamWfygvu0gox32SeNSw,21651
102
109
  scale_gp_beta/types/evaluation_update_params.py,sha256=BcIkNNB_hKAzA9CEUyvxSBw5rRP6-o8seYPChaMABkg,762
103
110
  scale_gp_beta/types/file.py,sha256=UNoDts9Re8ZYsieR3dnCjuwdrG5gRcL36-y4YDTOxZk,655
104
111
  scale_gp_beta/types/file_create_params.py,sha256=KpXv6JCbd8BlgceTmBTewxOky2JTJaTW3mcGiVVU7wE,317
105
112
  scale_gp_beta/types/file_delete_response.py,sha256=IgZhHsKNfc9NqwqLTYrAam5APFuyquIEUVNQgsz4zyg,240
106
113
  scale_gp_beta/types/file_import_from_cloud_params.py,sha256=LWGtWQOfvH5dJhN5o7PsEPmxq9nttnD0iAdywbekahQ,722
107
- scale_gp_beta/types/file_import_from_cloud_response.py,sha256=4lpmczfAsUwUlVTIXiBmQ0rQ2-UB5RSg7CL5EdQCi94,1033
108
- scale_gp_beta/types/file_list_params.py,sha256=rXCQkumIdyC3XqvkTIuOkSeRKVOz90G0Q6GFuA6BH6M,441
114
+ scale_gp_beta/types/file_import_from_cloud_response.py,sha256=H7fNd8B2rmfvJ62ly_WjQOcCQkpFgF08xgXsoj5LM2o,1140
115
+ scale_gp_beta/types/file_list_params.py,sha256=LwSU543G9LZ7x_3bN8zQ8shhgEi0N-a9B1L3i6tNUp8,459
109
116
  scale_gp_beta/types/file_update_params.py,sha256=cZAz43aIXmc0jOz-uKWDsZIJx24NN4t9kQ2XDORvQ-Q,297
110
- scale_gp_beta/types/inference_create_params.py,sha256=lpdMjG-ufUDpH8bGPbt2klG0I9Q3o374WrqHBjEpPwE,665
117
+ scale_gp_beta/types/inference_create_params.py,sha256=MnGu6IPy7FLItyQd3HZa8RImPrClVi8e6ZB8X8GXfSY,706
111
118
  scale_gp_beta/types/inference_create_response.py,sha256=JgoDjN5B8zRUpOXXasD97vFKVN7A6QHKz_PN64pKB6s,390
112
119
  scale_gp_beta/types/inference_model.py,sha256=a1lGEIV8UQ7IHqZpWljAtHpce8skN0rd3jD1LCX1on8,4933
113
120
  scale_gp_beta/types/inference_response.py,sha256=PIX9ihGJ6IP6D6i8gk3o_mbSLy9fvRwZdGyICQKh-q8,337
@@ -116,16 +123,16 @@ scale_gp_beta/types/item_locator.py,sha256=2DgC4WO_8eqnGFUZppHqqhLFhbRQQVph83glx
116
123
  scale_gp_beta/types/item_locator_template.py,sha256=eEwfJCLdYr0OZ5-Pk5iGtHSa93h0zGZ015C7RtN1XYY,200
117
124
  scale_gp_beta/types/model_create_params.py,sha256=kdmA0Hp7if0Y4niLCxfxJF8R7l2YTEGJztAQht0F4ic,3545
118
125
  scale_gp_beta/types/model_delete_response.py,sha256=qFOwFx8kjinPSF6oTA347I0fq5x8qBvsrVMG-lxf8V4,242
119
- scale_gp_beta/types/model_list_params.py,sha256=UJkBX6LCoK4mVUe6LJx_qD1dZLFypPeXof1YBTXURS8,636
126
+ scale_gp_beta/types/model_list_params.py,sha256=g2nDok3hjOpNnmCn2Tw_S6zjJSWUfLuSFz4taer8yPo,654
120
127
  scale_gp_beta/types/model_update_params.py,sha256=HwanIDr9Gwp-c9zdJWJx-JQPFP3MhdBX7mEQL-mlayA,3762
121
128
  scale_gp_beta/types/question.py,sha256=j2fS-KltMyFM-Ya11yOZSC08fgRNRuCQYIXX5kjphls,5696
122
129
  scale_gp_beta/types/question_create_params.py,sha256=bUMrgopy535JQTDekFck7c29J-PZofKcH5ard0AbOE0,4348
123
- scale_gp_beta/types/question_list_params.py,sha256=2x9Ww7wPAhc0hr6WpcqydLuB-mECpMK-MG7jbmtfKJM,362
130
+ scale_gp_beta/types/question_list_params.py,sha256=8Frysw9ZBPAcllPKCGJfMnvnmGV7D_srREBosvi6e-A,380
124
131
  scale_gp_beta/types/response.py,sha256=urf4oYc5fUDQkiY6Xqrn9yInsdsBe_8UTRQhzEtGLkI,143236
125
132
  scale_gp_beta/types/response_create_params.py,sha256=J1NmJi9BwkHAV2Ui1z5_YzrC54fZI8kShT5mWmOmcF0,28272
126
133
  scale_gp_beta/types/response_create_response.py,sha256=_S32F3x6GBEf_ICVD2bE1fsfZitb2nOYiDls5cFe7MA,1106716
127
134
  scale_gp_beta/types/span.py,sha256=ygHgE2DcK1Iqpg4oMa-Mx1XmZa7UBtDlfBPcPbq67Cg,1331
128
- scale_gp_beta/types/span_assessment.py,sha256=yoRuUooLv7GRJn-jw7VhtvTKedp8Z-hGUoV1uwfjYic,2273
135
+ scale_gp_beta/types/span_assessment.py,sha256=HFbD3b1THIGTv7FaBYh-8BCEfSVFcoEfZvgGqHtDZCM,2319
129
136
  scale_gp_beta/types/span_assessment_create_params.py,sha256=DaPJNq2SjvwF9yCRJeaPRKL0nVayRAv8iJnP9Vg5Ndo,1055
130
137
  scale_gp_beta/types/span_assessment_delete_response.py,sha256=GU7gLHHk0AJ4aSC00A_c16_aksItXjA2nVLGVILHM1o,260
131
138
  scale_gp_beta/types/span_assessment_list_params.py,sha256=uWG6tcycpIKPApw11C9HG5dfZRO56eHUWz1b7PFg4Pg,626
@@ -133,7 +140,7 @@ scale_gp_beta/types/span_assessment_update_params.py,sha256=StwCobyVcnrZV1asDAxG
133
140
  scale_gp_beta/types/span_batch_params.py,sha256=TsV1LnFXDXLhZdggn1BmIjQtAc8DwD6i57cBLCnStK8,1317
134
141
  scale_gp_beta/types/span_batch_response.py,sha256=gNRJL9XVm5ELuIOWTCUbwwetxeD0s-M6JZi11USvBpU,354
135
142
  scale_gp_beta/types/span_create_params.py,sha256=z9hRw6kb5xZUJkR6q_JcdHX0i0BSnLAgn9IITxJojDY,1227
136
- scale_gp_beta/types/span_search_params.py,sha256=LJXN7sCFu2o7woM3Nl6-P4P-lk363x3eRA38bgSQ4fM,2045
143
+ scale_gp_beta/types/span_search_params.py,sha256=jFSC7g__hvkdU1FofTsGSgcdecW6KKmDnDR6ZqB-gpc,2297
137
144
  scale_gp_beta/types/span_status.py,sha256=CFCRCm2AeoQhAe0Eg3m9VRYGbi6r9ZaBOZ0QQd2wKRQ,227
138
145
  scale_gp_beta/types/span_type.py,sha256=Y4cFVO66V_KJQ2stokdspyBunh4kxgSDt2EZg960DYI,696
139
146
  scale_gp_beta/types/span_update_params.py,sha256=xpk0NKNsw_RAXIZN1U1ddqUHpPE--W9_Y3i1tTZKLZg,574
@@ -144,13 +151,13 @@ scale_gp_beta/types/chat/chat_completion.py,sha256=JM1meIbWU2ImWkSO2m78666ltpUgD
144
151
  scale_gp_beta/types/chat/chat_completion_chunk.py,sha256=w7kGJcwoGuj_wl9kEACNspEvy8RV-h1wlwMW3dhC-xY,12025
145
152
  scale_gp_beta/types/chat/completion_create_params.py,sha256=B6BQB5m1vImbbkUg953bmp7lMj3UUL7Ow6dA-OlEENw,4557
146
153
  scale_gp_beta/types/chat/completion_create_response.py,sha256=0OhfoJW8azVRrZdXRRMuiJ7kEEeMDnKScxrr3sayzDo,374
147
- scale_gp_beta/types/chat/completion_models_params.py,sha256=NdZ3Lkgclq6UKc9iae-evvCFuaOQszCwwubVjP1MYfk,635
154
+ scale_gp_beta/types/chat/completion_models_params.py,sha256=uNKBXELbZdcgldoJDndI3rANsiloLTMoPWqm0NbIqf4,653
148
155
  scale_gp_beta/types/chat/completion_models_response.py,sha256=Ctgj6o-QWPSdjBKzG9J4Id0-DjXu4UGGw1NR6-840Ec,403
149
156
  scale_gp_beta/types/chat/model_definition.py,sha256=OWcZ4StZ4K2wfL7FqHNK-HqxLjy9J2zE_JVq2RqPk1w,1098
150
157
  scale_gp_beta/types/files/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
151
158
  scale_gp_beta/types/shared/__init__.py,sha256=6-walu4YgOTaOj7wsidywTj67PyBJaNYFqasfiTP9-4,130
152
159
  scale_gp_beta/types/shared/identity.py,sha256=4XDoJjsPI4lkwyaYyNstw7OunIzJjVWujPoZPrNdoQA,348
153
- scale_gp_beta-0.1.0a39.dist-info/METADATA,sha256=A7jXpHaWqavxs82aVhNjj1wtWF1NIx0am3NFnlXbN6A,28620
154
- scale_gp_beta-0.1.0a39.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
155
- scale_gp_beta-0.1.0a39.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
156
- scale_gp_beta-0.1.0a39.dist-info/RECORD,,
160
+ scale_gp_beta-0.1.0a41.dist-info/METADATA,sha256=_laC_GUGD5XqCQBuz3vNpUPUA953GKs_SnsRqLepACU,29627
161
+ scale_gp_beta-0.1.0a41.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
162
+ scale_gp_beta-0.1.0a41.dist-info/licenses/LICENSE,sha256=LvNy55OMOsNOGUqjHCwQ6uYO0IuU9LJp1CJRpoz0abY,11338
163
+ scale_gp_beta-0.1.0a41.dist-info/RECORD,,
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2025 Scale GP
189
+ Copyright 2026 Scale GP
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.