Questions tagged [conversational-ui]

10 questions
5
votes
1 answer

How does Google Assistant's integration with IFTTT work?

I mean, from a technical perspective. How does the assistant know that it should send the request to IFTTT servers? When I created my own actions on Google Assistant I used the actions SDK and uploaded a manifest file into my account. This manifest…
4
votes
1 answer

Handling of NO USER INPUT in dialogflow

I have an intent "Reprompt" in my agent with event value as "actions_intent_NO_INPUT" and Action value as no.input but still my agent triggers "Default Fall back intent" in case of no user input. I need help to understand how to have my agent…
2
votes
2 answers

Can Amazon Lex be used with other platforms (eg. Google Home)?

I'm trying to figure out which open source framework to use to start building a conversational AI for our business. We are a financial technology company so security/ privacy is just as important as ability to build features quickly. Amazon Lex…
Rob
  • 7,028
  • 15
  • 63
  • 95
1
vote
1 answer

Bot framework composer save conversational data to external DB

I am new to Bot framework composer. One of my requirements is to save entire conversation transcript. I explored some websites and found a possible solution to blob storage/ cosmoDB. Is that possible to save to external DB (relational) through…
1
vote
1 answer

Open dhee.ai web widget with a launcher intent?

I'm using dhee.ai widgets to take orders on my site. I've identified cases where I want to programattically launch the widget with certain user intents upfront. This should happen without user having to click on the bot icon. How can I do that ?
1
vote
2 answers

Focus outside of visible area

WCAG states that an element that has focus should always be visible to the user. This is especially hard, if not impossible in a chat window where space is limited. When a keyboard or screen reader user tabs to the first button option and selects…
1
vote
1 answer

How to import code from private GitHub repo into snips?

I understand that the normal way to use complex action code in Snips is to place the code in GitHub and pull it from there via Action Type "GitHub". Is there any way to access a private GitHub repo for this purpose? If this is not possible, what…
Frank im Wald
  • 896
  • 1
  • 11
  • 28
0
votes
1 answer

Skip the name and phone number screen in Dhee.ai web widget

I've embedded the widget script. When I click the chat icon, I don’t want to see this screen. Can you help me remove it?
0
votes
1 answer

Elasticsearch connection refused (dial tcp 172.20.0.6:9200 ) - Articulate v0.21.2 Release

I am trying to install Articulate v0.21.2 I pulled the latest from github by following the steps from Articulate Website Installed Docker Toolbox on Windows 7. On running docker-compose up , I am getting a Elasticsearch connection refused (dial tcp…
0
votes
2 answers

Stop interval when empty array

I'm receiving a bunch of Messages from serverside and I wanna fake the typing by adding a interval to the pipe. I'm doing this for now: const stream = interval(1000) .pipe( map((): Message => { return messages.pop(); }) ); this.feed =…
Sergiodiaz53
  • 1,268
  • 2
  • 14
  • 23