namespace MiaoYu.Repository.ChatAI.Admin.Entities.Apps; /// /// 模型配置表 /// [EntityDescription(FieldIgnored = true)] public class T_Model_Config : DefaultEntityV4 { /// /// 模型名称 => 备注: 模型名称 /// public string? ModelName { get; set; } /// /// 模型model => 备注: 模型model /// public string? Model { get; set; } /// /// max_tokens => 备注: 模型运行最大的max_tokens /// public Int32 MaxTokens { get; set; } /// /// key x-api-key => 备注: 模型key x-api-key /// public string? ApiKey { get; set; } /// /// 模型请求地址 => 备注: 模型请求地址 /// public string? Url { get; set; } /// /// 模型版本 => 备注: 模型版本 anthropic-version /// public string? AnthropicVersion { get; set; } /// /// 创建时间 => 备注: 创建时间 /// public DateTime CreateTime { get; set; } /// /// 修改时间 => 备注: 修改时间 /// public DateTime UpdateTime { get; set; } /// /// 上下文模板 => 备注: system上下文模板 /// public string? SystemTemplate { get; set; } /// /// 请求模板 => 备注: 请求模板 /// public string? RequestTemplate { get; set; } /// /// headers对象 => 备注: headers对象 /// public string? HeadersTemplate { get; set; } /// /// 返回数据模板 => 备注: 返回数据模板 /// public string? ResponseTemplate { get; set; } /// /// 是否默认 => 备注: 是否默认 /// public Boolean? IsDefabult { get; set; } }