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

Can a Facebook Messenger Bot chat with two or more people in a group?

Do all messenger bots interact directly with just one user at a time? Can a bot join a group of two or more people and talk to them?
Mike
  • 1,296
  • 2
  • 15
  • 40
5
votes
2 answers

Insert my chatbot in a website

i have a question for you, i have built a bot in python and i need to know if there is a way (or a service with REST API) to embed it in a website. I dont want to use slack/telegram/facebook messanger and others as comunication channels. I want to…
5
votes
1 answer

Microsoft BotFramework for private apps

I would like to use Microsoft Bot Framework to build a chatbot for an app that I am building, and I do not want it to be working in Skype, Facebook or any other channels. Is that possible? And are there are cost involved.
Libin Joseph
  • 7,070
  • 5
  • 29
  • 52
5
votes
1 answer

Ordering movie tickets with ChatBot

My question is related to the project I've just started working on, and it's a ChatBot. The bot I want to build has a pretty simple task. It has to automatize the process of purchasing movie tickets. This is pretty close domain and the bot has all…
pkacprzak
  • 5,537
  • 1
  • 17
  • 37
5
votes
2 answers

how can I build the Jira AI chatbot?

My company has been using Jira for production issue tracking for last 6~8 years and as a result, there is a huge amount of production issue details logged in our Jira. Usually each Jira ticket for any production support issues consist of some…
user8079
  • 163
  • 1
  • 9
5
votes
1 answer

What are the common methods to determine intent

Many NLP APIs offer intent extraction like API.ai and wit.ai. However I'm unclear about their details. Do they do dependency parsing then extract relations, or simply taking out keywords from a sentence? How to parse "check if tomorrow is going to…
Yangrui
  • 1,217
  • 2
  • 17
  • 41
5
votes
3 answers

Building your own NLP API

I'm building a chatbot and I'm new to NLP. (api.ai & AlchemyAPI are too expensive for my use case. And wit.ai seems to be buggy and constantly changing at the moment.) For the NLP experts, how easily can I replicate their services locally? My vision…
Kyle Cureau
  • 19,028
  • 23
  • 75
  • 104
4
votes
5 answers

Best way to build a chat bot

What framework can I start with to create a simple chatbot? the focus of the bot is very limited. One can compare it with SIRI on iPhone. I want to create a simple "answering" chat which will answer questions like "give me all completed tasks so…
Sap
  • 5,197
  • 8
  • 59
  • 101
4
votes
1 answer

How to promote and demote users group with whatsapp-web.js

Most of the other commands I managed to run fine, but to promote users or downgrade I can't find it, if anyone knows tell me there
4
votes
2 answers

Discord.py How to make clean dialog trees?

My goal is to clean up my code so that I can more easily make dialog trees without constant copied pieces that don't have to be there. I can do it cleanly in python, but discord.py seems to have different requirements. Here is a sample of my…
Irene
  • 43
  • 6
4
votes
0 answers

Why does my bot send messages twice after a few days?

Context Telegraf.js Version: 3.38.0 Node.js Version: 12.0.0 Operating System: Ubuntu 16.04.6 LTS (Xenial Xerus) "Glitch server" Expected Behavior Hi, I'm not sure if this is a bug, but I am not finding anything and i asking you for help, I tank…
4
votes
2 answers

Microsoft Teams returning error when file is uploaded in bot application using Team's attachment button

We have an bot created on bot framework and enabled for Microsoft Teams channel. In the bot, the attachment functionality is enabled and user can send files to bot using Teams and it was working perfectly fine. But from past few week it stops…
4
votes
2 answers

Google Chat bot - Send private message WITHOUT event

I have a bot that is working in PM, I can talk with it and make it do my tasks without any problems but I don't find how to make it send a message to a specific other person. I want it to send private messages to a specific list of users without any…
4
votes
2 answers

discord.js v12: How do I await for messages in a DM channel?

This is the code that I've tried: message.author.dmChannel.awaitMessages(msg => { console.log(msg.content) }); But it returns this error message: TypeError: Cannot read property 'awaitMessages' of null Updated Code: message.author.send("What is…
Johonny
  • 151
  • 1
  • 4
  • 17
4
votes
0 answers

Post on Facebook Page Using FB Graph API using FB Live but un-reviewed App

I want to post on my own Facebook Page using Graph API. For this, I have created an App. When App is in Dev Mode, I am able to post on page using Page Access Token with proper permissions. However, the problem here is, the post are not visible to…