在我的聊天机器人中,我通过返回 public static AmazonCloudWatchLogsClient logClient = new AmazonCloudWatchLogsClient("YYYYY",
"XXXXX",
RegionEndpoint.USEast1);
public ActionResult Index()
{
// Code removed for brevity sake
var logGroup = logClient.DescribeLogGroups(); // This throws exception
return View();
}
暂停了对话,以暂停对话,以便真正的业务代表可以处理。但是我该如何恢复已暂停的对话?
这就是我所做的
ConversationPaused()
答案 0 :(得分:0)
使用以下类,并将以下操作包含在漫游器的域文件中。
class ActionRestarted(Action):
""" This is for restarting the chat"""
def name(self):
return "action_chat_restart"
def run(self, dispatcher, tracker, domain):
return [Restarted()]