Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ba39667

Browse files
stainless-app[bot]stainless-bot
authored andcommittedJun 21, 2024·
chore(doc): clarify service tier default value (#1496)
1 parent f3e6e63 commit ba39667

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed
 

‎.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 64
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-8fe357c6b5a425d810d731e4102a052d8e38c5e2d66950e6de1025415160bf88.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-3a69e1cc9e1efda3fb82d0fb35961749f886a87594dae9d8d2aa5c60f157f5d2.yml

‎src/openai/resources/chat/completions.py

+12-6
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ def create(
169169
170170
- If set to 'auto', the system will utilize scale tier credits until they are
171171
exhausted.
172-
- If set to 'default', the request will be processed in the shared cluster.
172+
- If set to 'default', the request will be processed using the default service
173+
tier with a lower uptime SLA and no latency guarentee.
173174
174175
When this parameter is set, the response body will include the `service_tier`
175176
utilized.
@@ -363,7 +364,8 @@ def create(
363364
364365
- If set to 'auto', the system will utilize scale tier credits until they are
365366
exhausted.
366-
- If set to 'default', the request will be processed in the shared cluster.
367+
- If set to 'default', the request will be processed using the default service
368+
tier with a lower uptime SLA and no latency guarentee.
367369
368370
When this parameter is set, the response body will include the `service_tier`
369371
utilized.
@@ -550,7 +552,8 @@ def create(
550552
551553
- If set to 'auto', the system will utilize scale tier credits until they are
552554
exhausted.
553-
- If set to 'default', the request will be processed in the shared cluster.
555+
- If set to 'default', the request will be processed using the default service
556+
tier with a lower uptime SLA and no latency guarentee.
554557
555558
When this parameter is set, the response body will include the `service_tier`
556559
utilized.
@@ -812,7 +815,8 @@ async def create(
812815
813816
- If set to 'auto', the system will utilize scale tier credits until they are
814817
exhausted.
815-
- If set to 'default', the request will be processed in the shared cluster.
818+
- If set to 'default', the request will be processed using the default service
819+
tier with a lower uptime SLA and no latency guarentee.
816820
817821
When this parameter is set, the response body will include the `service_tier`
818822
utilized.
@@ -1006,7 +1010,8 @@ async def create(
10061010
10071011
- If set to 'auto', the system will utilize scale tier credits until they are
10081012
exhausted.
1009-
- If set to 'default', the request will be processed in the shared cluster.
1013+
- If set to 'default', the request will be processed using the default service
1014+
tier with a lower uptime SLA and no latency guarentee.
10101015
10111016
When this parameter is set, the response body will include the `service_tier`
10121017
utilized.
@@ -1193,7 +1198,8 @@ async def create(
11931198
11941199
- If set to 'auto', the system will utilize scale tier credits until they are
11951200
exhausted.
1196-
- If set to 'default', the request will be processed in the shared cluster.
1201+
- If set to 'default', the request will be processed using the default service
1202+
tier with a lower uptime SLA and no latency guarentee.
11971203
11981204
When this parameter is set, the response body will include the `service_tier`
11991205
utilized.

‎src/openai/types/chat/completion_create_params.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,8 @@ class CompletionCreateParamsBase(TypedDict, total=False):
153153
154154
- If set to 'auto', the system will utilize scale tier credits until they are
155155
exhausted.
156-
- If set to 'default', the request will be processed in the shared cluster.
156+
- If set to 'default', the request will be processed using the default service
157+
tier with a lower uptime SLA and no latency guarentee.
157158
158159
When this parameter is set, the response body will include the `service_tier`
159160
utilized.

0 commit comments

Comments
 (0)
Please sign in to comment.