scale-gp-beta 0.1.0a3__py3-none-any.whl → 0.1.0a4__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.
@@ -9,7 +9,6 @@ import asyncio
9
9
  import inspect
10
10
  import logging
11
11
  import platform
12
- import warnings
13
12
  import email.utils
14
13
  from types import TracebackType
15
14
  from random import random
@@ -36,7 +35,7 @@ import anyio
36
35
  import httpx
37
36
  import distro
38
37
  import pydantic
39
- from httpx import URL, Limits
38
+ from httpx import URL
40
39
  from pydantic import PrivateAttr
41
40
 
42
41
  from . import _exceptions
@@ -51,13 +50,10 @@ from ._types import (
51
50
  Timeout,
52
51
  NotGiven,
53
52
  ResponseT,
54
- Transport,
55
53
  AnyMapping,
56
54
  PostParser,
57
- ProxiesTypes,
58
55
  RequestFiles,
59
56
  HttpxSendArgs,
60
- AsyncTransport,
61
57
  RequestOptions,
62
58
  HttpxRequestFiles,
63
59
  ModelBuilderProtocol,
@@ -337,9 +333,6 @@ class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
337
333
  _base_url: URL
338
334
  max_retries: int
339
335
  timeout: Union[float, Timeout, None]
340
- _limits: httpx.Limits
341
- _proxies: ProxiesTypes | None
342
- _transport: Transport | AsyncTransport | None
343
336
  _strict_response_validation: bool
344
337
  _idempotency_header: str | None
345
338
  _default_stream_cls: type[_DefaultStreamT] | None = None
@@ -352,9 +345,6 @@ class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
352
345
  _strict_response_validation: bool,
353
346
  max_retries: int = DEFAULT_MAX_RETRIES,
354
347
  timeout: float | Timeout | None = DEFAULT_TIMEOUT,
355
- limits: httpx.Limits,
356
- transport: Transport | AsyncTransport | None,
357
- proxies: ProxiesTypes | None,
358
348
  custom_headers: Mapping[str, str] | None = None,
359
349
  custom_query: Mapping[str, object] | None = None,
360
350
  ) -> None:
@@ -362,9 +352,6 @@ class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
362
352
  self._base_url = self._enforce_trailing_slash(URL(base_url))
363
353
  self.max_retries = max_retries
364
354
  self.timeout = timeout
365
- self._limits = limits
366
- self._proxies = proxies
367
- self._transport = transport
368
355
  self._custom_headers = custom_headers or {}
369
356
  self._custom_query = custom_query or {}
370
357
  self._strict_response_validation = _strict_response_validation
@@ -800,46 +787,11 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
800
787
  base_url: str | URL,
801
788
  max_retries: int = DEFAULT_MAX_RETRIES,
802
789
  timeout: float | Timeout | None | NotGiven = NOT_GIVEN,
803
- transport: Transport | None = None,
804
- proxies: ProxiesTypes | None = None,
805
- limits: Limits | None = None,
806
790
  http_client: httpx.Client | None = None,
807
791
  custom_headers: Mapping[str, str] | None = None,
808
792
  custom_query: Mapping[str, object] | None = None,
809
793
  _strict_response_validation: bool,
810
794
  ) -> None:
811
- kwargs: dict[str, Any] = {}
812
- if limits is not None:
813
- warnings.warn(
814
- "The `connection_pool_limits` argument is deprecated. The `http_client` argument should be passed instead",
815
- category=DeprecationWarning,
816
- stacklevel=3,
817
- )
818
- if http_client is not None:
819
- raise ValueError("The `http_client` argument is mutually exclusive with `connection_pool_limits`")
820
- else:
821
- limits = DEFAULT_CONNECTION_LIMITS
822
-
823
- if transport is not None:
824
- kwargs["transport"] = transport
825
- warnings.warn(
826
- "The `transport` argument is deprecated. The `http_client` argument should be passed instead",
827
- category=DeprecationWarning,
828
- stacklevel=3,
829
- )
830
- if http_client is not None:
831
- raise ValueError("The `http_client` argument is mutually exclusive with `transport`")
832
-
833
- if proxies is not None:
834
- kwargs["proxies"] = proxies
835
- warnings.warn(
836
- "The `proxies` argument is deprecated. The `http_client` argument should be passed instead",
837
- category=DeprecationWarning,
838
- stacklevel=3,
839
- )
840
- if http_client is not None:
841
- raise ValueError("The `http_client` argument is mutually exclusive with `proxies`")
842
-
843
795
  if not is_given(timeout):
