Tag: chatbot

IBM Watson会话服务错误:无法从“方法组”转换为“conversation.onMessage”

我试图统一运行IBM Watson 会话服务 ,然后在这里,代码片段 private Conversation m_Conversation = new Conversation(); private string m_WrokspaceID = “xyz”; private string m_input = “help”; // Use this for initialization void Start () { Debug.Log(“user : ” + m_input); m_Conversation.Message(OnMessage, m_WrokspaceID, m_input); } void OnMessage(MessageResponse resp, string customData) { foreach (Intent mi in resp.intents) { Debug.Log(“intent : ” + mi.intent […]

在FormFlows – Bot Framework中为Quit添加另一个关键字

是否可以使用Bot Framework在FormDialog中更改Quit突击队的关键字? 我想在键入某个单词时抛出FormCanceledException(不使用英语作为语言)。 如果我可以更改关键字,或者添加另一个与Quit相同的关键字,那将是完美的