当前位置:   article > 正文

微信小程序python人工智能回复_Python 小程序-微信AI自动回复

微信小程序结合人工智能和python

一简介

使用itcha实现微信登录及消息发送接收,使用图灵AI实现智能回复。

参考API:

http://www.tuling123.com/

https://itchat.readthedocs.io/zh/latest/

二代码

import itchat,time

import requests

KEY = ‘5a480b8f5d034841bbb759ccfdb1e8ac‘#官网申请

def reply_msg(inp_msg):

apiUrl = ‘http://www.tuling123.com/openapi/api‘

data = {

‘key‘ : KEY,

‘info‘ : inp_msg,

‘userid‘ : ‘freo_lly‘,

}

try:

r = requests.post(apiUrl, data=data).json()

rmsg = ‘AI:】‘+r.get(‘text‘)+‘\r\n 【本消息来自小立业AI自动回复】‘

print(rmsg)

return rmsg

except:

return ‘AI:】Error,搞不懂‘

## return inp_msg

#自动接收消息

@itchat.msg_register(itchat.content.TEXT)

def print_content(msg):

print(‘接到消息:‘,msg[‘Text‘])

## inp_msg = input(‘输入回复:‘)

## return inp_msg

return reply_msg(msg[‘Text‘])

itchat.auto_login(True)

itchat.run()

三效果

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/352826
推荐阅读
相关标签
  

闽ICP备14008679号