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
75
votes
3 answers

How do Markov Chain Chatbots work?

I was thinking of creating a chatbot using something like markov chains, but I'm not entirely sure how to get it to work. From what I understand, you create a table from data with a given word and then words which follow. Is it possible to attach…
Jordan
  • 9,014
  • 8
  • 37
  • 47
73
votes
2 answers

Any tutorials for developing chatbots?

As a engineering student, I would like to make a chat bot using python. So, I searched a lot but couldn't really find stuff that would teach me or give me some concrete information to build a intelligent chat bot. I would like to make a chatbot that…
Surya
  • 4,824
  • 6
  • 38
  • 63
34
votes
6 answers

How to create a smart chat-bot?

I know that it's still an open problem so I don't expect to see complete answers here. I just want to find some approaches to solve the next problem: I have a model (assume that is's bot's memory), and different words are associated with different…
Roman
  • 64,384
  • 92
  • 238
  • 332
33
votes
11 answers

How can I program a simple chat bot AI?

I want to build a bot that asks someone a few simple questions and branches based on the answer. I realize parsing meaning from the human responses will be challenging, but how do you setup the program to deal with the "state" of the…
Larsenal
  • 49,878
  • 43
  • 152
  • 220
32
votes
5 answers

Difference between Rasa core and Rasa nlu

I tried to understand the difference between Rasa core and Rasa NLU from the official documentation, but I don't understand much. What I understood is that Rasa core is used to guide the flow of the conversation, while Rasa NLU is used to process…
Henu
  • 1,622
  • 2
  • 22
  • 27
29
votes
4 answers

What is the difference between Dialogflow bot framework vs Rasa nlu bot framework?

What is the difference between Dialogflow bot framework vs Rasa nlu bot framework ?Any other open source frameworks available in market with NLP support?
balaji
  • 293
  • 1
  • 3
  • 8
24
votes
6 answers

import langchain => Error : TypeError: issubclass() arg 1 must be a class

I want to use langchain for my project. so I installed it using following command : pip install langchain but While importing "langchain" I am facing following Error: File /usr/lib/python3.8/typing.py:774, in _GenericAlias.__subclasscheck__(self,…
M. D. P
  • 604
  • 2
  • 6
  • 18
23
votes
3 answers

Android Espresso wait for text to appear

I am trying to automate an Android app that is a chatbot using Espresso. I can say that I am completely new to Android app automation. Right now I am struggled with waiting. If I use Thread.sleep, it works perfectly fine. However, I would like to…
Anna Puskarjova
  • 313
  • 2
  • 3
  • 6
20
votes
3 answers

How to set expiration time for hmset in node redis?

I used to do client.setex(key, 900, value) for storing single key-value. But, I want to store an object with expiration time. I come up with function hmset, but I don't know how to make expiration time. I want to use it to store the context and the…
Terry Djony
  • 1,975
  • 4
  • 23
  • 41
18
votes
6 answers

How to integrate dialogflow with website?

I created Intents, entities so and so using 'Dialogflow chat-bot', Now,I'm trying to integrate dialogflow with my website(html), I followed the documented instructions from the dialogflow official website, still I'm confused , after enabling the…
dev_user
  • 417
  • 1
  • 3
  • 16
18
votes
1 answer

How to access Dialogflow V2 API from a webpage?

I have a webpage where I want to use dialogflow chatbot. This is a custom chat window, so I don't want to use one click integration. I am able to access the chat agent V1 API using javascript/ajax (by passing client access token in the request…
Marimuthu
  • 193
  • 2
  • 8
16
votes
3 answers

Bot Framework messes up dialog state

I'm currently making a chatbot with Microsoft's Bot Framework. In my flow I have a final dialog that lets the user know, that they are participating in the competition. There is also an error-handling method for unknown input. The two methods are…
Frederik Hansen
  • 506
  • 4
  • 21
16
votes
1 answer

How to disable a slackbot button after clicking on it

I'm creating buttons for a slackbot using something like: const messageB = { "attachments": [ { "text": "Essa mensagem foi útil?", "callback_id": "button_feedback", "color":…
Newton Joaquim
  • 171
  • 1
  • 3
16
votes
11 answers

Facebook Messenger bot not sending messages in order

I'm playing around with building a simple Facebook Messenger chatbot and I'm having trouble sending messages in sequence. In the example above, it should have printed "Hello!", "1", "2", "3" in order. I'm currently following the Facebook docs found…
Brian
  • 7,955
  • 16
  • 66
  • 107
15
votes
4 answers

How do I integrate AWS Lex chatbot to my website?

My website is doing customer service & support ticket system. But the way of integrating AWS lex seems not as easy as FB is. The thing I wanna do is letting Lex Bot reply tickets for the customer on my website. Do I need to learn AWS Lambda and API…
Winfred Peng
  • 191
  • 1
  • 2
  • 9
1
2 3
99 100