844
796
  # if the user passed in a custom http client with a non-default
845
797
  # timeout set then we use that timeout.
@@ -860,12 +812,9 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
860
812
 
861
813
  super().__init__(
862
814
  version=version,
863
- limits=limits,
864
815
  # cast to a valid type because mypy doesn't understand our type narrowing
865
816
  timeout=cast(Timeout, timeout),
866
- proxies=proxies,
867
817
  base_url=base_url,
868
- transport=transport,
869
818
  max_retries=max_retries,
870
819
  custom_query=custom_query,
871
820
  custom_headers=custom_headers,
@@ -875,9 +824,6 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
875
824
  base_url=base_url,
876
825
  # cast to a valid type because mypy doesn't understand our type narrowing
877
826
  timeout=cast(Timeout, timeout),
878
- limits=limits,
879
- follow_redirects=True,
880
- **kwargs, # type: ignore
881
827
  )
882
828
 
883
829
  def is_closed(self) -> bool:
@@ -1372,45 +1318,10 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
1372
1318
  _strict_response_validation: bool,
1373
1319
  max_retries: int = DEFAULT_MAX_RETRIES,
1374
1320
  timeout: float | Timeout | None | NotGiven = NOT_GIVEN,
1375
- transport: AsyncTransport | None = None,
1376
- proxies: ProxiesTypes | None = None,
1377
- limits: Limits | None = None,
1378
1321
  http_client: httpx.AsyncClient | None = None,
1379
1322
  custom_headers: Mapping[str, str] | None = None,
1380
1323
  custom_query: Mapping[str, object] | None = None,
1381
1324
  ) -> None:
1382
- kwargs: dict[str, Any] = {}
1383
- if limits is not None:
1384
- warnings.warn(
1385
- "The `connection_pool_limits` argument is deprecated. The `http_client` argument should be passed instead",
1386
- category=DeprecationWarning,
1387
- stacklevel=3,
1388
- )
1389
- if http_client is not None:
1390
- raise ValueError("The `http_client` argument is mutually exclusive with `connection_pool_limits`")
1391
- else:
1392
- limits = DEFAULT_CONNECTION_LIMITS
1393
-
1394
- if transport is not None:
1395
- kwargs["transport"] = transport
1396
- warnings.warn(
1397
- "The `transport` argument is deprecated. The `http_client` argument should be passed instead",
1398
- category=DeprecationWarning,
1399
- stacklevel=3,
1400
- )
1401
- if http_client is not None:
1402
- raise ValueError("The `http_client` argument is mutually exclusive with `transport`")
1403
-
1404
- if proxies is not None:
1405
- kwargs["proxies"] = proxies
1406
- warnings.warn(
1407
- "The `proxies` argument is deprecated. The `http_client` argument should be passed instead",
1408
- category=DeprecationWarning,
1409
- stacklevel=3,
1410
- )
1411
- if http_client is not None:
1412
- raise ValueError("The `http_client` argument is mutually exclusive with `proxies`")
1413
-
1414
1325
  if not is_given(timeout):
1415
1326
  # if the user passed in a custom http client with a non-default
1416
1327
  # timeout set then we use that timeout.
@@ -1432,11 +1343,8 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
1432
1343
  super().__init__(
1433
1344
  version=version,
1434
1345
  base_url=base_url,
1435
- limits=limits,
1436
1346
  # cast to a valid type because mypy doesn't understand our type narrowing
1437
1347
  timeout=cast(Timeout, timeout),
1438
- proxies=proxies,
1439
- transport=transport,
1440
1348
  max_retries=max_retries,
1441
1349
  custom_query=custom_query,
1442
1350
  custom_headers=custom_headers,
@@ -1446,9 +1354,6 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
1446
1354
  base_url=base_url,
1447
1355
  # cast to a valid type because mypy doesn't understand our type narrowing
1448
1356
  timeout=cast(Timeout, timeout),
1449
- limits=limits,
1450
- follow_redirects=True,
1451
- **kwargs, # type: ignore
1452
1357
  )
