openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
OpenAI_2.1.0-beta.2

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/Custom/Images/GeneratedImageQuality.cs

13lines · modepreview

namespace OpenAI.Images;

// CUSTOM: Renamed.
/// <summary> 
///     The quality of the image that will be generated. <see cref="High"/> creates images with finer details and
///     greater consistency across the image.
/// </summary>
[CodeGenModel("CreateImageRequestQuality")]
public readonly partial struct GeneratedImageQuality
{
    [CodeGenMember("Hd")]
    public static GeneratedImageQuality High { get; } = new GeneratedImageQuality(HighValue);
}