网站首页 网站源码
namespace Dpz.Core.Service.Network.Models;
/// <summary>
/// 对话完成消息
/// </summary>
public class CompletionMessage
{
[JsonPropertyName("role")]
public string Role { get; set; } = string.Empty;
[JsonPropertyName("content")]
public string Content { get; set; } = string.Empty;
[JsonPropertyName("refusal")]
public string? Refusal { get; set; }
[JsonPropertyName("annotations")]
public List<object>? Annotations { get; set; }
}
