Exemple #1
0
def makeBot(playName,name):
    pame = name.replace(".","")
    pame = pame.replace("/","")
    pame = filter(lambda x: x in string.printable,pame)
    bot = ChatBot(pame)
    bot.gg()
    bot = ChatBot(pame)
    print playName+'.'+pame
    print os.getcwd()
    bot.train(playName+'.'+pame)
    return bot
Exemple #2
0
def makeBot(playName, name):
    pame = name.replace(".", "")
    pame = pame.replace("/", "")
    pame = filter(lambda x: x in string.printable, pame)
    bot = ChatBot(pame)
    bot.gg()
    bot = ChatBot(pame)
    print playName + '.' + pame
    print os.getcwd()
    bot.train(playName + '.' + pame)
    return bot
Exemple #3
0
from chatterbot import ChatBot
import time

bot1 = ChatBot("Chicken")
bot2 = ChatBot("Duck")
bot1.gg()
bot1 = ChatBot("Chicken")
bot1.train("chatterbot.corpus.english")
bot2.train("chatterbot.corpus.test")
#bot1.train("chatterbot.corpus.test")
response2="What's slappin'?"
count = 0
count2 = 0
chicken = 1
if chicken==1:
    while True:
        count = count + 1
        time.sleep(2)
        response1=bot1.get_response(response2)
        if len(response1)<50:
            response1=response1+" "+bot1.get_response(response1)
        response2=bot2.get_response(response1)
        print "Bot1:"+response1
        time.sleep(2)
        print "Bot2:"+response2
elif chicken==2:
    while True:
        response1=bot1.get_response(raw_input(" "))
        print response1
elif chicken==3:
    i = 0
Exemple #4
0
from chatterbot import ChatBot
import time

bot1 = ChatBot("Chicken")
bot2 = ChatBot("Duck")
bot1.gg()
bot1 = ChatBot("Chicken")
bot1.train("chatterbot.corpus.english")
bot2.train("chatterbot.corpus.test")
#bot1.train("chatterbot.corpus.test")
response2 = "What's slappin'?"
count = 0
count2 = 0
chicken = 1
if chicken == 1:
    while True:
        count = count + 1
        time.sleep(2)
        response1 = bot1.get_response(response2)
        if len(response1) < 50:
            response1 = response1 + " " + bot1.get_response(response1)
        response2 = bot2.get_response(response1)
        print "Bot1:" + response1
        time.sleep(2)
        print "Bot2:" + response2
elif chicken == 2:
    while True:
        response1 = bot1.get_response(raw_input(" "))
        print response1
elif chicken == 3:
    i = 0