from
chatterbot
import
ChatBot
from
chatterbot.trainers
import
ListTrainer
bot
=
ChatBot(
'Default Response Example Bot'
,
storage_adapter
=
'chatterbot.storage.SQLStorageAdapter'
,
logic_adapters
=
[
{
'import_path'
:
'chatterbot.logic.BestMatch'
,
'thresold'
:
0.65
,
'default_response'
:
'I am sorry but i do not understand'
}
],
)
trainer
=
ListTrainer(bot)
trainer.train([
'How can i help u?'
,
'I want to create a chat bot'
,
'Have you read the documentation?'
,
'No i have not'
,
'This should help get you started:http://chatterbot.rtfd.org'
])
question
=
"How do i make an omelette?"
print
(question)
response
=
bot.get_response(question)
print
(response)
print
(
"\n"
)
question
=
"How to make a chat bot?"
print
(question)
response
=
bot.get_response(question)
print
(response)
print
(
"\n"
)