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
1
vote
1 answer

Did i migrate from the default code to my testing one properly?

I want to create develop a chatbot using Lex's interface, as a first step i found a ScheduleAppointment default bot so i decided to do adjustments to it. The default prompts in this bot are date, time and appointmenttype. As a first step i went to…
user9127040
  • 71
  • 1
  • 7
1
vote
0 answers

Reg: Microsoft Chatbot: Passing userId/name in the iFrame SRC and reading that in the C# BOT code at server side

I am passing the userId from the iFrame like below, and this iFrame is embedded on the master screen of our website. iframe src="https://webchat.botframework.com/embed/BotId?s=BOTSecret&userid=" + <%=UserId %> + height="400" and trying to read it…
1
vote
3 answers

How to wrap an existing chatbot for Google Assistant (Google Home)

We have a chatbot for our website today, that is not build using Google technology. The bot has a JSON REST API where you can send the question to and which replies with the corresponding answers. So all the intents and entities are being resolved…
mpjjonker
  • 917
  • 1
  • 6
  • 28
1
vote
3 answers

How to add my MS Bot app in my own Asp.Net web application

enter image description hereI have created the MS Bot application using C# with LUIS for Intents recognizing. I want to add the chat UI in my own sample Asp.Net web application. I've not used Azure services, simply i have used user Intents…
Vaasir Nisaar
  • 51
  • 1
  • 9
1
vote
1 answer

Unable to make http request from within Dialogflow inline editor

I am making a chatbot and I need for certain action to make some http request, but for some reason looks billing issue with the account I cant make http calls. Here is the code: const actionHandlers = { 'get.contact': () => { …
1
vote
1 answer

How to use a database with a messenger chat bot to store responses of users?

I'm building a chat bot and I want to connect it to a database to store user response to a question, I deploy the app to heroku, how can I use mysql to do that job and if there is a good resource please recommend
1
vote
0 answers

Facebook Chat bot not working for public

I have a chat bot working fine for a single page. My app is currently live and available to the public. I generated page tokens using Facebook Login. But I want to integrate same chat bot with other pages also. I follow below guidelines to subscribe…
1
vote
0 answers

How NLU preprocessing data module work

I am having a problem with NLU of Rasa. I don't understand how NLU preprocessing data module works so I need yours help. Please tell me some information or document about Rasa because the document of rasa so very few. Thanks all.
Tam Nguyen
  • 21
  • 5
1
vote
3 answers

Chatbot - Possible to call Watson API to respond user queries?

Chatbot has been developed using IBM bulemix to respond the user queries of grade one students. Suppose a question raised "What is the life cycle of the leaf?" As of now, Chatbot has no entities related to leaf, life cycle etc.. Chatbot identifies…
cloudVision
  • 279
  • 1
  • 12
1
vote
0 answers

keras lstm-seq2seq-chatbot. Training not working. Ouputs zero's and accuracy doesn't change

I am creating a lstm-seq2seq-chatbot using a translational model based off the example from here: https://github.com/ChunML/seq2seq Instead I am using Cornell's Movie Dialogue Corpus to train the model. However when I do train it the final…
Newty96
  • 11
  • 2
1
vote
0 answers

Is there a way to integrate Firebase Functions with Google Calendar?

I'm creating a chatbot using chatfuel and storage data on firebase, I would like to know if it is possible to get this events and send then to google calendar. Thanks
1
vote
1 answer

Send file from Facebook to Dialog Flow (API.AI): can I get the filename?

I am able to use FACEBOOK_MEDIA in event section of an intent (in DialogFlow conversation configuration) and can see the URL in the payload. Is it possible to obtain the filename somehow? Thanks in advance.
Beppe C
  • 11,256
  • 2
  • 19
  • 41
1
vote
1 answer

count how many times a dialog is triggered WATSON Conversations

I need to count how many times a dialog falls into a specific node, and from the third time direct to another node that will request contact information, to talk to it. It's all done, but I had to make this change.
1
vote
1 answer

Is there any possible to map the default response in dialogflow

1st question: Tell me about fees Response from Intent: Tuition fees or transportation fees 2nd question: Tuition fees Response from Intent:Please select Grade 3rd question: Grade1 Is there any possible way to map both 2nd question and 3rd question…
saranya
  • 11
  • 2
1
vote
1 answer

How can i authenticate the user's input?

Building a chatbot using node.js that will be communicating with Luis. if (!meeting.datetimeV2) { builder.Prompts.text(session, 'what is the date and time'); } else { next(); } This section is supposed to…
user9068379
  • 11
  • 1
  • 4
1 2 3
99
100