@@ -599,13 +599,6 @@ export interface Response {
599599 * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#safety-identifiers).
600600 */
601601 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 ;
609602}
610603
611604export namespace Response {
@@ -4305,6 +4298,13 @@ export interface ResponseTextConfig {
43054298 * preferred for models that support it.
43064299 */
43074300 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 ;
43084308}
43094309
43104310/**
@@ -5248,13 +5248,6 @@ export interface ResponseCreateParamsBase {
52485248 * [Learn more](https://platform.openai.com/docs/guides/safety-best-practices#safety-identifiers).
52495249 */
52505250 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 ;
52585251}
52595252
52605253export namespace ResponseCreateParams {
0 commit comments