Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public partial interface IImagesClient
/// </param>
/// <param name="partialImages"></param>
/// <param name="size">
/// The size of the generated images. Must be one of `1024x1024`, `1536x1024` (landscape), `1024x1536` (portrait), or `auto` (default value) for the GPT image models, one of `256x256`, `512x512`, or `1024x1024` for `dall-e-2`, and one of `1024x1024`, `1792x1024`, or `1024x1792` for `dall-e-3`.<br/>
/// The size of the generated images. For `gpt-image-2` and `gpt-image-2-2026-04-21`, arbitrary resolutions are supported as `WIDTHxHEIGHT` strings, for example `1536x864`. Width and height must both be divisible by 16 and the requested aspect ratio must be between 1:3 and 3:1. Resolutions above `2560x1440` are experimental, and the maximum supported resolution is `3840x2160`. The requested size must also satisfy the model's current pixel and edge limits. The standard sizes `1024x1024`, `1536x1024`, and `1024x1536` are supported by the GPT image models; `auto` is supported for models that allow automatic sizing. For `dall-e-2`, use one of `256x256`, `512x512`, or `1024x1024`. For `dall-e-3`, use one of `1024x1024`, `1792x1024`, or `1024x1792`.<br/>
/// Default Value: auto<br/>
/// Example: 1024x1024
/// </param>
Expand Down Expand Up @@ -111,7 +111,7 @@ public partial interface IImagesClient
global::tryAGI.OpenAI.CreateImageRequestOutputFormat? outputFormat = default,
int? outputCompression = default,
int? partialImages = default,
global::tryAGI.OpenAI.CreateImageRequestSize? size = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageRequestSize?>? size = default,
global::tryAGI.OpenAI.CreateImageRequestModeration? moderation = default,
global::tryAGI.OpenAI.CreateImageRequestBackground? background = default,
global::tryAGI.OpenAI.CreateImageRequestStyle? style = default,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public partial interface IImagesClient
/// </param>
/// <param name="partialImages"></param>
/// <param name="size">
/// The size of the generated images. Must be one of `1024x1024`, `1536x1024` (landscape), `1024x1536` (portrait), or `auto` (default value) for the GPT image models, one of `256x256`, `512x512`, or `1024x1024` for `dall-e-2`, and one of `1024x1024`, `1792x1024`, or `1024x1792` for `dall-e-3`.<br/>
/// The size of the generated images. For `gpt-image-2` and `gpt-image-2-2026-04-21`, arbitrary resolutions are supported as `WIDTHxHEIGHT` strings, for example `1536x864`. Width and height must both be divisible by 16 and the requested aspect ratio must be between 1:3 and 3:1. Resolutions above `2560x1440` are experimental, and the maximum supported resolution is `3840x2160`. The requested size must also satisfy the model's current pixel and edge limits. The standard sizes `1024x1024`, `1536x1024`, and `1024x1536` are supported by the GPT image models; `auto` is supported for models that allow automatic sizing. For `dall-e-2`, use one of `256x256`, `512x512`, or `1024x1024`. For `dall-e-3`, use one of `1024x1024`, `1792x1024`, or `1024x1792`.<br/>
/// Default Value: auto<br/>
/// Example: 1024x1024
/// </param>
Expand Down Expand Up @@ -99,7 +99,7 @@ public partial interface IImagesClient
global::tryAGI.OpenAI.CreateImageRequestOutputFormat? outputFormat = default,
int? outputCompression = default,
int? partialImages = default,
global::tryAGI.OpenAI.CreateImageRequestSize? size = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageRequestSize?>? size = default,
global::tryAGI.OpenAI.CreateImageRequestModeration? moderation = default,
global::tryAGI.OpenAI.CreateImageRequestBackground? background = default,
global::tryAGI.OpenAI.CreateImageRequestStyle? style = default,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public partial interface IImagesClient
/// Example: 1
/// </param>
/// <param name="size">
/// The size of the generated images. Must be one of `1024x1024`, `1536x1024` (landscape), `1024x1536` (portrait), or `auto` (default value) for the GPT image models, and one of `256x256`, `512x512`, or `1024x1024` for `dall-e-2`.<br/>
/// The size of the generated images. For `gpt-image-2` and `gpt-image-2-2026-04-21`, arbitrary resolutions are supported as `WIDTHxHEIGHT` strings, for example `1536x864`. Width and height must both be divisible by 16 and the requested aspect ratio must be between 1:3 and 3:1. Resolutions above `2560x1440` are experimental, and the maximum supported resolution is `3840x2160`. The requested size must also satisfy the model's current pixel and edge limits. The standard sizes `1024x1024`, `1536x1024`, and `1024x1536` are supported by the GPT image models; `auto` is supported for models that allow automatic sizing. For `dall-e-2`, use one of `256x256`, `512x512`, or `1024x1024`. For `dall-e-3`, use one of `1024x1024`, `1792x1024`, or `1024x1792`.<br/>
/// Default Value: 1024x1024<br/>
/// Example: 1024x1024
/// </param>
Expand Down Expand Up @@ -126,7 +126,7 @@ public partial interface IImagesClient
global::tryAGI.OpenAI.CreateImageEditRequestBackground? background = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageEditRequestModel?>? model = default,
int? n = default,
global::tryAGI.OpenAI.CreateImageEditRequestSize? size = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageEditRequestSize?>? size = default,
global::tryAGI.OpenAI.CreateImageEditRequestResponseFormat? responseFormat = default,
global::tryAGI.OpenAI.CreateImageEditRequestOutputFormat? outputFormat = default,
int? outputCompression = default,
Expand Down Expand Up @@ -183,7 +183,7 @@ public partial interface IImagesClient
/// Example: 1
/// </param>
/// <param name="size">
/// The size of the generated images. Must be one of `1024x1024`, `1536x1024` (landscape), `1024x1536` (portrait), or `auto` (default value) for the GPT image models, and one of `256x256`, `512x512`, or `1024x1024` for `dall-e-2`.<br/>
/// The size of the generated images. For `gpt-image-2` and `gpt-image-2-2026-04-21`, arbitrary resolutions are supported as `WIDTHxHEIGHT` strings, for example `1536x864`. Width and height must both be divisible by 16 and the requested aspect ratio must be between 1:3 and 3:1. Resolutions above `2560x1440` are experimental, and the maximum supported resolution is `3840x2160`. The requested size must also satisfy the model's current pixel and edge limits. The standard sizes `1024x1024`, `1536x1024`, and `1024x1536` are supported by the GPT image models; `auto` is supported for models that allow automatic sizing. For `dall-e-2`, use one of `256x256`, `512x512`, or `1024x1024`. For `dall-e-3`, use one of `1024x1024`, `1792x1024`, or `1024x1792`.<br/>
/// Default Value: 1024x1024<br/>
/// Example: 1024x1024
/// </param>
Expand Down Expand Up @@ -227,7 +227,7 @@ public partial interface IImagesClient
global::tryAGI.OpenAI.CreateImageEditRequestBackground? background = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageEditRequestModel?>? model = default,
int? n = default,
global::tryAGI.OpenAI.CreateImageEditRequestSize? size = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageEditRequestSize?>? size = default,
global::tryAGI.OpenAI.CreateImageEditRequestResponseFormat? responseFormat = default,
global::tryAGI.OpenAI.CreateImageEditRequestOutputFormat? outputFormat = default,
int? outputCompression = default,
Expand Down Expand Up @@ -283,7 +283,7 @@ public partial interface IImagesClient
/// Example: 1
/// </param>
/// <param name="size">
/// The size of the generated images. Must be one of `1024x1024`, `1536x1024` (landscape), `1024x1536` (portrait), or `auto` (default value) for the GPT image models, and one of `256x256`, `512x512`, or `1024x1024` for `dall-e-2`.<br/>
/// The size of the generated images. For `gpt-image-2` and `gpt-image-2-2026-04-21`, arbitrary resolutions are supported as `WIDTHxHEIGHT` strings, for example `1536x864`. Width and height must both be divisible by 16 and the requested aspect ratio must be between 1:3 and 3:1. Resolutions above `2560x1440` are experimental, and the maximum supported resolution is `3840x2160`. The requested size must also satisfy the model's current pixel and edge limits. The standard sizes `1024x1024`, `1536x1024`, and `1024x1536` are supported by the GPT image models; `auto` is supported for models that allow automatic sizing. For `dall-e-2`, use one of `256x256`, `512x512`, or `1024x1024`. For `dall-e-3`, use one of `1024x1024`, `1792x1024`, or `1024x1792`.<br/>
/// Default Value: 1024x1024<br/>
/// Example: 1024x1024
/// </param>
Expand Down Expand Up @@ -327,7 +327,7 @@ public partial interface IImagesClient
global::tryAGI.OpenAI.CreateImageEditRequestBackground? background = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageEditRequestModel?>? model = default,
int? n = default,
global::tryAGI.OpenAI.CreateImageEditRequestSize? size = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageEditRequestSize?>? size = default,
global::tryAGI.OpenAI.CreateImageEditRequestResponseFormat? responseFormat = default,
global::tryAGI.OpenAI.CreateImageEditRequestOutputFormat? outputFormat = default,
int? outputCompression = default,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public partial interface IImagesClient
/// Example: 1
/// </param>
/// <param name="size">
/// The size of the generated images. Must be one of `1024x1024`, `1536x1024` (landscape), `1024x1536` (portrait), or `auto` (default value) for the GPT image models, and one of `256x256`, `512x512`, or `1024x1024` for `dall-e-2`.<br/>
/// The size of the generated images. For `gpt-image-2` and `gpt-image-2-2026-04-21`, arbitrary resolutions are supported as `WIDTHxHEIGHT` strings, for example `1536x864`. Width and height must both be divisible by 16 and the requested aspect ratio must be between 1:3 and 3:1. Resolutions above `2560x1440` are experimental, and the maximum supported resolution is `3840x2160`. The requested size must also satisfy the model's current pixel and edge limits. The standard sizes `1024x1024`, `1536x1024`, and `1024x1536` are supported by the GPT image models; `auto` is supported for models that allow automatic sizing. For `dall-e-2`, use one of `256x256`, `512x512`, or `1024x1024`. For `dall-e-3`, use one of `1024x1024`, `1792x1024`, or `1024x1792`.<br/>
/// Default Value: 1024x1024<br/>
/// Example: 1024x1024
/// </param>
Expand Down Expand Up @@ -110,7 +110,7 @@ public partial interface IImagesClient
global::tryAGI.OpenAI.CreateImageEditRequestBackground? background = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageEditRequestModel?>? model = default,
int? n = default,
global::tryAGI.OpenAI.CreateImageEditRequestSize? size = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageEditRequestSize?>? size = default,
global::tryAGI.OpenAI.CreateImageEditRequestResponseFormat? responseFormat = default,
global::tryAGI.OpenAI.CreateImageEditRequestOutputFormat? outputFormat = default,
int? outputCompression = default,
Expand Down Expand Up @@ -167,7 +167,7 @@ public partial interface IImagesClient
/// Example: 1
/// </param>
/// <param name="size">
/// The size of the generated images. Must be one of `1024x1024`, `1536x1024` (landscape), `1024x1536` (portrait), or `auto` (default value) for the GPT image models, and one of `256x256`, `512x512`, or `1024x1024` for `dall-e-2`.<br/>
/// The size of the generated images. For `gpt-image-2` and `gpt-image-2-2026-04-21`, arbitrary resolutions are supported as `WIDTHxHEIGHT` strings, for example `1536x864`. Width and height must both be divisible by 16 and the requested aspect ratio must be between 1:3 and 3:1. Resolutions above `2560x1440` are experimental, and the maximum supported resolution is `3840x2160`. The requested size must also satisfy the model's current pixel and edge limits. The standard sizes `1024x1024`, `1536x1024`, and `1024x1536` are supported by the GPT image models; `auto` is supported for models that allow automatic sizing. For `dall-e-2`, use one of `256x256`, `512x512`, or `1024x1024`. For `dall-e-3`, use one of `1024x1024`, `1792x1024`, or `1024x1792`.<br/>
/// Default Value: 1024x1024<br/>
/// Example: 1024x1024
/// </param>
Expand Down Expand Up @@ -211,7 +211,7 @@ public partial interface IImagesClient
global::tryAGI.OpenAI.CreateImageEditRequestBackground? background = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageEditRequestModel?>? model = default,
int? n = default,
global::tryAGI.OpenAI.CreateImageEditRequestSize? size = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageEditRequestSize?>? size = default,
global::tryAGI.OpenAI.CreateImageEditRequestResponseFormat? responseFormat = default,
global::tryAGI.OpenAI.CreateImageEditRequestOutputFormat? outputFormat = default,
int? outputCompression = default,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ partial void ProcessCreateImageResponseContent(
/// </param>
/// <param name="partialImages"></param>
/// <param name="size">
/// The size of the generated images. Must be one of `1024x1024`, `1536x1024` (landscape), `1024x1536` (portrait), or `auto` (default value) for the GPT image models, one of `256x256`, `512x512`, or `1024x1024` for `dall-e-2`, and one of `1024x1024`, `1792x1024`, or `1024x1792` for `dall-e-3`.<br/>
/// The size of the generated images. For `gpt-image-2` and `gpt-image-2-2026-04-21`, arbitrary resolutions are supported as `WIDTHxHEIGHT` strings, for example `1536x864`. Width and height must both be divisible by 16 and the requested aspect ratio must be between 1:3 and 3:1. Resolutions above `2560x1440` are experimental, and the maximum supported resolution is `3840x2160`. The requested size must also satisfy the model's current pixel and edge limits. The standard sizes `1024x1024`, `1536x1024`, and `1024x1536` are supported by the GPT image models; `auto` is supported for models that allow automatic sizing. For `dall-e-2`, use one of `256x256`, `512x512`, or `1024x1024`. For `dall-e-3`, use one of `1024x1024`, `1792x1024`, or `1024x1792`.<br/>
/// Default Value: auto<br/>
/// Example: 1024x1024
/// </param>
Expand Down Expand Up @@ -535,7 +535,7 @@ partial void ProcessCreateImageResponseContent(
global::tryAGI.OpenAI.CreateImageRequestOutputFormat? outputFormat = default,
int? outputCompression = default,
int? partialImages = default,
global::tryAGI.OpenAI.CreateImageRequestSize? size = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageRequestSize?>? size = default,
global::tryAGI.OpenAI.CreateImageRequestModeration? moderation = default,
global::tryAGI.OpenAI.CreateImageRequestBackground? background = default,
global::tryAGI.OpenAI.CreateImageRequestStyle? style = default,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ partial void ProcessCreateImageAsStreamResponse(
/// </param>
/// <param name="partialImages"></param>
/// <param name="size">
/// The size of the generated images. Must be one of `1024x1024`, `1536x1024` (landscape), `1024x1536` (portrait), or `auto` (default value) for the GPT image models, one of `256x256`, `512x512`, or `1024x1024` for `dall-e-2`, and one of `1024x1024`, `1792x1024`, or `1024x1792` for `dall-e-3`.<br/>
/// The size of the generated images. For `gpt-image-2` and `gpt-image-2-2026-04-21`, arbitrary resolutions are supported as `WIDTHxHEIGHT` strings, for example `1536x864`. Width and height must both be divisible by 16 and the requested aspect ratio must be between 1:3 and 3:1. Resolutions above `2560x1440` are experimental, and the maximum supported resolution is `3840x2160`. The requested size must also satisfy the model's current pixel and edge limits. The standard sizes `1024x1024`, `1536x1024`, and `1024x1536` are supported by the GPT image models; `auto` is supported for models that allow automatic sizing. For `dall-e-2`, use one of `256x256`, `512x512`, or `1024x1024`. For `dall-e-3`, use one of `1024x1024`, `1792x1024`, or `1024x1792`.<br/>
/// Default Value: auto<br/>
/// Example: 1024x1024
/// </param>
Expand Down Expand Up @@ -478,7 +478,7 @@ partial void ProcessCreateImageAsStreamResponse(
global::tryAGI.OpenAI.CreateImageRequestOutputFormat? outputFormat = default,
int? outputCompression = default,
int? partialImages = default,
global::tryAGI.OpenAI.CreateImageRequestSize? size = default,
global::tryAGI.OpenAI.AnyOf<string, global::tryAGI.OpenAI.CreateImageRequestSize?>? size = default,
global::tryAGI.OpenAI.CreateImageRequestModeration? moderation = default,
global::tryAGI.OpenAI.CreateImageRequestBackground? background = default,
global::tryAGI.OpenAI.CreateImageRequestStyle? style = default,
Expand Down
Loading
Loading