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

Are external requests blocked on actions on google simulator?

I am developing an Actions on Google app with a Dialogflow integration. When testing in the Dialogflow simulator with a common request call I get a response, that is, the Uri I have passed is found, executes and returns a response. Doing exactly the…
Andreas
  • 2,336
  • 2
  • 28
  • 45
1
vote
1 answer

Microsoft Bot Framework Form Builder C#, Getting User input before building the form

How can I get user input before building the form. For example if the user typed "exit" at any time during the formflow, I want to save the user input into a status variable and check if it equals "exit" and if it does then return null or do some…
Loai Tayem
  • 61
  • 8
1
vote
2 answers

How do I implement a "hand back" from Facebook Inbox once I "hand off" from my chatbot

Building a chatbot and trying to implement the handover protocol. SO far I have it handing off to the inbox, so that if someone asks for customer service, the bot hands over to the inbox and presumably someone who is monitoring the page can answer.…
user379468
  • 3,989
  • 10
  • 50
  • 68
1
vote
0 answers

When I launch an event, this call to the intent but not show in the client app

I have this event: Image of the intent And I have this code in the Fullfillment: function LanzarEvento(session) { //var user = firebase.auth().currentUser; const uuid = require('uuid'); const sessionId = uuid.v1();//user.uid; …
Andres
  • 323
  • 2
  • 12
1
vote
3 answers

Most effective way to match commands when developing a chatbot?

I'm creating a simple chatbot through the Messenger Platform API and I'm pretty much stuck on how to effectively recognise a set of commands that the bot can react to. I'm currently using a switch statement to detect commands that begin with an…
n1nsa1d00
  • 856
  • 9
  • 23
1
vote
1 answer

Entity Mapping API AI

I am creating a bot for real estate. Now in real estate, user may enter any locality or society, which right now is more than 100 000 in database. To get it resolved as entity, one solution is that I enter all societies/localities as developer…
vipul
  • 114
  • 1
  • 7
1
vote
1 answer

DialogFlow change recognition language

I'm building a multi-language-educational app on DialogFlow. and i hit a big problem : Switch recognition language. Any suggestions how could i achieve that or any other approaches? I have added to DialogFlow web-interface secondary language.…
Sz-Nika Janos
  • 811
  • 6
  • 19
1
vote
1 answer

How to integrate AWS Lex Chatbots Voice to Facebook

I had configured my chatbot using AWS Lex Chatbot service. My main intention to create chatbot is to integrate it to Facebook and the user's communication should possible in both text and voice. I integrated my chatbot to facebook successfully by…
1
vote
1 answer

Why does Tensoflow seq2seq pad all sequences to the same fixed length?

I am trying to implement a Chatbot using Tensorflow and its implementation of seq2seq. After reading different tutorials (Chatbots with Seq2Seq, Neural Machine Translation (seq2seq) Tutorial, Unsupervised Deep Learning for Vertical Conversational…
mjeshtri
  • 263
  • 1
  • 5
  • 15
1
vote
0 answers

Azure Bot: How to check if or extract the LUIS 'entity' present in the response to prompt for user input?

.matches('Note.Create', [(session, args, next) => { // Resolve and store any Note.Title entity passed from LUIS. var intent = args.intent; var title = builder.EntityRecognizer.findEntity(intent.entities,…
Sarthak Srivastava
  • 1,490
  • 3
  • 15
  • 33
1
vote
2 answers

Is it possible to use AMAZON LEX to build a chatbot which connects with database and Web service stored on client side?

Our organization wants to develop a "LOST & FOUND System Application" using chatbot integrated in a website. Whenever the user starts the conversation with the chatbot, the chatbot should ask the details of lost item or item found and it should…
1
vote
1 answer

Teachable AI Chatbot

I'm starting on AI chatbots and don't know where to actually start. what I've imagined is something like this: Empty chat bot that doesn't know anything Learns when user asks question and if the bot doesn't know the answer, it'd ask for it Records…
Maylin Anne
  • 103
  • 2
  • 13
1
vote
1 answer

Adding quick replies to web chatbot using dialogflow (api.ai)

I started to build a chatbot on my glitch server dealing with small talk questions using Dialog flow (api.ai). I used the code, which i copy paste on the bottom (index.html). Now I want to add quick replies. This is very simple for integrated…
Rainer Winkler
  • 485
  • 1
  • 7
  • 20
1
vote
1 answer

Not Able to see messages for particular intents [Chatbase]

We just started integrating Chatbase for one of our Bot's and I'm sending messages to Chatbase, but I'm not able to view messages for specific intents on the dashboard. The specific case pertains to messages which are related to dates. Here is a…
thecreator232
  • 2,145
  • 1
  • 36
  • 51
1
vote
0 answers

Training data for chart bot, using tensorflow how to make this kind of dataset?

I want to make a train source for my chat bot with tensorflow. My corpus file looks like this: hello! hello,nice to meet you! nice to meet you too! goodbye bye after I read the corpus file: ds = tf.data.TextLineDataset("./corpus.txt") ds =…
Bing Xie
  • 11
  • 3