1453
1358
 
1454
1359
  def is_closed(self) -> bool:
scale_gp_beta/_models.py CHANGED
@@ -65,7 +65,7 @@ from ._compat import (
65
65
  from ._constants import RAW_RESPONSE_HEADER
66
66
 
67
67
  if TYPE_CHECKING:
68
- from pydantic_core.core_schema import ModelField, LiteralSchema, ModelFieldsSchema
68
+ from pydantic_core.core_schema import ModelField, ModelSchema, LiteralSchema, ModelFieldsSchema
69
69
 
70
70
  __all__ = ["BaseModel", "GenericModel"]
71
71
 
@@ -646,15 +646,18 @@ def _build_discriminated_union_meta(*, union: type, meta_annotations: tuple[Any,
646
646
 
647
647
  def _extract_field_schema_pv2(model: type[BaseModel], field_name: str) -> ModelField | None:
648
648
  schema = model.__pydantic_core_schema__
649
+ if schema["type"] == "definitions":
650
+ schema = schema["schema"]
651
+
649
652
  if schema["type"] != "model":
650
653
  return None
651
654
 
655
+ schema = cast("ModelSchema", schema)
652
656
  fields_schema = schema["schema"]
653
657
  if fields_schema["type"] != "model-fields":
654
658
  return None
655
659
 
656
660
  fields_schema = cast("ModelFieldsSchema", fields_schema)
657
-
658
661
  field = fields_schema["fields"].get(field_name)
659
662
  if not field:
660
663
  return None
scale_gp_beta/_version.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "scale_gp_beta"
4
- __version__ = "0.1.0-alpha.3" # x-release-please-version
4
+ __version__ = "0.1.0-alpha.4" # x-release-please-version
@@ -474,53 +474,50 @@ class CompletionsResource(SyncAPIResource):
474
474
  extra_body: Body | None = None,
475
475
  timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
476
476
  ) -> CompletionCreateResponse | Stream[ChatCompletionChunk]:
477
- return cast(
478
- CompletionCreateResponse,
479
- self._post(
480
- "/v5/chat/completions",
481
- body=maybe_transform(
482
- {
483
- "messages": messages,
484
- "model": model,
485
- "audio": audio,
486
- "frequency_penalty": frequency_penalty,
487
- "function_call": function_call,
488
- "functions": functions,
489
- "logit_bias": logit_bias,
490
- "logprobs": logprobs,
491
- "max_completion_tokens": max_completion_tokens,
492
- "max_tokens": max_tokens,
493
- "metadata": metadata,
494
- "modalities": modalities,
495
- "n": n,
496
- "parallel_tool_calls": parallel_tool_calls,
497
- "prediction": prediction,
498
- "presence_penalty": presence_penalty,
499
- "reasoning_effort": reasoning_effort,
500
- "response_format": response_format,
501
- "seed": seed,
502
- "stop": stop,
503
- "store": store,
504
- "stream": stream,
505
- "stream_options": stream_options,
506
- "temperature": temperature,
507
- "tool_choice": tool_choice,
508
- "tools": tools,
509
- "top_k": top_k,
510
- "top_logprobs": top_logprobs,
511
- "top_p": top_p,
512
- },
513
- completion_create_params.CompletionCreateParams,
514
- ),
515
- options=make_request_options(
516
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
517
- ),
518
- cast_to=cast(
519
- Any, CompletionCreateResponse
520
- ), # Union types cannot be passed in as arguments in the type system
521
- stream=stream or False,
522
- stream_cls=Stream[ChatCompletionChunk],
477
+ return self._post(
478
+ "/v5/chat/completions",
479
+ body=maybe_transform(
480
+ {
481
+ "messages": messages,
482
+ "model": model,
483
+ "audio": audio,
484
+ "frequency_penalty": frequency_penalty,
485
+ "function_call": function_call,
486
+ "functions": functions,
487
+ "logit_bias": logit_bias,
488
+ "logprobs": logprobs,
489
+ "max_completion_tokens": max_completion_tokens,
490
+ "max_tokens": max_tokens,
491
+ "metadata": metadata,
492
+ "modalities": modalities,
493
+ "n": n,
494
+ "parallel_tool_calls": parallel_tool_calls,
495
+ "prediction": prediction,
496
+ "presence_penalty": presence_penalty,
497
+ "reasoning_effort": reasoning_effort,
498
+ "response_format": response_format,
499
+ "seed": seed,
500
+ "stop": stop,
501
+ "store": store,
502
+ "stream": stream,
503
+ "stream_options": stream_options,
504
+ "temperature": temperature,
505
+ "tool_choice": tool_choice,
506
+ "tools": tools,
507
+ "top_k": top_k,
508
+ "top_logprobs": top_logprobs,
509
+ "top_p": top_p,
510
+ },
511
+ completion_create_params.CompletionCreateParams,
523
512
  ),
513
+ options=make_request_options(
514
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
515
+ ),
516
+ cast_to=cast(
517
+ Any, CompletionCreateResponse
518
+ ), # Union types cannot be passed in as arguments in the type system
519
+ stream=stream or False,
520
+ stream_cls=Stream[ChatCompletionChunk],
524
521
  )
525
522
 
526
523
 
@@ -968,53 +965,50 @@ class AsyncCompletionsResource(AsyncAPIResource):
968
965
  extra_body: Body | None = None,
969
966
  timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
970
967
  ) -> CompletionCreateResponse | AsyncStream[ChatCompletionChunk]:
971
- return cast(
972
- CompletionCreateResponse,
973
- await self._post(
974
- "/v5/chat/completions",
975
- body=await async_maybe_transform(
976
- {
977
- "messages": messages,
978
- "model": model,
979
- "audio": audio,
980
- "frequency_penalty": frequency_penalty,
981
- "function_call": function_call,
982
- "functions": functions,
983
- "logit_bias": logit_bias,
984
- "logprobs": logprobs,
985
- "max_completion_tokens": max_completion_tokens,
986
- "max_tokens": max_tokens,
987
- "metadata": metadata,
988
- "modalities": modalities,
989
- "n": n,
990
- "parallel_tool_calls": parallel_tool_calls,
991
- "prediction": prediction,
992
- "presence_penalty": presence_penalty,
993
- "reasoning_effort": reasoning_effort,
994
- "response_format": response_format,
995
- "seed": seed,
996
- "stop": stop,
997
- "store": store,
998
- "stream": stream,
999
- "stream_options": stream_options,
1000
- "temperature": temperature,
1001
- "tool_choice": tool_choice,
1002
- "tools": tools,
1003
- "top_k": top_k,
1004
- "top_logprobs": top_logprobs,
1005
- "top_p": top_p,
1006
- },
1007
- completion_create_params.CompletionCreateParams,
1008
- ),
1009
- options=make_request_options(
1010
- extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1011
- ),
1012
- cast_to=cast(
1013
- Any, CompletionCreateResponse
1014
- ), # Union types cannot be passed in as arguments in the type system
1015
- stream=stream or False,
1016
- stream_cls=AsyncStream[ChatCompletionChunk],
968
+ return await self._post(
969
+ "/v5/chat/completions",
970
+ body=await async_maybe_transform(
971
+ {
972
+ "messages": messages,
973
+ "model": model,
974
+ "audio": audio,
975
+ "frequency_penalty": frequency_penalty,
976
+ "function_call": function_call,
977
+ "functions": functions,
978
+ "logit_bias": logit_bias,
979
+ "logprobs": logprobs,
980
+ "max_completion_tokens": max_completion_tokens,
981
+ "max_tokens": max_tokens,
982
+ "metadata": metadata,
983
+ "modalities": modalities,
984
+ "n": n,
985
+ "parallel_tool_calls": parallel_tool_calls,
986
+ "prediction": prediction,
987
+ "presence_penalty": presence_penalty,
988
+ "reasoning_effort": reasoning_effort,
989
+ "response_format": response_format,
990
+ "seed": seed,
991
+ "stop": stop,
992
+ "store": store,
993
+ "stream": stream,
994
+ "stream_options": stream_options,
995
+ "temperature": temperature,
996
+ "tool_choice": tool_choice,
997
+ "tools": tools,
998
+ "top_k": top_k,
999
+ "top_logprobs": top_logprobs,
1000
+ "top_p": top_p,
1001
+ },
1002
+ completion_create_params.CompletionCreateParams,
1003
+ ),
1004
+ options=make_request_options(
1005
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1017
1006
  ),
1007
+ cast_to=cast(
1008
+ Any, CompletionCreateResponse
1009
+ ), # Union types cannot be passed in as arguments in the type system
1010
+ stream=stream or False,
1011
+ stream_cls=AsyncStream[ChatCompletionChunk],
1018
1012
  )
1019
1013
 
1020
1014
 
@@ -321,6 +321,7 @@ class ModelsResource(SyncAPIResource):
321
321
  "llmengine",
322
322
  "model_zoo",
323
323
  "bedrock",
324
+ "xai",
324
325
  ]
325
326
  ]
326
327
  | NotGiven = NOT_GIVEN,
@@ -692,6 +693,7 @@ class AsyncModelsResource(AsyncAPIResource):
692
693
  "llmengine",
693
694
  "model_zoo",
694
695
  "bedrock",
696
+ "xai",
695
697
  ]
696
698
  ]
697
699
  | NotGiven = NOT_GIVEN,
@@ -153,15 +153,29 @@ class InferenceModel(BaseModel):
153
153
  api_model_type: Literal["generic", "completion", "chat_completion"] = FieldInfo(alias="model_type")
154
154
 
155
155
  api_model_vendor: Literal[
156
- "openai", "cohere", "vertex_ai", "anthropic", "azure", "gemini", "launch", "llmengine", "model_zoo", "bedrock"
156
+ "openai",
157
+ "cohere",
158
+ "vertex_ai",
159
+ "anthropic",
160
+ "azure",
161
+ "gemini",
162
+ "launch",
163
+ "llmengine",
164
+ "model_zoo",
165
+ "bedrock",
166
+ "xai",
157
167
  ] = FieldInfo(alias="model_vendor")
158
168
 
159
169
  name: str
160
170
 
161
171
  status: Literal["failed", "ready", "deploying"]
162
172
 
163
- vendor_configuration: VendorConfiguration
173
+ description: Optional[str] = None
174
+
175
+ display_name: Optional[str] = None
164
176
 
165
177
  api_model_metadata: Optional[Dict[str, object]] = FieldInfo(alias="model_metadata", default=None)
166
178
 
167
179
  object: Optional[Literal["model"]] = None
180
+
181
+ vendor_configuration: Optional[VendorConfiguration] = None
@@ -25,6 +25,7 @@ class ModelListParams(TypedDict, total=False):
25
25
  "llmengine",
26
26
  "model_zoo",
27
27
  "bedrock",
28
+ "xai",
28
29
  ]
