openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Custom/Images/GeneratedImageStyle.cs
12lines · modecode
| 1 | namespace OpenAI.Images; |
| 2 | |
| 3 | // CUSTOM: Renamed. |
| 4 | /// <summary> |
| 5 | /// The style of the image that will be generated. <see cref="Vivid"/> causes the model to lean towards generating |
| 6 | /// hyper-real and dramatic images. <see cref="Natural"> causes the model to produce more natural, less hyper-real |
| 7 | /// looking images. |
| 8 | /// </summary> |
| 9 | [CodeGenType("CreateImageRequestStyle")] |
| 10 | public readonly partial struct GeneratedImageStyle |
| 11 | { |
| 12 | } |