mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-16 07:59:44 +08:00
18 lines
484 B
C#
18 lines
484 B
C#
namespace SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests
|
|
{
|
|
internal class TestClients
|
|
{
|
|
static TestClients()
|
|
{
|
|
Instance = new WechatOpenAIClient(new WechatOpenAIClientOptions()
|
|
{
|
|
AppId = TestConfigs.WechatAppId,
|
|
Token = TestConfigs.WechatToken,
|
|
EncodingAESKey = TestConfigs.WechatEncodingAESKey
|
|
});
|
|
}
|
|
|
|
public static readonly WechatOpenAIClient Instance;
|
|
}
|
|
}
|