微信公号 DIY:一小时搭建微信聊天机器人

时间:2024-02-25 09:33:35

http://www.sohu.com/a/155452776_505818

 

微信公号 DIY:一小时搭建微信聊天机器人

最近借用了女朋友的公号,感觉如果只是用来发文章,太浪费微信给提供的这些功能了。想了想,先从最简单的开始,做一个聊天机器人吧。

使用Python实现聊天机器人的方案有多种:AIML、chatterBot以及图灵聊天机器人和微软小冰等。

考虑到以后可能会做一些定制化的需求,这里我选择了 chatterBot(github 项目地址:https://github.com/gunthercox/ChatterBot)。

chatterbot是一款python接口的,基于一系列规则和机器学习算法完成的聊天机器人。具有结构清晰,可扩展性好,简单实用的特点。

chatterBot 的工作流程如图:

  1. 输入模块(input adapter)从终端或者API等输入源获取数据

  2. 输入源会被指定的逻辑处理模块(logic Adapter)分别处理,逻辑处理模块会匹配训练集中已知的最接近输入数据句子A,然后根据句子A去找到相关度最高的结果B,如果有多个逻辑处理模块返回了不同的结果,会返回一个相关度最高的结果。

  3. 输出模块(output adapter)将匹配到的结果返回给终端或者API。

值得一说的是chatterBot 是一个模块化的项目,分为 input Adapter、logic Adapter、storage Adapter、output Adapter以及Trainer 模块。

logic Adapter是一个插件式设计,主进程在启动时会将用户定义的所有逻辑处理插件添加到logic context中,然后交MultiLogicAdapter 进行处理,MultiLogicAdapter 依次调用每个 logic Adapter,logic Adapter 被调用时先执行canprocess 方式判断输入是否可以命中这个逻辑处理插件。比如”今天天气怎么样“这样的问题显然需要命中天气逻辑处理插件,这时时间逻辑处理插件的canprocess 则会返回False。在命中后logic Adapter 负责计算出对应的回答(Statement对象)以及可信度(confidence),MultiLogicAdapter会取可信度最高的回答,并进入下一步。

下面我们来看下 chatterBot 如何使用

chatterBot 安装&使用 安装

chatterBot 是使用Python编写的,可以使用 pip 安装:

  1. pip install chatterbot

chatterBot 的中文对话要求Python3 以上版本,建议在Python3.x 环境下开发

测试

打开iPython,输入测试一下

  1. In[1]:from chatterbot import ChatBot# import ChatBot

  2. In[2]:momo =ChatBot(\'Momo\',trainer=\'chatterbot.trainers.ChatterBotCorpusTrainer\')

  3. /Users/gs/.virtualenvs/py3/lib/python3.6/site-packages/chatterbot/storage/jsonfile.py:26:UnsuitableForProductionWarning:TheJsonFileStorageAdapteris not recommended forproduction environments.

  4. self.UnsuitableForProductionWarning# 这里storage adapter 默认使用的是 json 格式存储数据的,如果想在服务端部署,应该避免使用这种格式,因为实在是太慢了

  5. In[3]:momo.train("chatterbot.corpus.chinese")# 指定训练集,这里我们使用中文

  6. # 下边是对话结果

  7. In[4]:momo.get_response(\'你好\')

  8. Out[4]:<Statementtext:你好>

  9. In[5]:momo.get_response(\'怎么了\')

  10. Out[5]:<Statementtext:没什么.>

  11. In[6]:momo.get_response(\'你知道它的所有内容吗?\')

  12. Out[6]:<Statementtext:优美胜于丑陋.>

  13. In[7]:momo.get_response(\'你是一个程序员吗?\')

  14. Out[7]:<Statementtext:我是个程序员>

  15. In[8]:momo.get_response(\'你使用什么语言呢?\')

  16. Out[8]:<Statementtext:我经常使用Python,Java和C++.>

这时你已经可以和机器人对话了,不过现在由于训练数据太少,机器人只能返回简单的对话。

这里是默认的中文对话训练数据 中文训练数据地址:

https://github.com/gunthercox/chatterbot-corpus/tree/master/chatterbot_corpus/data/chinese。

那么我们怎么添加训练数据呢?

训练机器人

chatterBot 内置了training class,自带的方法有两种,一种是使用通过输入list 来训练,比如 ["你好", "我不好"],后者是前者的回答,另一种是通过导入Corpus 格式的文件来训练。也支持自定义的训练模块,不过最终都是转为上述两种类型。

chatterBot 通过调用 train() 函数训练,不过在这之前要先用 set_trainer() 来进行设置。例如:

  1. In[12]:from chatterbot.trainers import ListTrainer# 导入训练模块的 ListTrainer 类

  2. In[13]:momo.get_response(\'你叫什么?\')# 现在是答非所问,因为在这之前我们并没有训练过

  3. Out[13]:<Statementtext:我在烤蛋糕.>

  4. In[14]:momo.set_trainer(ListTrainer)# 指定训练方式

  5. In[15]:momo.train([\'你叫什么?\',\'我叫魔魔!\'])# 训练

  6. In[16]:momo.get_response(\'你叫什么?\')# 现在机器人已经可以回答了

  7. Out[16]:<Statementtext:我叫魔魔!>

训练好的数据默认存在 ./database.db,这里使用的是 jsondb。

对 chatterBot 的介绍先到这里,具体用法可以参考文档:ChatterBot Tutorial:http://chatterbot.readthedocs.io/en/stable/tutorial.html

接下来,介绍如何在项目中使用 chatterBot。

使用 Sanic 创建项目

Sanic 是一个和类Flask 的基于Python3.5+的web框架,它编写的代码速度特别快。

除了像Flask 以外,Sanic 还支持以异步请求的方式处理请求。这意味着你可以使用新的 async/await 语法,编写非阻塞的快速的代码。

对 Sanic 不了解的可以参考我之前的一篇文章: ,可以在公号输入 【sanic】获取文章地址。

这里之所以使用 Sanic 是因为他和Flask 非常像,之前我一直使用Flask,并且它也是专门为Python3.5 写的,使用到了协程。

首先建个项目,这里项目我已经建好了,项目结构如下:

  1. .

  2. ├──LICENSE

  3. ├──README.md

  4. ├──manage.py # 运行文件 启动项目 使用 python manage.py 命令

  5. ├──momo

  6. │├──__init__.py

  7. │├──app.py # 创建app 模块

  8. │├──helper.py

  9. │├──settings.py # 应用配置

  10. │└──views

  11. │├──__init__.py

  12. │├──hello.py # 测试模块

  13. │└──mweixin.py # 微信消息处理模块

  14. ├──requirements.txt

  15. └──supervisord.conf

源码我已经上传到github,有兴趣的可以看一下,也可以直接拉下来测试。项目代码地址:https://github.com/gusibi/momo/tree/chatterbot

我们先重点看下 hello.py文件 和 helper.py。

  1. # hello.py

  2. # -*- coding: utf-8 -*-

  3. fromsanic importSanic,Blueprint

  4. fromsanic.views importHTTPMethodView

  5. fromsanic.response importtext

  6. frommomo.helper importget_momo_answer # 导入获取机器人回答获取函数

  7. blueprint =Blueprint(\'index\',url_prefix=\'/\')

  8. classChatBot(HTTPMethodView):

  9. # 聊天机器人 http 请求处理逻辑

  10. async defget(self,request):

  11. ask =request.args.get(\'ask\')

  12. # 先获取url 参数值 如果没有值,返回 \'你说啥\'

  13. ifask:

  14. answer =get_momo_answer(ask)

  15. returntext(answer)

  16. returntext(\'你说啥?\')

  17. blueprint.add_route(ChatBot.as_view(),\'/momo\')

  1. # helper.py

  2. fromchatterbot importChatBot

  3. momo_chat =ChatBot(

  4. \'Momo\',

  5. # 指定存储方式 使用mongodb 存储数据

  6. storage_adapter=\'chatterbot.storage.MongoDatabaseAdapter\',

  7. # 指定 logic adpater 这里我们指定三个

  8. logic_adapters=[

  9. "chatterbot.logic.BestMatch",

  10. "chatterbot.logic.MathematicalEvaluation",# 数学模块

  11. "chatterbot.logic.TimeLogicAdapter",# 时间模块

  12. ],

  13. input_adapter=\'chatterbot.input.VariableInputTypeAdapter\',

  14. output_adapter=\'chatterbot.output.OutputAdapter\',

  15. database=\'chatterbot\',

  16. read_only=True

  17. )

  18. defget_momo_answer(content):

  19. # 获取机器人返回结果函数

  20. response =momo_chat.get_response(content)

  21. ifisinstance(response,str):

  22. returnresponse

  23. returnresponse.text

运行命令 python manage.py启动项目。

在浏览器访问url: http://0.0.0.0:8000/momo?ask=你是程序员吗

到这里,我们已经启动了一个web 项目,可以通过访问url 的方式和机器人对话,是时候接入微信公号了!

接入微信公众号 前提

  1. 拥有一个可以使用的微信公众号(订阅号服务号都可以,如果没有,可以使用微信提供的测试账号)

  2. 拥有一个外网可以访问的服务器(vps 或公有云都可以 aws 新用户免费使用一年,可以试试)

  3. 服务器配置了python3 环境,(建议使用 virtualenvwrapper 配置虚拟环境)

微信设置

登录微信公众号(https://mp.weixin.qq.com)

打开:开发>基本配置

查看公号开发信息:

开启服务器配置:

设置请求url,这里是你配置的url(需要外网可访问,只能是80或443端口)

填写token和EncodingAESKey,这里我选择的是兼容模式,既有明文方便调试,又有信息加密。

详细配置可以参考官方文档:接入指南(https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1445241432)

如果你的 服务器地址已经配置完成,现在点击提交应该就成功了。如果没有成功我们接下来看怎么配置服务器地址。

代码示例

先看下 微信请求的视图代码:

  1. # -*- coding: utf-8 -*-

  2. from__future__ importunicode_literals

  3. fromsix importStringIO

  4. importre

  5. importxmltodict

  6. fromchatterbot.trainers importListTrainer

  7. fromsanic importBlueprint

  8. fromsanic.views importHTTPMethodView

  9. fromsanic.response importtext

  10. fromsanic.exceptions importServerError

  11. fromweixin importWeixinMpAPI

  12. fromweixin.lib.WXBizMsgCryptimportWXBizMsgCrypt

  13. frommomo.settings importConfig

  14. blueprint =Blueprint(\'weixin\',url_prefix=\'/weixin\')

  15. classWXRequestView(HTTPMethodView):

  16. def_get_args(self,request):

  17. # 获取微信请求参数,加上token 拼接为完整的请求参数

  18. params =request.raw_args

  19. ifnotparams:

  20. raiseServerError("invalid params",status_code=400)

  21. args ={

  22. \'mp_token\':Config.WEIXINMP_TOKEN,

  23. \'signature\':params.get(\'signature\'),

  24. \'timestamp\':params.get(\'timestamp\'),

  25. \'echostr\':params.get(\'echostr\'),

  26. \'nonce\':params.get(\'nonce\'),

  27. }

  28. returnargs

  29. defget(self,request):

  30. # 微信验证服务器这一步是get 请求,参数可以使用 request.raw_args 获取

  31. args =self._get_args(request)

  32. weixin =WeixinMpAPI(**args)# 这里我使用了 第三方包 python-weixin 可以直接实例化一个WeixinMpAPI对象

  33. ifweixin.validate_signature():# 验证参数合法性

  34. # 如果参数争取,我们将微信发过来的echostr参数再返回给微信,否则返回 fail

  35. returntext(args.get(\'echostr\')or\'fail\')

  36. returntext(\'fail\')

  37. blueprint.add_route(WXRequestView.as_view(),\'/request\')

这里处理微信请求我使用的是 我用python 写的 微信SDK python-weixin,可以使用 pip 安装:

  1. pip install python-weixin

这个包最新版本对Python3 加密解密有点问题,可以直接从github 安装:

  1. pip install git+https://github.com/zongxiao/python-weixin.git@py3

然后更新 app.py 文件:

  1. # -*- coding: utf-8 -*-

  2. fromsanic importSanic

  3. frommomo.settings importConfig

  4. defcreate_app(register_bp=True,test=False):

  5. # 创建app

  6. app =Sanic(__name__)

  7. iftest:

  8. app.config[\'TESTING\']=True

  9. # 从object 导入配置

  10. app.config.from_object(Config)

  11. register_blueprints(app)

  12. returnapp

  13. defregister_blueprints(app):

  14. frommomo.views.hello importblueprint ashello_bp

  15. frommomo.views.mweixin importblueprint aswx_bp

  16. app.register_blueprint(hello_bp)

  17. # 注册 wx_bp

  18. app.register_blueprint(wx_bp)

详细代码参考github: 微信聊天机器人 momo(https://github.com/gusibi/momo/tree/chatterbot)

接入聊天机器人

现在我们公号已经接入了自己的服务,是时候接入微信聊天机器人。

微信聊天机器人的工作流程如下:

看我们消息逻辑处理代码:

  1. # -*- coding: utf-8 -*-

  2. from__future__ importunicode_literals

  3. fromsix importStringIO

  4. importre

  5. importxmltodict

  6. fromchatterbot.trainers importListTrainer

  7. fromsanic importBlueprint

  8. fromsanic.views importHTTPMethodView

  9. fromsanic.response importtext

  10. fromsanic.exceptions importServerError

  11. fromweixin importWeixinMpAPI

  12. fromweixin.reply importTextReply

  13. fromweixin.response importWXResponseas_WXResponse

  14. fromweixin.lib.WXBizMsgCryptimportWXBizMsgCrypt

  15. frommomo.settings importConfig

  16. frommomo.helper importvalidate_xml,smart_str,get_momo_answer

  17. frommomo.media importmedia_fetch

  18. blueprint =Blueprint(\'weixin\',url_prefix=\'/weixin\')

  19. appid =smart_str(Config.WEIXINMP_APPID)

  20. token =smart_str(Config.WEIXINMP_TOKEN)

  21. encoding_aeskey =smart_str(Config.WEIXINMP_ENCODINGAESKEY)

  22. # 关注后自动返回的文案

  23. AUTO_REPLY_CONTENT ="""

  24. Hi,朋友!

  25. 这是我妈四月的公号,我是魔魔,我可以陪你聊天呦!

  26. 我还能"记账",输入"记账"会有惊喜呦!

  27. <a href="https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzAwNjI5MjAzNw==&scene=124#wechat_redirect">历史记录</a>

  28. """

  29. classReplyContent(object):

  30. _source =\'value\'

  31. def__init__(self,event,keyword,content=None,momo=True):

  32. self.momo =momo

  33. self.event =event

  34. self.content =content

  35. self.keyword =keyword

  36. ifself.event ==\'scan\':

  37. pass

  38. @property

  39. defvalue(self):

  40. ifself.momo:

  41. answer =get_momo_answer(self.content)

  42. returnanswer

  43. return\'\'

  44. classWXResponse(_WXResponse):

  45. auto_reply_content =AUTO_REPLY_CONTENT

  46. def_subscribe_event_handler(self):

  47. # 关注公号后的处理逻辑

  48. self.reply_params[\'content\']=self.auto_reply_content

  49. self.reply =TextReply(**self.reply_params).render()

  50. def_unsubscribe_event_handler(self):

  51. # 取关后的处理逻辑,取关我估计会哭吧

  52. pass

  53. def_text_msg_handler(self):

  54. # 文字消息处理逻辑 聊天机器人的主要逻辑

  55. event_key =\'text\'

  56. content =self.data.get(\'Content\')

  57. reply_content =ReplyContent(\'text\',event_key,content)

  58. self.reply_params[\'content\']=reply_content.value

  59. self.reply =TextReply(**self.reply_params).render()

  60. classWXRequestView(HTTPMethodView):

  61. def_get_args(self,request):

  62. params =request.raw_args

  63. ifnotparams:

  64. raiseServerError("invalid params",status_code=400)

  65. args ={

  66. \'mp_token\':Config.WEIXINMP_TOKEN,

  67. \'signature\':params.get(\'signature\'),

  68. \'timestamp\':params.get(\'timestamp\'),

  69. \'echostr\':params.get(\'echostr\'),

  70. \'nonce\':params.get(\'nonce\'),

  71. }

  72. returnargs

  73. defget(self,request):

  74. args =self._get_args(request)

  75. weixin =WeixinMpAPI(**args)

  76. ifweixin.validate_signature():

  77. returntext(args.get(\'echostr\')or\'fail\')

  78. returntext(\'fail\')

  79. def_get_xml(self,data):

  80. post_str =smart_str(data)

  81. # 验证xml 格式是否正确

  82. validate_xml(StringIO(post_str))

  83. returnpost_str

  84. def_decrypt_xml(self,params,crypt,xml_str):

  85. # 解密消息

  86. nonce =params.get(\'nonce\')

  87. msg_sign =params.get(\'msg_signature\')

  88. timestamp =params.get(\'timestamp\')

  89. ret,decryp_xml =crypt.DecryptMsg(xml_str,msg_sign,

  90. timestamp,nonce)

  91. returndecryp_xml,nonce

  92. def_encryp_xml(self,crypt,to_xml,nonce):

  93. # 加密消息

  94. to_xml =smart_str(to_xml)

  95. ret,encrypt_xml =crypt.EncryptMsg(to_xml,nonce)

  96. returnencrypt_xml

  97. defpost(self,request):

  98. # 获取微信服务器发送的请求参数

  99. args =self._get_args(request)

  100. weixin =WeixinMpAPI(**args)

  101. ifnotweixin.validate_signature():# 验证参数合法性

  102. raiseAttributeError("Invalid weixin signature")

  103. xml_str =self._get_xml(request.body)# 获取form data

  104. crypt =WXBizMsgCrypt(token,encoding_aeskey,appid)

  105. decryp_xml,nonce =self._decrypt_xml(request.raw_args,crypt,xml_str)# 解密

  106. xml_dict =xmltodict.parse(decryp_xml)

  107. xml =WXResponse(xml_dict)()or\'success\'# 使用WXResponse 根据消息获取机器人返回值

  108. encryp_xml =self._encryp_xml(crypt,xml,nonce)# 加密消息

  109. returntext(encryp_xml orxml)# 回应微信请求

  110. blueprint.add_route(WXRequestView.as_view(),\'/request\')

可以看到,我处理微信请求返回结果比较简单,也是使用的 python-weixin 包封装的接口,主要的处理逻辑是 WXResponse。

这里需要注意的是,如果服务器在5秒内没有响应微信服务器会重试。为了加快响应速度,不要在服务器 将 chatterBot 的 storage adapter 设置为使用 jsondb。

上边这些就是,微信聊天机器人的主要处理逻辑,我们运行服务,示例如下:

可以看到这里聊天机器人也可以做简单的数学运算和报时,是因为我在上边指定处理逻辑的时候添加了数学模块和时间模块:

  1. momo_chat =ChatBot(

  2. \'Momo\',

  3. # 指定存储方式 使用mongodb 存储数据

  4. storage_adapter=\'chatterbot.storage.MongoDatabaseAdapter\',

  5. # 指定 logic adpater 这里我们指定三个

  6. logic_adapters=[

  7. "chatterbot.logic.BestMatch",

  8. "chatterbot.logic.MathematicalEvaluation",# 数学模块

  9. "chatterbot.logic.TimeLogicAdapter",# 时间模块

  10. ],

  11. input_adapter=\'chatterbot.input.VariableInputTypeAdapter\',

  12. output_adapter=\'chatterbot.output.OutputAdapter\',

  13. database=\'chatterbot\',

  14. read_only=True

  15. )

到这里,微信机器人的搭建就完成了,详细代码已经长传到了 github: https://github.com/gusibi/momo/tree/chatterbot,感兴趣的可以参考一下。

参考链接

  • ChatterBot 项目地址:https://github.com/gunthercox/ChatterBot

  • ChatterBot Tutorial:http://chatterbot.readthedocs.io/en/stable/tutorial.html

  • 用Python快速实现一个聊天机器人:http://www.jianshu.com/p/d1333fde266f

  • 基于Python-ChatterBot搭建不同adapter的聊天机器人:https://ask.hellobi.com/blog/guodongwei1991/7626

  • 擁有自動學習的 Python 機器人 - ChatterBot:https://kantai235.github.io/2017/03/16/ChatterBotTeaching/

  • 使用 ChatterBot构建聊天机器人:https://www.biaodianfu.com/chatterbot.html

  • python-weixin sdk: https://github.com/gusibi/python-weixin

预告

这里,聊天机器人还是比较简单的只能回复简单的对话,下一篇将要结束如何在公号训练机器人以及一个更实用的功能,如何让公号变成一个博客写作助手。

最后,感谢女朋友支持。

欢迎关注(April_Louisa)

请我喝芬达