You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// The quality of the image that will be generated. hd creates images with finer details and greater consistency across the image. This param is only supported for dall-e-3.
40
+
/// Defaults to standard
41
+
publicenumQuality:String,Codable,CaseIterable{
42
+
case standard
43
+
case hd
44
+
}
45
+
46
+
/// The size of the generated images. Must be one of 256x256, 512x512, or 1024x1024 for dall-e-2. Must be one of 1024x1024, 1792x1024, or 1024x1792 for dall-e-3 models.
47
+
/// Defaults to 1024x1024
48
+
publicenumSize:String,Codable,CaseIterable{
49
+
case w1024h1024 ="1024x1024"
50
+
case w1792h1024 ="1792x1024"
51
+
case w1024h1792 ="1024x1792"
52
+
}
53
+
54
+
/// The style of the generated images. Must be one of vivid or natural. Vivid causes the model to lean towards generating hyper-real and dramatic images. Natural causes the model to produce more natural, less hyper-real looking images. This param is only supported for dall-e-3.
0 commit comments