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
1
vote
1 answer

Download model 'en' for spacy produces "TypeError: can only concatenate list (not 'tuple') to list"

While installing spacy-2.3.6 after chatterbot-1.0.8 in virtualenv-20.19.0 with python-3.7.0, I receive error message OSError: [E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data…
dudung
  • 499
  • 2
  • 17
1
vote
1 answer

Using Chatterbot to Find Similar Input Statements

I read in the chatterbot documentation that chatterbot works by finding the closest matching input statement from a dataset to return an output statement. Is there a way to only match the input statements and return the matching input statement…
walker
  • 444
  • 2
  • 12
1
vote
2 answers

Chatterbot installation working, but broken calls to variables

I installed chatterbot in my terminal earlier today using virtual studio code's terminal. I saw that both chatterbot and chatterbot_corpus worked in installation. Then, I made the following python document: EDIT: Turns out I should define a chatbot…
1
vote
1 answer

what is the use of the bot's name in Python ChatterBot?

from chatterbot import ChatBot # Create a new chat bot named Charlie chatbot = ChatBot('Charlie') what is the use of the bot's name "Charlie"? Can my chatbot know his name in a group chat, and only reply message about him? -- "Hi, Charlie" - bot:…
Youyou Hua
  • 49
  • 5
1
vote
3 answers

sqlalchemy.exc.ArgumentError when creating chatbot

from chatterbot import ChatBot bot = ChatBot("The Royal Zhao") gives the error File "/Users/michaelchary/Documents/GitHub/yalebot/flaskbot.py", line 8, in bot = ChatBot("The Royal Zhao") File…
mac389
  • 3,004
  • 5
  • 38
  • 62
1
vote
0 answers

Present complex decision flow with multiple inputs and outputs with python and flask on the web

This if my first post :). I've only learned python for 5 months without any other coding experience. I've written a python script runs on terminal just fine. The script is used to acquire data, depend on the input data it will ask questions (print…
1
vote
1 answer

How to solve `ResolutionImpossible` error in python when downloading packages?

I am getting this error when using pip to install from a requirements file. C:\Users\keerthi\AppData\Local\Programs\Python\Python36\healthcare\Ai-Healthcare-Chatbot-master>pip install -r requirements.txt Collecting Flask==0.12.3 Using cached…
1
vote
0 answers

I want a list of responses from the Chatterbot?

I am making a contextually based chatbot using ChatterBot library of Python and I have trained the chatbot using a ListTrainer where I passed the question and answer in the Trainer. The response is working fine, but now I need a response list of…
1
vote
1 answer

Chatterbot corpus not found

I'm trying to build a simple chatbot using Chatterbot and use it's corpus. from chatterbot import ChatBot from chatterbot.trainers import ChatterBotCorpusTrainer chatbot = ChatBot('Charlie') corpus_trainer =…
Poojith Chandra
  • 53
  • 1
  • 1
  • 6
1
vote
0 answers

cant install chatterbot (full command output)

I've been trying to install chatterbot for a while now, and I keep getting an error that says: "ERROR: Command errored out with exit status…
1
vote
2 answers

Python could not find module named chatterbot

I changed my laptop lately, so I've been installing the packages I use. After I've installed chatterbot C:\Users\aser>pip show chatterbot Name: ChatterBot Version: 1.0.4 Summary: Home-page: None Author: None Author-email: None License:…
DeeStarks
  • 320
  • 5
  • 16
1
vote
1 answer

Problem in installing chatterbot in python 3.9

I tried downloading the chatterbot package in windows 10 but it always shows an error. I am using python 3.9 and trying to install it in a virtual environment. I had recently downloaded Microsoft Visual C++ 2019 and I think that the error is caused…
Aarav Jain
  • 21
  • 1
  • 3
1
vote
1 answer

Error with installing chatterbot on Python

Whenever I try to install ChatterBot using pip install ChatterBot it always gives an error on this part: Collecting spacy<2.2,>=2.1 Using cached spacy-2.1.9.tar.gz (30.7 MB) Installing build dependencies ... error I have tried reinstalling python…
BIll
  • 11
  • 1
  • 2
1
vote
1 answer

Chatterbot how to get multiple responses

the python chatterbot library given the datasets below convo.txt output.txt hey hey 1 hey hey 2 hey hey 3 or when trained on this dataset, in corpus with the dataset below (yml) - - hey - hey 1 - - hey - hey 2 - - hey - hey 3 when…
1
vote
0 answers

RuntimeError when using Ubuntu dataset in Chatterbot

I run this code which I found over at the chatterbot training examples on Github and it all went well. It downloaded and extracted the file correctly as everything should be. Then I run my code and the file kinda froze. This is the code: import…
Benji
  • 37
  • 1
  • 7
1 2
3
17 18