Most voted "chatbot" questions
Chatbot (or chatterbot) is a computer program that attempts to simulate a human being in conversation with people. The goal is to answer the questions in such a way that people have the impression of being talking to another person and not with a computer program.
Learn more…46 questions
Sort by count of
-
3
votes0
answers93
viewsNatural Language or Chatbot
Good afternoon, I started this question more as a discussion than doubt of the language itself. I need to make a chatbot or use some service that offers this. I was studying natural language but I…
-
3
votes1
answer302
viewsImport chatterbot bot to Telegram
I don’t know if that kind of question is welcome here, but come on: I’m developing a chatbot on python and chose the library chatterbot because of the processamento de linguagem natural, by the…
-
2
votes2
answers1424
viewsProblems with python libraries, Chatbot
I’m having trouble with the Python library, specifically the Chatbot, the error is as follows: from chatterbot import Chatbot ImportError: cannot import name 'Chatbot' " Here is my code: from…
-
2
votes1
answer27
viewsMongodb not recognizing command when someone writes something in front
I have a bot and saved its commands in the Mongodb database, but when I write, for example, "! command and other things on a line" it does not answer, how could it ignore these other words? My code…
-
1
votes2
answers84
viewsError while trying to deserialize JSON from a web page
I’m using Luis.ai to create my neural network of intents and Microsoft Bot Framework to create my chatbot, but I’m not able to read a json that luis is generating for me. Luis' class: public static…
-
1
votes1
answer247
viewsChatbot PHP - Facebook Messenger
Hello, all right? I’m creating a chatbot but I’m having problems with the HTTP request (POST). When I call a function to send the POST to Facebook Messenger it seems to me that it loops and starts…
-
1
votes0
answers104
viewsComplex dialogues with Watson
I started to develop a chatbot using the watson, found surprising and simple to deploy. However I was left with some doubts of how to do and if it is possible (I saw in some chatbot). An example is,…
-
1
votes1
answer648
viewsHow to use Python Chatterbot in HTML page?
I’m developing a Chatbot in python, using the Chatterbot library. I wonder how I can "embed" this chatbot into an HTML page. I’m a beginner. Using USB Web Server Follows the code: # -*- coding:…
-
1
votes1
answer38
viewsHow to Recover User Name in Botframework?
What is the C# code to retrieve the user name during the conversation?…
-
1
votes1
answer39
viewsHow to disable the Dialogflow chatbot integrated with Whatsapp for a certain phone number?
I’m developing a chatbot with Dialogflow integrated into Whatsapp. My chatbot should only interact with the mobile numbers registered in my database. Currently I use the Respond.io that allows me to…
chatbotasked 3 years, 10 months ago Vitor Freire 11 -
1
votes2
answers444
viewsVirtual Assistant
Good afternoon fellows, as you go? So I’m fairly new to this development environment and I programmed in python some time ago. I have a project idea where it involves creating a kind of virtual…
-
0
votes1
answer126
viewsHow to change the layout of Replykeyboardmarkup/Quick Reply in api.ai for Telegram?
ai for creating a bot, when using the service’s Quick reply the keyboard layout (Replykeyboardmarkup) in Telegram is vertical, thus cutting all messages: I saw that in the documentation dos Telegram…
-
0
votes1
answer59
viewsChatbot Watson - Limit the number of times dialogue falls on a node
I’m developing a chatbot at Watson Conversations and I’ve come across a useful need for dialogue. I need that if the dialogue falls on anything_else 3 times the bot jumps to a dialog requesting…
chatbotasked 6 years, 11 months ago bruno.ribeiro 9 -
0
votes1
answer82
viewsIntegrating Formflow with Microsoft LUIS
I built a bot using the Microsoft Botbuilder SDK. I want a Botbuilder Formflow to recognize and capture entities in a user response. For example, if the user replies: my email is [email protected],…
-
0
votes1
answer139
viewsHow to make a function that picks up data and drops in bot chat
Good afternoon I have a bot for a site where I frequent and wanted to develop a function where it sends a private message in the system. In my head it seems simple but I can not execute (I know the…
-
0
votes1
answer244
viewsPython error in Def _init_ function when creating a Chatbot
class wppbot: dir_path = os.getcwd() bot.def __init__(self, nome_bot): self.bot = ChatBot(nome_bot) self.bot.set_trainer(ListTrainer) self.chrome = self.dir_path+'\chromedriver.exe' self.options =…
-
0
votes1
answer577
viewsChatterbot installation error (python)
Every time I try to install Chatterbot either through Pip or pip3 it gives a giant error. I saw in some questions that when installing python 64bits it would solve, I did it but nothing. Even,…
-
0
votes0
answers48
viewspercentageCommomWords JAVA In String CHATBOT
I would like a help to implement the method percentageCommomWords in my code, because it meets with contains and this ends up complicating a little at bot time to answer the right question. Follow…
-
0
votes1
answer343
views'Botfalante' error Object is not callable
I am creating a virtual wizard in Python, but with some difficulties. Follow the code: #-*- coding: utf-8 -*- from chatterbot.trainers import ListTrainer from chatterbot import ChatBot import…
-
0
votes0
answers8
viewsHow do I send messages to Telegram?
def set_chat_id(c): chat_ids.append(c) def main(): api_config = {} with open('api_config.json') as json_data: api_config = json.load(json_data) json_data.close() TOKEN =…
-
0
votes0
answers8
viewsError in hosting JS bot NODE using Venom-bot
I made a bot for Whatsapp using Venom, but at the time of executing the bot on Heroku, it gives the following error Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60…
-
0
votes1
answer786
viewsHow to add external training in chatterbot
I created a very simple bot to learn how to use chatterbot. This library already comes with a training, but I wanted to put an extra training with the import of a corpus in Portuguese that I found…
-
0
votes1
answer448
viewsI’m having trouble creating a Chatbot in Python
from chatterbot import ChatBot from chatterbot.trainers import ChatterBotCorpusTrainer chatbot = ChatBot('HiAsda') #Cria um novo treinador para o bot trainer = ChatterBotCorpusTrainer(chatbot)…
-
0
votes0
answers250
viewsChatterbot import error
Using the library manual chatterbot I tried to make a simple chatbot, however, when I have it run on the console of pycharm appears the following error: Modulenotfounderror: No module named 'pytz'…
-
0
votes0
answers342
viewsImport error in Python
I’m trying to create a Python Bot: #-*- coding: utf-8 -*- from chatterbot.trainer import ListTrainer # trainador from chatterbot import ChatBot # chatbot import os bot = ChatBot('Teste')…
-
0
votes1
answer355
viewsChatbot respond only when a specific word is contained in the sentence
I’m creating a Chatbot in Telegram that can answer questions from group users. The bot needs a keyword to start chatting. That word would be his name, "Joker". Thus, only when the word Joker is…
-
0
votes2
answers668
viewsProblems in the automation of sending messages on Whatsapp through the Python Selenium library
I’m with an automatic messaging project via Whatsapp that consists of sending messages provided with special characters (emojis and other symbols) saved in files . txt, however, whenever I use the…
-
0
votes0
answers41
viewsHow to select Whatsapp nodejs + Selenium input
Language in Nodejs + Selenium I’m making a simple bot in nodejs and Selenium, I just need to be able to select the input to send file but I’m not getting, It is the first file type input, but I’m…
-
0
votes1
answer29
viewsError using a bot in python
Whenever I run the following code (using python) from chatterbot import ChatBot from chatterbot.trainers import ListTrainer bot = ChatBot('bot1') bot = ChatBot( 'bot1',…
-
0
votes0
answers20
viewsCooldown Twitch chatbot help me. Node.JS
Talk personal, all right? I am trying to create a chatbox for my channel on Witch but I am going through some difficulties because I am a beginner in the subject. The bot is functional but if…
-
-1
votes1
answer644
viewsError using chatterbot in python ('chatterbot' is not a package)
I made a basic code of Chatterbot in Python that ran well, but suddenly stopped working and always presents the same error: from chatterbot.trainers import Listtrainer Modulenotfounderror: No module…
-
-1
votes1
answer40
viewsChatbot without internet access
Good night! I would like to ask a question, there is the possibility to create Chatbot using Watson Assistant or Microsoft technologies to be accessed from a local server without internet access?…
-
-1
votes0
answers5
viewsNodejs Botbuilder with Puppeteer
I have problems with the bot in MS Teams when I try to wait for the page loading using Puppeteer’s '.waitForTimeout ()' method, I get a message like this one: (Unable to access the app. Try Again)…
-
-1
votes1
answer99
viewsChatbot Telegram: Multiple conversations and messaging confusion
I’m making a chatbot in java on Telegram, everything flows normally, but when more than one person starts interacting with the bot, it stops working for other users, and it only works for one. I…
-
-1
votes1
answer50
viewschatterbot only delivers a character as response
I’m studying about the chatterbot and in the first training test appeared that he just handed me the first characters as an answer, someone knows explain to me why? from chatterbot import ChatBot…
-
-1
votes1
answer480
viewsJs file import error (Node)
I’m starting to learn a few things about Ode and for that I’m creating a chatbot using Blip. But I want to do this with an external js by making the connection. However I am having a problem trying…
-
-1
votes1
answer344
viewsSend Photo to Telegram Bot Python
all good? I am developing a bot in Python. However, in my code I am not able to make him reply with photos. Only message. Ex. I would like to send the message "photo" and the bot send a photo. Can…
-
-1
votes1
answer201
viewsReceive information from Telebot
I’m developing a Telegram bot and part of it is already functional. Now, I need to receive a user input with questions that the system asks so that I can further automate the processes. In the…
-
-2
votes1
answer678
viewsdownload and install Microsoft.Speech.Recognition
Someone could inform me the link where I can download this Referral: Microsoft.Speech.Recognition; and if possible help me install it. Thank you
-
-2
votes2
answers1565
viewsImport: No module named 'chatterbot'
Anyone help me? My code gives the following error: Traceback (most recent call last): File "main.py", line 1, in <module> from chatterbot import ChatBot ImportError: No module named…
-
-2
votes2
answers716
viewsAttributeerror: str Object has no attribute 'Confidence'
I’m developing a chatbot and I wish it would only respond if it had determined level of confidence in the answer. # -*- codding: utf-8 -*- import os import telebot from chatterbot import ChatBot…
-
-2
votes1
answer146
viewsImport: cannot import name 'Bot' from 'Telegram'
I installed python-Telegram-bot version 13.0 and importing this error is happening. My libraries are up to date and the error continues. What am I doing wrong? from telegram.ext import…
-
-3
votes1
answer201
viewsChatbot not understanding registered phrases
I’m developing a Chatbot called "Joker" for use in a Telegram group. The Bot must respond only if its name (Joker) is quoted in a sentence, otherwise it must remain "silent" without interfering with…
-
-3
votes0
answers21
viewsChatbot returning "I don’t understand" when it doesn’t work
I’m wanting my Chatbot to recognize the names using JSON, but they always return "not understood" when not right. Any hint to fix this ? import json class Chatbot(): def __init__(self, nome): try:…
-
-4
votes0
answers13
viewsURGENT: How to SEND-LOCATION to CHATBOT php facebook messenger? I used this code but it doesn’t work... Thank you for the help in Advance
Unfortunately I have no idea how to do it.
-
-5
votes1
answer75
viewsERROR STARTING . EXE PYTHON
Hello, I’m creating a chatbot in Python using the Chatterbot library, so I tried to turn my simple Python code into a file. exe so other people can test, I’m using pyinstaller. I installed it by…