feat(openai): 新增 NLP 相关接口

This commit is contained in:
Fu Diwei
2021-10-11 18:34:21 +08:00
parent 38f05bc467
commit 592e4e3587
38 changed files with 1617 additions and 42 deletions

View File

@@ -33,13 +33,13 @@
public string? AppId { get; set; }
/// <summary>
/// 获取或设置微信智能对话服务器推送的 EncodingAESKey。仅限平台接入时使用。
/// 获取或设置微信智能对话 Token。仅限平台接入时使用。
/// </summary>
public string? PushEncodingAESKey { get; set; }
public string? Token { get; set; }
/// <summary>
/// 获取或设置微信智能对话服务器推送的 Token。仅限平台接入时使用。
/// 获取或设置微信智能对话 EncodingAESKey。仅限平台接入时使用。
/// </summary>
public string? PushToken { get; set; }
public string? EncodingAESKey { get; set; }
}
}