Questions tagged [chatterbot]

ChatterBot is a machine learning, conversational dialog engine for creating chat bots.

ChatterBot is a machine learning, conversational dialog engine for creating chat bots. https://chatterbot.readthedocs.io/

256 questions
0
votes
1 answer

Python Chatterbot "Errno 22"

I'm trying to train a chatbot, and most of the data is in text files. I pull: Matt said you have a "shit load" of dining dollars. I have almost none so if you're willing to sell, I'm willing to buy. from the text file, but when the chatterbot…
TobyTobyo
  • 405
  • 2
  • 6
  • 20
0
votes
1 answer

the chatterbot's response function doesn't work as i thought

so i was combining discord bot with chatterbot. i tried to get a response from the bot using get_response() function and i used it like response = bot.get_response(input) but it seems like it just only accepts input from the console and not string…
0
votes
1 answer

Django Chatterbot: installation

I built my own chatbot with Chatterbot library, but for local work. Now I want to build it for Telegram but when I try to install packages of Django with pip install django chatterbot, the Terminal shows me this: Requirement already satisfied:…
Sam
  • 536
  • 5
  • 23
0
votes
0 answers

Running chatterbot with Microsoft Bot Emulator - Connection Refused Error

I've been struggling with understanding how the Microsoft Bot Emulator works in terms of the ports it listens on. Problem - I am trying to build a toy bot that will run on the emulator, using Chatterbot, a python package. Chatterbot has input and…
0
votes
0 answers

chatterbot: def handler(msg) - Chatbot doesn't recognize my Telegram ID

I decided for my test chatbot on Telegram to create a function to limit the ability to speak only to a few users. I thought to create a .csv to put the Telegram user ID (the file is in the program folder). However, when I go to start the chat or…
Sam
  • 536
  • 5
  • 23
0
votes
4 answers

Any examples of using multilogicadapter in chatterbot?

I am trying to combine multiple logic adapters in Python chatterbot. I cannot seem to get it right. I tried this: english_bot = ChatBot("English Bot", storage_adapter="chatterbot.storage.SQLStorageAdapter", multi_logic_adapter = [ …
0
votes
2 answers

BestMatchAdapter confuse two different questions with same response

Using the BestMatchAdapter of Chatterbot, it confuses two questions with the same answer. For example, training the ai.yml. What is ai? Artificial Intelligence is the branch of engineering and science devoted to constructing machines that…
Taiwotman
  • 885
  • 14
  • 27
0
votes
1 answer

How to send attachment in chatterbot

I am trying to build a bot using python. I am using chatterbot ( a python package), I am able to send and receive messages according the knowledge which i have built. But I want to send attachment in the chat response. Attachment may be a pdf of…
chandra
  • 85
  • 2
  • 13
0
votes
3 answers

Chatterbot: installation

I have tried to install the module "Chatterbot 0.4.6", but it fails with the following error: Exception: Traceback (most recent call last): File "/Library/Python/2.7/site-packages/pip/basecommand.py", line 215, in main status =…
Sam
  • 536
  • 5
  • 23
-1
votes
0 answers

"Trouble Installing Chatterbot on Windows - Need Help"

******************************************************************************** Requirements should be satisfied by a PEP 517 installer. If you are using pip, you can try `pip install --use-pep517`. …
-1
votes
1 answer

Why doesn't the Chatterbot reply with a response?

Why is the result of the request to Chatterbot not output in the response variable? from chatterbot import ChatBot from chatterbot.trainers import ChatterBotCorpusTrainer import disnake as discord from disnake import…
-1
votes
1 answer

Package not Installing

I am trying to make an AI bot. When I go into the terminal, I type pip install chatterbot. It is giving an error. It is showing this - pip : The term 'pip' is not recognized as the name of a cmdlet, function, script file, or operable program. Check…
-1
votes
1 answer

why it says I don't have admin privilage to install chatterbot?

I tried to install chatterbot on my up to date python, pip didn't work, everything including running as administrator and every other thing that I don't remember. so I went to…
-1
votes
1 answer

installing chatterbot it raise spacy installation error in python- pip install chatterbot - not working

Ii have installed latest Redistributable Microsoft C++ and upgraded my pip but not resolved...anyone please give solution `pip install chatterbot` preshed/maps.cpp(181): fatal error C1083: Cannot open include file: 'longintrepr.h': No such…
Shadow
  • 3
  • 2
-1
votes
1 answer

Chatterbot: Is it possible to create different database.db to different bot?

I'm using chatterbot to build an NPCbot. I want to create the bot with different dialogs due to different situations. So I use different bots to deal with it. However, the data will store into one file(database.db) so all the dialog still blend…
Meammy
  • 1
  • 1