I'm getting this error because Dispatch does not like my either my QnAKnowledgebaseId or QnAEndpointKey located in my .env file. I know the Id and Key are correct because I've tripled checked it and made sure the Id and Key came from my qna.ai portal. Somehow when dispatchbot.js is loaded up, it does not like my Id or Key:
const qnaMaker = new QnAMaker({
knowledgeBaseId: process.env.QnAKnowledgebaseId,
endpointKey: process.env.QnAEndpointKey,
host: process.env.QnAEndpointHostName
});
Anyone have any idea why I am still getting this error?