namespace Yi.Framework.AiHub.Application.Contracts.Dtos.Chat;
///
/// 图片生成输入
///
public class ImageGenerationInput
{
///
/// 密钥id
///
public Guid? TokenId { get; set; }
///
/// 提示词
///
public string Prompt { get; set; } = string.Empty;
///
/// 模型ID
///
public string ModelId { get; set; } = string.Empty;
///
/// 参考图PrefixBase64列表(可选,包含前缀如 data:image/png;base64,...)
///
public List? ReferenceImagesPrefixBase64 { get; set; }
}