node.js - Azure Bot Framework V4 (NodeJS) - LUIS 识别器返回错误?

标签 node.js azure botframework chatbot azure-language-understanding

使用 Azure Bot Framework 和 LUIS.ai 识别用户意图。使用文本对端点执行 get 请求会返回我期望的 json 对象,但是使用内置 Luis 识别器时,我收到以下错误:“无法读取未定义的属性 'get'”。从此处的文档:https://learn.microsoft.com/en-us/azure/cognitive-services/luis/luis-nodejs-tutorial-bf-v4这似乎是正确的配置,所以我不确定出了什么问题。有什么想法吗?


const { ComponentDialog, DialogSet, DialogTurnStatus, WaterfallDialog, ChoicePrompt, TextPrompt } = require('botbuilder-dialogs');
const { TopLevelDialog, TOP_LEVEL_DIALOG } = require('./topLevelDialog');

const { LuisRecognizer, QnAMaker } = require('botbuilder-ai');
const axios = require('axios');

const MAIN_DIALOG = 'MAIN_DIALOG';
const WATERFALL_DIALOG = 'WATERFALL_DIALOG';
const USER_PROFILE_PROPERTY = 'USER_PROFILE_PROPERTY';
const CHOICE_PROMPT = 'CHOICE_PROMPT';
const TEXT_PROMPT = 'TEXT_PROMPT';


class MainDialog extends ComponentDialog {
    constructor(userState) {
        super(MAIN_DIALOG);
        this.userState = userState;
        this.userProfileAccessor = userState.createProperty(USER_PROFILE_PROPERTY);

        this.addDialog(new TextPrompt(TEXT_PROMPT));
        this.addDialog(new TopLevelDialog());
        this.addDialog(new WaterfallDialog(WATERFALL_DIALOG, [
            this.initialStep.bind(this),
            this.askIfFinishedStep.bind(this),
            this.finalStep.bind(this)
        ]));

        this.initialDialogId = WATERFALL_DIALOG;

        let luisConfig = {
            applicationId: '',
            endpointKey: '',
            endpoint: '',
        };

        this.Luis = new LuisRecognizer(
            luisConfig, 
            {
                includeAllIntents: true,
                log: true,
                staging: false            
            },
            true
            );        

    }

    async run(turnContext, accessor) {
        const dialogSet = new DialogSet(accessor);
        dialogSet.add(this);

        const dialogContext = await dialogSet.createContext(turnContext);
        const results = await dialogContext.continueDialog();
        if (results.status === DialogTurnStatus.empty) {
            await dialogContext.beginDialog(this.id);
        }
    }

    async initialStep(stepContext) {

        let luisAnalysis = await this.Luis.recognize(stepContext);

        let queryString = encodeURIComponent(stepContext.context._activity.text);

        /*
         Ignore this if statement - only in use with the get request 
        */
        if(luisResponse.data.topScoringIntent.intent === 'TrainingExpiry' && luisResponse.data.topScoringIntent.score > .75)
        {
            return await stepContext.beginDialog(TOP_LEVEL_DIALOG);
        }
        else 
        {
            await stepContext.context.sendActivity("I'm sorry, that is not supported at this time or a high enough intent was not acknowledged.");
            await stepContext.context.sendActivity("Top intent: " + luisResponse.data.topScoringIntent.intent + " Score: " + luisResponse.data.topScoringIntent.score);

            return await stepContext.next();
        }        
    }

    async askIfFinishedStep(stepContext) {
        const promptOptions = { prompt: 'Is there anything else I can assist you with?' };

        return await stepContext.prompt(TEXT_PROMPT, promptOptions);
    }

    async finalStep(stepContext) {

        if(stepContext.context._activity.text.toLowerCase() === 'no')
        {
            await stepContext.context.sendActivity("Good bye");

            return await stepContext.endDialog();
        }
        else 
        {
            return await stepContext.beginDialog(MAIN_DIALOG);
        }
    }
}

module.exports.MainDialog = MainDialog;
module.exports.MAIN_DIALOG = MAIN_DIALOG;

注意:正如 @billoverton 指出的那样,问题在于我的参数被传递给识别器。解决方案是传递stepContext.context。

最佳答案

从 botbuilder-ai 模块查看 luisRecognizer.js,错误是因为识别器需要一个turnContext(带有turnState 属性),而您正在发送一个stepContext。 stepContext 上不存在turnState,因此 get 属性失败并导致错误。如果您改为发送 stepContext.context,则可以解决该问题,即 let luisAnalysis = wait this.Luis.recognize(stepContext.context);

关于node.js - Azure Bot Framework V4 (NodeJS) - LUIS 识别器返回错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60436192/

相关文章:

javascript - 如何使用 Microsoft Bot Builder SDK for Node.js 动态生成对话框?

javascript - 对于 Stripe 连接帐户,account.updated webhook 对象的哪一部分表明该帐户已启用?

flutter User.Read azure Active Directory "Insufficient privileges to complete the operation"

java - 是否可以为 azure blob 存储中的给定目录生成具有写入权限的 SAS(共享访问签名)

c# - Telegram 有办法用 Bot Framework 显示轮播吗?

botframework - 每条消息都将自定义数据发送到后端?

javascript - 我收到错误 "indexRouter is not defined"

javascript - 是否可以从网页返回数据到主服务器

node.js - 通过 Sequelize 连接表嵌套关联数据

wcf - Azure REST PUT 或 DELETE 返回 401