29
30
  ]
30
31
 
@@ -1,12 +1,11 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.3
2
2
  Name: scale-gp-beta
3
- Version: 0.1.0a3
3
+ Version: 0.1.0a4
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
7
7
  Author-email: Scale GP <anish.agrawal@scale.com>
8
- License-Expression: Apache-2.0
9
- License-File: LICENSE
8
+ License: Apache-2.0
10
9
  Classifier: Intended Audience :: Developers
11
10
  Classifier: License :: OSI Approved :: Apache Software License
12
11
  Classifier: Operating System :: MacOS
@@ -230,6 +229,27 @@ for model in first_page.items:
230
229
  # Remove `await` for non-async usage.
231
230
  ```
232
231
 
232
+ ## Nested params
233
+
234
+ Nested parameters are dictionaries, typed using `TypedDict`, for example:
235
+
236
+ ```python
237
+ from scale_gp_beta import SGPClient
238
+
239
+ client = SGPClient(
240
+ account_id="My Account ID",
241
+ )
242
+
243
+ inference = client.inference.create(
244
+ model="model",
245
+ inference_configuration={
246
+ "num_retries": 0,
247
+ "timeout_seconds": 0,
248
+ },
249
+ )
250
+ print(inference.inference_configuration)
251
+ ```
252
+
233
253
  ## File uploads
234
254
 
235
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)`.
@@ -1,17 +1,17 @@
1
1
  scale_gp_beta/__init__.py,sha256=XmzYbUteZA7f7EPIFNKcPSnSgFpK6ovSlHY57Xk-WGo,2535
2
- scale_gp_beta/_base_client.py,sha256=XywO2zsh9naBp27ciYQ9dnVlKNnbT78e0NTahJjHuQM,68828
2
+ scale_gp_beta/_base_client.py,sha256=gMRzeMNQ9Z7kaex2ofZ7U0pd-E-7M754bDa7cVhQXvo,64964
3
3
  scale_gp_beta/_client.py,sha256=rinNhn5BrX9jC9AGxAs24SzyiwABd6sxoeRZGjONB6E,22601
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=PDLSNsn3Umxm3UMZPgyBiyN308rRzzPX6F9NO9FU2vs,28943
8
+ scale_gp_beta/_models.py,sha256=CTC-fpbbGneROztxHX-PkLntPt1ZMmwDqoKY9VAIOVg,29071
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
11
  scale_gp_beta/_response.py,sha256=ATtij8CjXVjmhdOWozU9Y0SP4Q_uxCYGFUHroxFnSc4,28853
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=SAWEqx7GO7myKZFHvn03A7-rs3HAk6yDJFaqWHkShh8,173
14
+ scale_gp_beta/_version.py,sha256=ptRARaMd1ajeCOLZQptI91L1KNLiCskNz_887Pb7pH4,173
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
@@ -27,12 +27,12 @@ scale_gp_beta/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
27
27
  scale_gp_beta/resources/__init__.py,sha256=CLsKitqMWj9CtyeCVAgOBuguN9NpztGeICZbOYO1qlg,3435
28
28
  scale_gp_beta/resources/completions.py,sha256=dk7Uvl8dnnieRWTJr2fhzJMZwOzGIjsYSw2GjaMWlCs,31653
29
29
  scale_gp_beta/resources/inference.py,sha256=_20eN0x0PZBPNLx2VrozQrJgRVjtlXPjeTpTcnuP0bU,7576
30
- scale_gp_beta/resources/models.py,sha256=VgRZ6WP1PEGUVgkZdM09G_QTC7gGRfYFVwJp63jbSPg,32612
30
+ scale_gp_beta/resources/models.py,sha256=85F8qPJN9lBPbfNm9F8bHpdJSsyekS9B3GDPJtCXaMA,32658
31
31
  scale_gp_beta/resources/question_sets.py,sha256=X9eGII0Nh2jP7PTU86wLB6Blj0QIvYMJWUJm0D76QIU,25923
32
32
  scale_gp_beta/resources/questions.py,sha256=XP-PJoGyGTIlNkCMhmBAUbHp2m4yT81ofBnVds4o0Jg,14835
33
33
  scale_gp_beta/resources/chat/__init__.py,sha256=BVAfz9TM3DT5W9f_mt0P9YRxL_MsUxKCWAH6u1iogmA,1041
34
34
  scale_gp_beta/resources/chat/chat.py,sha256=4OG_TrwVqYvV-7Ha8Nbc6iuXQuys9wKXgkxYmE6p6jk,3672
35
- scale_gp_beta/resources/chat/completions.py,sha256=NlowDMqoS2OAme1LzcYecxiIz9-DTRtscTU-iNycpWg,47067
35
+ scale_gp_beta/resources/chat/completions.py,sha256=ZPa4-9RNKTXldq2VjWahNrlXeO_jYGswyPzgWlPuAVQ,46581
36
36
  scale_gp_beta/resources/files/__init__.py,sha256=VgAtqUimN5Kf_-lmEaNBnu_ApGegKsJQ1zNf-42MXFA,1002
37
37
  scale_gp_beta/resources/files/content.py,sha256=oJxb-28ZOUBgzE_MiAaJOcKFmtlB-N5APdhfZBNJna8,5762
38
38
  scale_gp_beta/resources/files/files.py,sha256=M8OdZoIi3fFjJL7oIn8w9TD6TVcASCMy1Ze1YZRbPMo,20530
