15 lines
429 B
C#
15 lines
429 B
C#
using SqlSugar;
|
|
using Yi.Framework.AiHub.Application.Contracts.Dtos.OpenAi;
|
|
using Yi.Framework.AiHub.Domain.Shared.Dtos;
|
|
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos;
|
|
|
|
public class MessageInputDto
|
|
{
|
|
public string? Content { get; set; }
|
|
public string Role { get; set; }
|
|
public string ModelId { get; set; }
|
|
public string? Remark { get; set; }
|
|
|
|
public ThorUsageResponse? TokenUsage { get; set; }
|
|
} |