mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 08:26:37 +08:00
23 lines
559 B
C#
23 lines
559 B
C#
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.Chat;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 图片生成输入
|
|||
|
|
/// </summary>
|
|||
|
|
public class ImageGenerationInput
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 提示词
|
|||
|
|
/// </summary>
|
|||
|
|
public string Prompt { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 模型ID
|
|||
|
|
/// </summary>
|
|||
|
|
public string ModelId { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 参考图Base64列表(可选,包含前缀如 data:image/png;base64,...)
|
|||
|
|
/// </summary>
|
|||
|
|
public List<string>? ReferenceImagesBase64 { get; set; }
|
|||
|
|
}
|