openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Custom/Images/GeneratedImageQuality.cs
13lines · modecode
| 1 | namespace OpenAI.Images; |
| 2 | |
| 3 | // CUSTOM: Renamed. |
| 4 | /// <summary> |
| 5 | /// The quality of the image that will be generated. <see cref="High"/> creates images with finer details and |
| 6 | /// greater consistency across the image. |
| 7 | /// </summary> |
| 8 | [CodeGenType("CreateImageRequestQuality")] |
| 9 | public readonly partial struct GeneratedImageQuality |
| 10 | { |
| 11 | [CodeGenMember("Hd")] |
| 12 | public static GeneratedImageQuality High { get; } = new GeneratedImageQuality(HdValue); |
| 13 | } |