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