openai/openai-dotnet

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
achandmsft-patch-1

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/Custom/Images/GeneratedImageQuality.cs

13lines · modecode

1namespace 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")]
9public readonly partial struct GeneratedImageQuality
10{
11 [CodeGenMember("Hd")]
12 public static GeneratedImageQuality High { get; } = new GeneratedImageQuality(HdValue);
13}