import aiml
import os
kernel = aiml.kernel()
if os.path.isfile("bot_brain.brn"):
kernel.bootstrap(brainFile = "bot_brain.brn")
else:
kernel.bootstrap(learnFiles = "std-startup.xml", commands = "load aiml b")
kernel.savebrain("bot_brain.brn")
while True:
print kernel.respond(raw_input("Enter Your Message")).strip()
aiml.kernel()
とAIMLを使用して構築されたチャットボットしようとしていますカーネル= aiml.kernel() はAttributeError: 'モジュール' オブジェクトが属性「カーネルのはそれが</p> <p>トレースバック(最新の呼び出しの最後)のようなエラーを投げているのpython
これを参考にしてください。これは役立ちます(http://stackoverflow.com/q/33971517/6521116)。 –