Questions tagged [chatbot]

A chatbot is an automated program that communicates with humans. Abilities can range from canned responses, to neural networks and other learning programs, to responding to commands.

There are different kinds of chatbots: Those that try to appear to be human, those that perform useful tasks for the participants or administrators of the chat (like posting links to an faq in regular intervals) and those that exists only for the fun of someone, similar to the twitterbot big_ben_clock

4197 questions
5
votes
2 answers

How to send card carousel and quick replies together?

I am following this tutorial for making a dialogflow chatbot on Facebook. I have made a carousel and quick replies for two separate actions. How can I send a carousel followed by quick replies for one same action?
uitwaa
  • 615
  • 1
  • 12
  • 24
5
votes
2 answers

Which is better practice to invoke functions,Intent Name or Action?

In DialogFlow, we can trigger functions and perform tasks based on either Intent Name or Actions. Which one should we use to decide? What is better practice?
sid8491
  • 6,622
  • 6
  • 38
  • 64
5
votes
1 answer

How to get space Id of users who have not added Google Chat Bot to their coversation

We are implementing a Google hangout Chat Bot , Which will send proactive notification to the user in domain. To do this Google chat Bot API requires the space Id to send proactive notification to user. Reference document:…
Planet-Zoom
  • 1,005
  • 2
  • 9
  • 20
5
votes
1 answer

Dialogflow list does not work on Google Assistant the first time

My Dialogflow agent is using an 'Actions on Google Rich Message' List response object to display options on the Google Assistant platform. The list options work perfectly when testing on the Dialogflow console. However, when testing through the…
5
votes
1 answer

Prompt not waiting for user input

I am currently trying to write a Chatbot with Microsofts Bot Framework. I want to use a choice-prompt but it does not wait for me/the user to choose an option. Not even the example-code from here worked for me. See this working example: var restify…
Lyndra
  • 107
  • 8
5
votes
1 answer

Debug node project (botpress)

I'm tring debug my botpress project. Debugs it's working, but only showing one file to me, not all the project files. I'm use Google Chrome DevTool to debug the code, this is showing to me: And this is my project with file to show. All code:…
Luiz Carvalho
  • 1,549
  • 1
  • 23
  • 46
5
votes
3 answers

Azure function run code on startup for Node

I am developing Chatbot using Azure functions. I want to load the some of the conversations for Chatbot from a file. I am looking for a way to load these conversation data before the function app starts with some function callback. Is there a way…
sammie
  • 81
  • 5
5
votes
3 answers

DialogFlow: handling given-names with multiple segments

I'm trying to make a chatbot using DialogFlow to handle our user registration process. Now, I'm having problems with the $sys.given-name entity. It seems like it cannot parse given names with multiple tokens (i.e., Peter Paul, Tommy Lee, etc.).
5
votes
2 answers

How to call another intent without prompting to user in Lex?

Is it possible to trigger intent-B from the lambda function of intent-A without prompting to user? Suppose user typed something and an intent-A is fired, after some processing I want to trigger some other intent i.e intent-B. User can also directly…
sid8491
  • 6,622
  • 6
  • 38
  • 64
5
votes
6 answers

Heroku command not found in Windows 10

I want to make a Python chat bot following this article. But after installing the heroku-cli through npm or Windows 32 bit version or Windows 64 bit version, I am getting the following error: 'heroku' is not recognized as an internal or external…
Kalanka
  • 1,019
  • 2
  • 18
  • 31
5
votes
1 answer

Sending messages actively from Tornado WebSocket server

I have a Python WebSocket server. This can return a response when it receives a message. import tornado.web import tornado.websocket import tornado.ioloop class WebSocketHandler(tornado.websocket.WebSocketHandler): def open(self): …
user8483278
5
votes
4 answers

Amazon Lex Error: An error occurred (BadRequestException) when calling the PutIntent operation: RelativeId does not match Lex ARN format

I'm trying to build a chatbot using Amazon's boto3 library. Right now, I am trying to create an intent using the put_intent function. My code is as follows: intent = lexClient.put_intent(name = 'test', …
dinod7
  • 51
  • 2
5
votes
5 answers

How can I use the same bot on multiple facebook pages using bot framework

I have several facebook pages and I would like to run the same bot on each page. I am using the bot framework and everything works perfectly for one page now. How do I associate with multiple pages?
PirateApp
  • 5,433
  • 4
  • 57
  • 90
5
votes
0 answers

Open messenger chatbot webview extension in Chrome

I am trying to access the camera inside my webview extension that works perfectly fine on Google Chrome when I open it as a website separately. I have my bot made using Microsoft Bot Framework and when I try the bot on Messenger it seems that…
PirateApp
  • 5,433
  • 4
  • 57
  • 90
5
votes
3 answers

Can we add custom CSS in Web Chat Channel in Microsoft Bot Framework (.NET/C#)

I am developing a training ChatBot application, where I am using Microsoft Bot Framework (.NET/C#). When, I am using Configuring Channel - "Skype" or "Facebook"- My chat window's look-and-feel is nice without writing any css/style code, as it's…
Virendra Kumar
  • 309
  • 3
  • 11