mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-29 18:04:42 +08:00
feat(openai): 导入对话开放平台项目
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests
|
||||
{
|
||||
class TestClients
|
||||
{
|
||||
static TestClients()
|
||||
{
|
||||
Instance = new WechatOpenAIClient(new WechatOpenAIClientOptions()
|
||||
{
|
||||
ClientId = TestConfigs.WechatClientId,
|
||||
ClientKey = TestConfigs.WechatClientKey
|
||||
});
|
||||
}
|
||||
|
||||
public static readonly WechatOpenAIClient Instance;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user