Questions tagged [azure-bot-service]

Questions related to the Azure Bot Service

Tag is used for questions related to the Azure Bot Service (https://azure.microsoft.com/en-us/services/bot-service/)

956 questions
0
votes
0 answers

How to enable websocket in Azure bot service?

How to enable websocket option in Azure bot service? There is a websocket option available in the app service application settings but it is missing in bot service. I'm running a nodejs bot with sample template and added websocket. "use strict"; var…
rebornx
  • 407
  • 6
  • 21
0
votes
0 answers

Prompt response "I didn't understand" when user input is 3 or less characters

This dialog prompts a user for an acronym to be searched in a JavaScript Object. When the user input is less than 4 characters the bot returns: "I didn't understand. Please try again." When I provide an acronym that is 4 or more characters the…
0
votes
2 answers

Exposing additional endpoints through Azure Bot Service

I'm creating a proactive bot, that once an endpoint was accessed with the right parameters it will start a new dialog with a specific user. locally it is easy to be done with Restify or Express, by just adding a server.get method. How can I do it…
Amit be
  • 469
  • 3
  • 13
0
votes
0 answers

Issue when i deploy code from github to Azure Bot Service

I use Github to deploy a bot build with BotFramework on Azure Bot Service. It's a bot who use the Facebook messenger platform. Since 2 weeks i have no issue but since today when i edit code and i push i have no change on the Facebook messenger…
0
votes
0 answers

Call QnAMaker inside LUIS dialog

I have a QnA bot and a LUIS bot. I would like to make a post request inside my LUIS dialog when the dialog for QnA is triggered to get a response. I have it testing just with the question: Hi which should respond hello. I am not sure if my port is…
0
votes
2 answers

How to integrate LUIS to a QnA bot Azure

So I was recently tinkering with Azure Bot Services and Q&A but I noticed it didn't answer everything correctly and didn't get the intent sometimes so I decided to add LUIS to it but I don't really get how to integrate it to the bot. (They give a…
0
votes
1 answer

Azure bot from template with credentials doesn't work in emulator

My bot just refuses to work with my appId & password on my dev emulator so tried to do the simplest version possible. This is what I tried: Create a new blank project from the newly copied "Bot Application" template. Update all the NuGet packages…
user3506776
  • 103
  • 1
  • 8
0
votes
0 answers

How to Register Application Level Events with an Azure Service Bot

I need to log the conversation in my chat bot. This is the code that I would put in the Global.asax if I had one but because I'm using the Bot Service I can't do it like that. private void RegisterBotModules() { var storageAccount =…
user3506776
  • 103
  • 1
  • 8
0
votes
1 answer

How to use Waterfall process in Nodejs using LUIS

I have LUIS app created, with 1 intent(Order Pizza) and 9 entities(Order,Kind, Signature, Size, Toppings, address, Time, Duration, Range). I need to create a bot in Azure Bot Framework. I'm unable to understand and use the waterfall for all the…
0
votes
2 answers

Deployment files not updating (BitBucket, OneDrive)

I'm developing a bot using the online editor, to add and remove files I was first using the OneDrive continuous integration then tried using BitBucket. Using OneDrive adding files seemed to work but recently I wanted to also remove some files. I…
user3506776
  • 103
  • 1
  • 8
0
votes
1 answer

QnA Maker SDK/Azure templates active learning and endpoint URL

Once the bot is created using qnamaker.ai, I wanted to deploy it in Azure using the SDK and publishing from VS2017, which let me define the top parameter to enable the Active Learning as shown in…
jgfdsa
  • 75
  • 6
0
votes
1 answer

Azure Bot Framework fails to find nodejs module in azure

I just deployed a azure bot (qna). When I try to send a message to it I get this error: 2017-05-26T04:34:12.078 Exception while executing function: Functions.messages. mscorlib: Error: Cannot find module 'botbuilder' at…
0
votes
2 answers

Azure Bot Service set node.js version not working

Specifying a Node.js version in Azure Bot Service doesn't seem to work. In Azure portal, navigate to the bot service instance, then in application settings set the environment variable WEBSITE_NODE_DEFAULT_VERSION to 7.7.4, which is the highest…
Marshal
  • 4,452
  • 1
  • 23
  • 15
0
votes
2 answers

"An error has occured" when opening a bot on Azure bot service

I have developed a bot directly online on Azure bot service during the free trial. Now the trial is expired and I would like to download my code as depicted here (from the documentation): But I actually cannot even access this page anymore. When I…
0
votes
0 answers

Messenger running old version of bot service

I'm building a bot on the azure bot service and have successfully integrated it to run on Messenger. However, the messenger version that is running seems to be a much older version. After I have updated the bot service it runs perfectly in the azure…