0

我希望我在这里做错了什么,但是每当我尝试插入代码段以保存聊天机器人的会话信息时,终端都会立即关闭并出现错误。这是我的来源:

import aiml
k = aiml.Kernel()
#k.learn("std-startup.xml")
#k.respond("load aiml b")
#k.saveBrain("test.brn")
k.loadBrain("test.brn")
#while True: print k.respond(raw_input("> "))
keepAlive = True
while True: 
    output = k.respond(raw_input("> "))
    print output,
    session = k.getSessionData("Bob")
    sessionFile = file("Bob.ses", "wb")
    marshal.dump(session, sessionFile)
    sessionFile.close()  

新错误

4

2 回答 2

1

可能你需要使用k代替Kernel

session = k.getSessionData("Bob")
于 2014-06-29T23:12:13.240 回答
0
print bot.respond(raw_input(">"), "Bob")
于 2015-02-11T18:34:46.657 回答