1 Star 0 Fork 5

lhs/语音聊天机器人

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
voiceRobot 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
#!coding:utf8
import sys
import pyttsx
import requests
import speech
KEY = '**********************'
#在图灵机器人官网注册的一个API-->http://www.tuling123.com
"""
function: 接收用户语音,转成文字
return: 用户的言语文字
"""
def AcceptDialogue():
phrase = speech.input()
return phrase.encode('gb2312')
"""
function: 接收用户对话,返回相应对话
parameter: msg 用户描述的言语
return: 反馈用户的言语
"""
def get_response(msg):
apiUrl = 'http://www.tuling123.com/openapi/api'
data = {
'key' : KEY,
'info' : msg,
'userid' : 'wechat-robot',
}
try:
r = requests.post(apiUrl, data=data).json()
return r.get('text')
except:
return "没听懂你说的啥"
"""
function: 接收文字,转成语音
parameter: 反馈用户的言语
"""
def saySth(content):
reload(sys)
sys.setdefaultencoding("utf-8")
engine = pyttsx.init()
engine.say(content)
engine.runAndWait()
"""
function: 调用子模块实现语音聊天
"""
def main():
while True:
msg = AcceptDialogue()
content = get_response(msg)
saySth(content)
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/MasterLHS/voice_chat_robot.git
git@gitee.com:MasterLHS/voice_chat_robot.git
MasterLHS
voice_chat_robot
语音聊天机器人
master

搜索帮助