azure-bot-service

Azure BOT Framework, Integrate QnA Maker with LUIS

▼魔方 西西 提交于 2019-12-02 05:01:55
问题 I am searching for documentation on the integration of QnA Maker API with LUIS in Azure BOT Framework . But after a lot of research, I couldn't find any such document. If anyone came across the same scenario, please post your efforts. I am using C# as scripting here. 回答1: There are several general ways to do it, but it's ultimately up to you as the Bot developer to decide how to structure it. A general overview is provided in the docs here, but if you want a more code oriented sample, this

Can't create azure bot service - “This MSA App ID is already in use”

戏子无情 提交于 2019-12-02 02:43:21
问题 Trying to play with the newly announced service, but am having problems getting started. Entered name, subscription, etc. Got my Microsoft App ID, entered it into the form Selected C# Selected any one of the templates When I click Create Bot I get "This MSA App ID is already in use" What do I need to do? 回答1: I clicked the Manage and created a set (app id / password) and used that instead of the previous values and it worked ok thereafter. 回答2: Background to my answer: For some reason, my

Azure BOT Framework, Integrate QnA Maker with LUIS

时光毁灭记忆、已成空白 提交于 2019-12-02 01:19:15
I am searching for documentation on the integration of QnA Maker API with LUIS in Azure BOT Framework . But after a lot of research, I couldn't find any such document. If anyone came across the same scenario, please post your efforts. I am using C# as scripting here. There are several general ways to do it, but it's ultimately up to you as the Bot developer to decide how to structure it. A general overview is provided in the docs here , but if you want a more code oriented sample, this blog post should help you - Dialog management with QnA, Luis, and Scorables In the sample, the LuisDialog

Can't create azure bot service - “This MSA App ID is already in use”

六月ゝ 毕业季﹏ 提交于 2019-12-01 23:36:25
Trying to play with the newly announced service, but am having problems getting started. Entered name, subscription, etc. Got my Microsoft App ID, entered it into the form Selected C# Selected any one of the templates When I click Create Bot I get "This MSA App ID is already in use" What do I need to do? I clicked the Manage and created a set (app id / password) and used that instead of the previous values and it worked ok thereafter. Background to my answer: For some reason, my current Bot Service stopped working and I had to create a new Bot Service to provide the back-end for my already

Cortana skill not working on Windows 10 or iOS

会有一股神秘感。 提交于 2019-12-01 20:24:32
问题 I have added a Cortana skill using Microsoft Bot Framework. My invocation phrase is "My Skill". When I tried to talk to Cortana in iOS or Windows, it doesn't invoke the skill. Instead, it keep directing me to Bing results. Here are the sentences I talked to Cortana: Start My Skill Ask My Skill to Tell My Skill that Anyone advices? 回答1: One friend fixed this issue, so at the moment Cortana only supports English(United States). To fix it, go to Cortana setting (please note , not the OS language

UserProfile state persistent between users in bot v4

↘锁芯ラ 提交于 2019-12-01 14:53:17
When I have two instances of the bot (can be two emulator windows or two browsers if I deploy the bot to Azure), the first name enter is persistent for all the other instances. Instance One https://imgur.com/sa7AAbn Instance Two https://imgur.com/Ct20HE5 I would expect the bot ask my name again, it does not matter how many instances I have, the bot always identifies me as Brunno. How can I change this behavior? I followed this tutorial If you don't provide WebChat with a unique id for each conversation, it will reference the same data objects in storage. So to the resolve this issue, you

Authenticate user in Microsoft bot framework [closed]

 ̄綄美尐妖づ 提交于 2019-12-01 08:20:15
I am building a Banking Bot and I need to authenticate the user before providing any details to him. If the Bot is idle for 5 min, I need user to re-authenticate before proceeding further. I am using Microsoft Bot framework and LUIS for BOT development. Can anyone help me with this problem? Directly authenticating user through chat window is not recommended and in such cases you'll need to use magic codes for authentication. Consider using third pattern described there which is quite secure. You must use a signin card , to ensure the user is authenticated and you know the user. You must avoid

Azure function doesn't notify my bot (Bot Framework)

走远了吗. 提交于 2019-12-01 05:46:06
问题 i'm using an Azure Function (Timer Trigger Function) which is execute every X minutes. I've made a bot using BotFramework, and I want to have an azure function triggered every x minutes. And when it's triggered my bot must be notified. I have for that an output Bot Framework : Here is my JSON file : { "bindings": [ { "name": "myTimer", "type": "timerTrigger", "direction": "in", "schedule": "0 */1 * * * *" }, { "type": "bot", "name": "message", "botId": "Azurefunction", "secret": "h3VkHcc_PXU

MSBot not responding on on opening the bot. No Welcome messaged received

那年仲夏 提交于 2019-12-01 01:44:51
I have created and deployed bot using a sample bot Welcome-Bot example given in Azure portal docs. This bot shows a welcome message whenever the bot is joined or started. It shows welcome message when I test it on emulator. But when I deploy it to Azure and test in Test Web App chat or Teams it doesn't show me Welcome message. It show me the welcome message when I query something, i.e. it gives two responses : one is the welcome message and other one is the reply of the query asked . For Microsoft Teams, you need to create an app manifest using App Studio and install in your personal scope.