Python40行代码实现语音和ChatGPT聊天

首先需要安装依赖包

pip install -r requirements.txt

1. 导入相关的包

from Dxr_Chat.ChatGPT import Chatbot
import os, subprocess
from Dxr_voice.dxr_tts import text_to_speech_sync

2. 初始化

# 初始化
bot = Chatbot(os.environ.get('OPENAI_API_KEY'))

需要在环境变量中设置OPENAI_API_KEY

3. 生成对话

# 生成对话
response = bot.ask_stream("你好")
for i in response:
    print(i, end='', flush=True)

4. 语音合成

def say(text):
    rate = '+50%'
    out_file = text_to_speech_sync(text, rate=rate)
    # 使用sox来播放音频,如果没有安装sox,可以使用其他播放器
    subprocess.call(f"play {out_file}", shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)

5. 语音识别

# 语音识别
def get_voice():
    print("请说话...")
    # 使用sox来录制音频
    subprocess.call("sox -d -r 16000 -c 1 -b 16 test.wav silence 1 0.1 1% 1 1.0 1%", shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
    print("录音结束")
    return open("test.wav", "rb")
# 调用语音识别获取语音文本
voice_text = bot.voice_2_text(get_voice())

6. 语音对话

# 语音对话
while True:
    voice_text = bot.voice_2_text(get_voice())
    print(f'你说:{voice_text}')
    response = bot.ask_stream(voice_text)
    print(f'ChatGPT:', end='')
    final_str = ''
    for i in response:
        print(i, end='', flush=True)
        final_str += i
    print()
    say(final_str)

相关开源项目详见GitHub - boyueluzhipeng/MyChatGPT

  • 1
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值