Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

# ChatBox
from chatterbot.trainers import ListTrainer
from chatterbot import *

bot = ChatBot('Test')

conv = open('chats.txt','r').readlines()

bot.set_trainer(ListTrainer)

bot.train(conv)

while True:
    request = input('You: ')
    response = bot.get_response(request)
    
    print('Bot: ',response)
   

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors