如何在 Watson Conversation 中触发对话?

How can I trigger a dialog in Watson Conversation?

我需要在 ibm-watson 对话中触发特定对话,但不要求用户输入内容(如意图)。我需要使用 botkit 来初始化一个特定的对话框。那有可能吗?我在 Google 中寻找所有可能的文档和链接,但没有成功:/

发送初始空消息会触发对话框中的 welcome 事件。
为了让它做一些不同的事情,您可以在上下文中设置一些变量,并为该变量添加条件以欢迎对话框中的分支。

这就是我在我的机器人中实现它的方式:

function handleHelloEvent(bot, message) {
    message.type = 'welcome';
    const contextDelta: any = {};

    if (message.intent) {
        contextDelta.initialIntent = message.intent;
    }
    //more fields here

    watsonMiddleware.sendToWatsonAsync(bot, message, contextDelta).catch((error) => {
        message.watsonError = error;
    }).then(() => {
        //this is the same function which handles message_received events
        return handleWatsonResponse(bot, message);
    });
}

function handleWatsonResponse(bot, message) {
    bot.reply(message, message.watsonData.output.text.join('\n'));
}

controller.on('hello', handleHelloEvent);
controller.on('message_received', handleWatsonResponse);

hello事件特定于webchat/botkit任何地方,您可能需要为不同的平台处理不同的事件。
代码处理欢迎事件的类似示例:https://github.com/watson-developer-cloud/botkit-middleware/#dynamic-workspace
(那个也是我写的,有点太像了)

对话框示例: