@@ -47,18 +47,20 @@ public class OpenAiImageOptions implements ImageOptions {
4747
4848 /**
4949 * The width of the generated images. Must be one of 256, 512, or 1024 for dall-e-2.
50- * This property is interconnected with the 'size' property - setting both width and height
51- * will automatically compute and set the size in "widthxheight" format. Conversely,
52- * setting a valid size string will parse and set the individual width and height values.
50+ * This property is interconnected with the 'size' property - setting both width and
51+ * height will automatically compute and set the size in "widthxheight" format.
52+ * Conversely, setting a valid size string will parse and set the individual width and
53+ * height values.
5354 */
5455 @ JsonProperty ("size_width" )
5556 private Integer width ;
5657
5758 /**
5859 * The height of the generated images. Must be one of 256, 512, or 1024 for dall-e-2.
59- * This property is interconnected with the 'size' property - setting both width and height
60- * will automatically compute and set the size in "widthxheight" format. Conversely,
61- * setting a valid size string will parse and set the individual width and height values.
60+ * This property is interconnected with the 'size' property - setting both width and
61+ * height will automatically compute and set the size in "widthxheight" format.
62+ * Conversely, setting a valid size string will parse and set the individual width and
63+ * height values.
6264 */
6365 @ JsonProperty ("size_height" )
6466 private Integer height ;
@@ -81,10 +83,10 @@ public class OpenAiImageOptions implements ImageOptions {
8183 /**
8284 * The size of the generated images. Must be one of 256x256, 512x512, or 1024x1024 for
8385 * dall-e-2. Must be one of 1024x1024, 1792x1024, or 1024x1792 for dall-e-3 models.
84- * This property is automatically computed when both width and height are set, following
85- * the format "widthxheight". When setting this property directly, it must follow the
86- * format "WxH" where W and H are valid integers. Invalid formats will result in null
87- * width and height values.
86+ * This property is automatically computed when both width and height are set,
87+ * following the format "widthxheight". When setting this property directly, it must
88+ * follow the format "WxH" where W and H are valid integers. Invalid formats will
89+ * result in null width and height values.
8890 */
8991 @ JsonProperty ("size" )
9092 private String size ;
0 commit comments