@@ -47,13 +47,13 @@ scale_gp_beta/types/file_list_params.py,sha256=NkyOFeSJOTcPKd-JQnYa52KOEhEOJF-aU
47
47
  scale_gp_beta/types/file_update_params.py,sha256=cZAz43aIXmc0jOz-uKWDsZIJx24NN4t9kQ2XDORvQ-Q,297
48
48
  scale_gp_beta/types/inference_create_params.py,sha256=lpdMjG-ufUDpH8bGPbt2klG0I9Q3o374WrqHBjEpPwE,665
49
49
  scale_gp_beta/types/inference_create_response.py,sha256=JgoDjN5B8zRUpOXXasD97vFKVN7A6QHKz_PN64pKB6s,390
50
- scale_gp_beta/types/inference_model.py,sha256=_OjoxKxpWWQ9iAMBvSe4S9aKil7vde-UQUzaZESczwA,4296
50
+ scale_gp_beta/types/inference_model.py,sha256=Zzc3_-YvN8Xd_4Vad5ZkYm_0lqVAbMfNtpBRHTQ2AXM,4480
51
51
  scale_gp_beta/types/inference_model_list.py,sha256=I5qlOvpe-kX2HUp-C0h47Na0w6tRfZiC5wGCJ_KMxUk,688
52
52
  scale_gp_beta/types/inference_response.py,sha256=PIX9ihGJ6IP6D6i8gk3o_mbSLy9fvRwZdGyICQKh-q8,337
53
53
  scale_gp_beta/types/inference_response_chunk.py,sha256=UIw0gVwnqtQKPTH3QAW9UYVlD0lBz7av-EzcMqF7xgg,353
54
54
  scale_gp_beta/types/model_create_params.py,sha256=K04FNqloYYTwffMHnNLRnrPNOKPgG70R6xKXZzR3Uu0,3484
55
55
  scale_gp_beta/types/model_delete_response.py,sha256=fSpTChRLHPOoc9SJbkS4wcLxVOc3kKBOya8wkGow5pY,339
56
- scale_gp_beta/types/model_list_params.py,sha256=sfC8-n2uVPZVSfpkp3NUdpfS5raFbHQy2sAgbF0Bb3E,683
56
+ scale_gp_beta/types/model_list_params.py,sha256=617LRolXLNCV8kadHK7XRGN-0woh0mvj88ZSbPLdGDg,702
57
57
  scale_gp_beta/types/model_update_params.py,sha256=RFXvs-EIDHmNO-fnPB8H6B9DlK6bYVsiwFDMPPFHGII,3701
58
58
  scale_gp_beta/types/question.py,sha256=aETwjezMGu6hxG9wCa9uBM2H0d9xKRIWu1t2S01bfdw,1597
59
59
  scale_gp_beta/types/question_create_params.py,sha256=EqXkbj9zx5M8GPpGVv0XChE-jaxSUHR_UwiyCwsOVZ8,1517
@@ -72,7 +72,7 @@ scale_gp_beta/types/chat/chat_completion_chunk.py,sha256=6anUxR5cLdhEhhSgjh3tFbH
72
72
  scale_gp_beta/types/chat/completion_create_params.py,sha256=Y7vJNvNM4Sov77l55aS5YtyRnrf7isediu3nKr6YE-A,4505
73
73
  scale_gp_beta/types/chat/completion_create_response.py,sha256=0OhfoJW8azVRrZdXRRMuiJ7kEEeMDnKScxrr3sayzDo,374
74
74
  scale_gp_beta/types/files/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
75
- scale_gp_beta-0.1.0a3.dist-info/METADATA,sha256=N6iu4Z-PoDVpti5VpgKIqrKJi7VRaMMVIlyriU4b7K8,16579
76
- scale_gp_beta-0.1.0a3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
77
- scale_gp_beta-0.1.0a3.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
78
- scale_gp_beta-0.1.0a3.dist-info/RECORD,,
75
+ scale_gp_beta-0.1.0a4.dist-info/METADATA,sha256=CC8vZUT2AtJZP0nv8HAoSXnQQ8QSMP2SkWcm01WcnRQ,16938
76
+ scale_gp_beta-0.1.0a4.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
77
+ scale_gp_beta-0.1.0a4.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
78
+ scale_gp_beta-0.1.0a4.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.27.0
2
+ Generator: hatchling 1.26.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any