问题描述
我正在为聊天机器人使用Python和aimL文件。通配符不会接收用户输入;相反,机器人会使用默认的“无可用回复”选项进行响应。仅当用户正确键入模式时,它才有效;其他所有尝试(例如“请取菜”)都会失败。我也用^和#尝试过,它们都不起作用。
aimL文件
<category><pattern>GIVE ME A RECIPE</pattern>
<template> What kind of recipe did you want? </template></category>
<category><pattern>* RECIPE</pattern>
<template><srai>GIVE ME A RECIPE</srai></template></category>
<category><pattern> * RECIPE *</pattern>
<template><srai>GIVE ME A RECIPE</srai></template></category>
<category><pattern>RECIPE *</pattern>
<template><srai>GIVE ME A RECIPE</srai></template></category>
<category><pattern>*</pattern>
<template>no available reply</template></category>
Python代码
kern = aiml.Kernel()
kern.bootstrap(learnFiles="chefbotReplies.aiml")
userInput = input("> ")
answer = kern.respond(userInput)
print(answer)
谁能告诉我我做错了什么?我迷失了方向
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)