@@ -599,13 +599,6 @@ export interface Response {
599
599
* [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#safety-identifiers).
600
600
*/
601
601
user ?: string ;
602
-
603
- /**
604
- * Constrains the verbosity of the model's response. Lower values will result in
605
- * more concise responses, while higher values will result in more verbose
606
- * responses. Currently supported values are `low`, `medium`, and `high`.
607
- */
608
- verbosity ?: 'low' | 'medium' | 'high' | null ;
609
602
}
610
603
611
604
export namespace Response {
@@ -4305,6 +4298,13 @@ export interface ResponseTextConfig {
4305
4298
* preferred for models that support it.
4306
4299
*/
4307
4300
format ?: ResponseFormatTextConfig ;
4301
+
4302
+ /**
4303
+ * Constrains the verbosity of the model's response. Lower values will result in
4304
+ * more concise responses, while higher values will result in more verbose
4305
+ * responses. Currently supported values are `low`, `medium`, and `high`.
4306
+ */
4307
+ verbosity ?: 'low' | 'medium' | 'high' | null ;
4308
4308
}
4309
4309
4310
4310
/**
@@ -5248,13 +5248,6 @@ export interface ResponseCreateParamsBase {
5248
5248
* [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#safety-identifiers).
5249
5249
*/
5250
5250
user ?: string ;
5251
-
5252
- /**
5253
- * Constrains the verbosity of the model's response. Lower values will result in
5254
- * more concise responses, while higher values will result in more verbose
5255
- * responses. Currently supported values are `low`, `medium`, and `high`.
5256
- */
5257
- verbosity ?: 'low' | 'medium' | 'high' | null ;
5258
5251
}
5259
5252
5260
5253
export namespace ResponseCreateParams {
0 commit comments