网站首页 网站源码
website
站点相关全部源代码,隐藏了一些关于服务器的信息
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; }
}
loading