mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Yi.Framework.AiHub.Domain.Shared.Dtos.OpenAi.Images;
|
|
|
|
public record ImageEditCreateRequest : SharedImageRequestBaseModel
|
|
{
|
|
/// <summary>
|
|
/// The image to edit. Must be a valid PNG file, less than 4MB, and square.
|
|
/// </summary>
|
|
public byte[]? Image { get; set; }
|
|
|
|
/// <summary>
|
|
/// Image file name
|
|
/// </summary>
|
|
public string ImageName { get; set; }
|
|
|
|
/// <summary>
|
|
/// An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where image should be edited.
|
|
/// Must be a valid PNG file, less than 4MB, and have the same dimensions as image.
|
|
/// </summary>
|
|
public byte[]? Mask { get; set; }
|
|
|
|
/// <summary>
|
|
/// Mask file name
|
|
/// </summary>
|
|
public string? MaskName { get; set; }
|
|
|
|
[JsonPropertyName("quality")]
|
|
public string Quality { get; set; }
|
|
|
|
/// <summary>
|
|
/// A text description of the desired image(s). The maximum length is 1000 characters.
|
|
/// </summary>
|
|
[JsonPropertyName("prompt")]
|
|
public string Prompt { get; set; }
|
|
|
|
[JsonPropertyName("background")]
|
|
public string? Background { get; set; }
|
|
|
|
[JsonPropertyName("moderation")]
|
|
public string? Moderation { get; set; }
|
|
|
|
[JsonPropertyName("output_compression")]
|
|
public string? OutputCompression { get; set; }
|
|
|
|
[JsonPropertyName("output_format")]
|
|
public string? OutputFormat { get; set; }
|
|
|
|
[JsonPropertyName("style")]
|
|
public string? Style { get; set; }
|
|
} |