欢迎光临
我们一直在努力

使用python实现机器人聊天功能

利用python实现一个机器人聊天功能,具体方法如下:

import aiml

import sys

import os

def get_module_dir(name):

print("module", sys.modules[name])

path = getattr(sys.modules[name], 'file', None)

print(path)

if not path:

raise AttributeError('module %s has not attribute file' % name)

return os.path.dirname(os.path.abspath(path))

alice_path = get_module_dir('aiml') + 'botdataalice'

os.chdir(alice_path) # 切换到语料库所在工作目录

alice = aiml.Kernel() # 创建机器人alice对象

alice.learn("startup.xml")

alice.respond('LOAD ALICE')

while True:

message = input("Enter your message >> ")

if("exit" == message):

exit()

response = alice.respond(message) # 机器人应答

print(response)

赞(0)
【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。