mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-22 17:58:34 +08:00
13 lines
283 B
C#
13 lines
283 B
C#
namespace Yi.Framework.AiHub.Application.Contracts.Dtos;
|
|
|
|
public class SendMessageInput
|
|
{
|
|
public List<Message> Messages { get; set; }
|
|
public string Model { get; set; }
|
|
}
|
|
|
|
public class Message
|
|
{
|
|
public string Role { get; set; }
|
|
public string Content { get; set; }
|
|
} |