@@ -281,9 +281,8 @@ export interface ChatCompletion {
281281 * - If set to 'default', then the request will be processed with the standard
282282 * pricing and performance for the selected model.
283283 * - If set to '[flex](https://platform.openai.com/docs/guides/flex-processing)' or
284- * 'priority', then the request will be processed with the corresponding service
285- * tier. [Contact sales](https://openai.com/contact-sales) to learn more about
286- * Priority processing.
284+ * '[priority](https://openai.com/api-priority-processing/)', then the request
285+ * will be processed with the corresponding service tier.
287286 * - When not set, the default behavior is 'auto'.
288287 *
289288 * When the `service_tier` parameter is set, the response body will include the
@@ -294,7 +293,8 @@ export interface ChatCompletion {
294293 service_tier ?: 'auto' | 'default' | 'flex' | 'scale' | 'priority' | null ;
295294
296295 /**
297- * This fingerprint represents the backend configuration that the model runs with.
296+ * @deprecated This fingerprint represents the backend configuration that the model
297+ * runs with.
298298 *
299299 * Can be used in conjunction with the `seed` request parameter to understand when
300300 * backend changes have been made that might impact determinism.
@@ -535,9 +535,8 @@ export interface ChatCompletionChunk {
535535 * - If set to 'default', then the request will be processed with the standard
536536 * pricing and performance for the selected model.
537537 * - If set to '[flex](https://platform.openai.com/docs/guides/flex-processing)' or
538- * 'priority', then the request will be processed with the corresponding service
539- * tier. [Contact sales](https://openai.com/contact-sales) to learn more about
540- * Priority processing.
538+ * '[priority](https://openai.com/api-priority-processing/)', then the request
539+ * will be processed with the corresponding service tier.
541540 * - When not set, the default behavior is 'auto'.
542541 *
543542 * When the `service_tier` parameter is set, the response body will include the
@@ -548,9 +547,9 @@ export interface ChatCompletionChunk {
548547 service_tier ?: 'auto' | 'default' | 'flex' | 'scale' | 'priority' | null ;
549548
550549 /**
551- * This fingerprint represents the backend configuration that the model runs with.
552- * Can be used in conjunction with the `seed` request parameter to understand when
553- * backend changes have been made that might impact determinism.
550+ * @deprecated This fingerprint represents the backend configuration that the model
551+ * runs with. Can be used in conjunction with the `seed` request parameter to
552+ * understand when backend changes have been made that might impact determinism.
554553 */
555554 system_fingerprint ?: string ;
556555
@@ -1664,11 +1663,11 @@ export interface ChatCompletionCreateParamsBase {
16641663 safety_identifier ?: string ;
16651664
16661665 /**
1667- * This feature is in Beta. If specified, our system will make a best effort to
1668- * sample deterministically, such that repeated requests with the same `seed` and
1669- * parameters should return the same result. Determinism is not guaranteed, and you
1670- * should refer to the `system_fingerprint` response parameter to monitor changes
1671- * in the backend.
1666+ * @deprecated This feature is in Beta. If specified, our system will make a best
1667+ * effort to sample deterministically, such that repeated requests with the same
1668+ * `seed` and parameters should return the same result. Determinism is not
1669+ * guaranteed, and you should refer to the `system_fingerprint` response parameter
1670+ * to monitor changes in the backend.
16721671 */
16731672 seed ?: number | null ;
16741673
@@ -1681,9 +1680,8 @@ export interface ChatCompletionCreateParamsBase {
16811680 * - If set to 'default', then the request will be processed with the standard
16821681 * pricing and performance for the selected model.
16831682 * - If set to '[flex](https://platform.openai.com/docs/guides/flex-processing)' or
1684- * 'priority', then the request will be processed with the corresponding service
1685- * tier. [Contact sales](https://openai.com/contact-sales) to learn more about
1686- * Priority processing.
1683+ * '[priority](https://openai.com/api-priority-processing/)', then the request
1684+ * will be processed with the corresponding service tier.
16871685 * - When not set, the default behavior is 'auto'.
16881686 *
16891687 * When the `service_tier` parameter is set, the response body will include the
@@ -1735,6 +1733,8 @@ export interface ChatCompletionCreateParamsBase {
17351733 */
17361734 temperature ?: number | null ;
17371735
1736+ text ?: ChatCompletionCreateParams . Text ;
1737+
17381738 /**
17391739 * Controls which (if any) tool is called by the model. `none` means the model will
17401740 * not call any tool and instead generates a message. `auto` means the model can
@@ -1825,6 +1825,15 @@ export namespace ChatCompletionCreateParams {
18251825 parameters ?: Shared . FunctionParameters ;
18261826 }
18271827
1828+ export interface Text {
1829+ /**
1830+ * Constrains the verbosity of the model's response. Lower values will result in
1831+ * more concise responses, while higher values will result in more verbose
1832+ * responses. Currently supported values are `low`, `medium`, and `high`.
1833+ */
1834+ verbosity ?: 'low' | 'medium' | 'high' | null ;
1835+ }
1836+
18281837 /**
18291838 * This tool searches the web for relevant results to use in a response. Learn more
18301839 * about the
0 commit comments