Questions tagged [adaptive-dialogs]
16 questions
3
votes
1 answer
Can an adaptive card used in an adaptive dialog in a templated fashion?
I would like to return an Adaptive card via SendActivity in an Adaptive Dialog.
The code to do this looks like:
new OnIntent("Help")
{
Actions = new List

Irwin
- 12,551
- 11
- 67
- 97
2
votes
0 answers
How can i add control/console statements in Adaptive dialog configuration?
Below is a sample of an Adaptive dialog
const userProfileAdaptiveDialog = new AdaptiveDialog(ROOT_DIALOG).configure({
generator: new TemplateEngineLanguageGenerator(lgFile),
triggers: [
new…

ChinnarajS
- 644
- 5
- 20
2
votes
0 answers
Can I change the http response timeout in botframework?
My bot logic includes a http request - GetFolderId.
When I don't get a response within 15 seconds, the bot repeats every activity from the last response of the user to the http request and continues with the activities past that to end of the…

Aron Gabor Kelsch
- 45
- 7
1
vote
0 answers
Bot Framework Adaptive Dialogs. How can I change the Generator(.lg file)?
I need to change the .lg file for multilingual support. The dialogues are written also in .dialog format.
enter image description here

Aurel
- 11
- 1
1
vote
1 answer
Bot framework - Adaptive dialog
I am working with bot framework adaptive dialog. I have an issue in getting the intents and resolved entities by reading luis data using recognizer. only getting the top scoring intent in the response by reading "turn.recognized" in the child…

Mahesh cm
- 77
- 1
- 2
- 9
1
vote
1 answer
Get Active Dialog from Microsoft bot framework composer
I need to get the active dialog from Microsoft bot framework composer, when I open the project with visual studio and start debugging, in the ComposerBot.cs - OnTurnAsync() method, I didn't find any way to get the active dialog, it always returns…

Ola Khrisat
- 7
- 5
1
vote
1 answer
How do I redirect from one child dialog into another child dialog
I'm in an adaptive dialog in bot framework.
The "conversational architecture" looks like this:
[ROOT DIALOG] -> [CHILD1 DIALOG]
[ROOT DIALOG] -> [CHILD2 DIALOG] ... [further dialogs]
I'm finished with the data capture I was doing in [CHILD1 DIALOG]…

Irwin
- 12,551
- 11
- 67
- 97
0
votes
1 answer
Why do I get the error fromFile not a built-in function in botframework
I have upgraded to the latest version of botframework and started to get the error:
Oops, it looks like something went wrong. Error:[Error] D:\home\site\wwwroot\Dialogs\RootDialog\LG\en\RootDialog_en.lg line 15:2 - line 15:69: Error occurred when…

Aron Gabor Kelsch
- 45
- 7
0
votes
1 answer
Is it possible to get different message from same intent
I am trying to get different message from same intent. Let us consider that i have a intent Greeting , so when user say 'Hi' to Bot then bot call the Greeting intent then bot show the message "hello and welcome" to the user.
If you say Hi again to…
0
votes
1 answer
How to Convert Bot Composer .DIALOG to AdaptiveDialog .CS using .NET SDK
I created a project using Bot Composer Tool and implemented many dialogs . In solution folder I can see all dialog files are JSON format with file format .dialog.
Requirement:
I had to create a same project using AdaptiveDialogs…

PavanKumar GVVS
- 859
- 14
- 45
0
votes
0 answers
Adaptive Dialog - How to trigger retrying on InputDialog from another step
BotFramework .NET SDK, v4
I understand that retry logic on InputDialog will be triggered when validation rules fails. Eg. User enters non-numeric value on NumberInput or validation expressions defined on dialog fails.
In my scenario, (on adaptive…

Mlh
- 147
- 3
- 16
0
votes
1 answer
Declarative adaptive dialog not working with LUIS Recognizer
I am using Declarative adaptive dialog for our chatbot. I tired including the recognizer as LUIS in my .dialog file. But i am getting Type Microsoft.LuisRecognizer not registered in factory error while execution. I am doing with the following steps…

Vignesh
- 101
- 1
- 7
0
votes
0 answers
Issue in publishing Microsoft bot v4 designed with Adaptive dialog
I am working with Microsoft bot framework 4.10 with adaptive card. my bot properly working in emulator, but when I tried to publish it in Azure web app its not given any response as expected. I have go through Microsoft given both samples. Take a…

Mahesh cm
- 77
- 1
- 2
- 9
0
votes
1 answer
How to add Authentication token in HttpRequest in Adaptive dialog?
I am using Botframework adaptive dialog template (c#). I already obtained a token from a HttpRequest and saved it as a conversation state property conversation.token, now I am trying to use this token to make another API call with HttpRequest. But…

Kangmin
- 33
- 5
0
votes
1 answer
How do I restart a series of dialogs in bot framework?
I've got a simple bot game I'm developing. It has a Root Dialog, which can take you to two others - A Start Dialog and a Join Dialog.
Join Dialog can lead to the Play Game Dialog, which when the game is over leads you to a Score Dialog.
Feels like…

Irwin
- 12,551
- 11
- 67
- 97