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; }
///
/// 输出token => 备注: 模型运行最大的max_tokens
///
public Int32 MaxTokens { get; set; }
///
/// 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; }
}