从今天早上开始,我无法连接到我在东南亚的LUIS实例。
using (var luis = new LuisClient("AppIdHere", "SecretKeyHere", domain: "southeastasia"))
{
try
{
return await luis.Predict(message.Text);
}
catch (Exception e)
{
throw;
}
}
返回的信息是:"応答の状态コードは成功を示していません:500(内部服务器错误)。"
额外信息:
在针对dotnet framework 4.6的BotFramework项目中使用Microsoft.Cognitive.LUIS版本2.0.2。