namespace SKIT.FlurlHttpClient.Wechat.OpenAI
{
///
/// 一个用于构造 时使用的配置项。
///
public class WechatOpenAIPlatformClientOptions
{
///
/// 获取或设置请求超时时间(单位:毫秒)。
/// 默认值:30000
///
public int Timeout { get; set; } = 30 * 1000;
///
/// 获取或设置微信智能对话 API 域名。
/// 默认值:
///
public string Endpoints { get; set; } = WechatOpenAIPlatformEndpoints.DEFAULT;
///
/// 获取或设置微信智能对话 AppId。
///
public string AppId { get; set; } = string.Empty;
///
/// 获取或设置微信智能对话 Token。
///
public string Token { get; set; } = string.Empty;
///
/// 获取或设置微信智能对话 EncodingAESKey。
///
public string EncodingAESKey { get; set; } = string.Empty;
}
}