价值百亿的人工智能部分代码

价值百亿的人工智能部分代码

# -*- coding: utf-8 -*-
import random
import json
import requests
import os

from aip import AipSpeech
from playsound import playsound

client_id = "trDlLCP25KyD2f5myKqvFN7B"
client_secret = "FlSwaoOs37GvWGTVgAOqxVvfn7uKh011"


def unit_chat(chat_input, user_id='1'):
    '''
    功能: 聊天对话
    参数说明:
        chat_input: 用户输入的内容
        user_id: 该用户ID
        :return 返回百度unit机器人的回复语句
    '''
    # dateTime = time.localtime(time.time())

    chat_reply = 'sorry小主,您说的太深奥了,我还理解不了...'
    url = "https://aip.baidubce.com/oauth/2.0/token?grant_type=client_credentials&client_id=%s&client_secret=%s" % (
        client_id, client_secret)  # 获取token
    res = requests.get(url)
    access_token = eval(res.text)['access_token']
    unit_chatbot_url = "https://aip.baidubce.com/rpc/2.0/unit/service/chat?access_token=" + access_token  # 访问百度api
    post_data = {
        "log_id": str(random.random()),
        "bot_id": ["1116655", "1116652", "1116618", "1116621"],
        "request": {
            "query": chat_input,
            "user_id": user_id
        },
        "session_id": "",
        "service_id": "S58125",   # 机器人ID
        "version": "2.0"
    }
    res = requests.post(url=unit_chatbot_url, json=post_data)
    unit_chat_obj = json.loads(res.content)
    # 判断聊天接口返回是否正常
    if unit_chat_obj['error_code'] != 0:
        return chat_reply
    # 解析返回的数据
    # result -> response_list -> (schema->intent_confidence>0.0)
    unit_chat_obj_result = unit_chat_obj['result']
    unit_chat_response_list = unit_chat_obj_result['response_list']

    # 随机选择一个意图置信度大于0的回复作为最终机器人的回复语句
    unit_chat_response_obj = random.choice([unit_chat_response for unit_chat_response in unit_chat_response_list if
                                            unit_chat_response['schema']['intent_confidence'] > 0.0])

    # 进一步解析action_list
    unit_chat_response_action_list = unit_chat_response_obj['action_list']
    unit_chat_response_action_obj = random.choice(unit_chat_response_action_list)
    unit_chat_response_say = unit_chat_response_action_obj['say']
    return unit_chat_response_say


def playSound(str):
    """ 你的 APPID AK SK 最好是用你的替换,不要用我的 """
    APP_ID = '24838923'
    API_KEY = 'qaCknGykc3zhrgfMhm0ruGtG'
    SECRET_KEY = 'zOADaE3SviPlbbQGLSrYmg2aRpvTVkN9'

    client = AipSpeech(APP_ID, API_KEY, SECRET_KEY)
    # 明天依旧光芒万丈哦,我最亲爱的主人,现在,我能为您做些什么呢?
    result = client.synthesis(str, 'zh', 1, {
        'vol': 3,  # 音量
        'spd': 5,  # 语速
        'pit': 9,  # 语调
        'per': 4,  # 0:女 1:男 3:逍遥 4:小萝莉
    })
    if not isinstance(result, dict):
        with open('audio.mp3', 'wb') as f:
            f.write(result)

    playsound('audio.mp3')
    os.remove('audio.mp3')


if __name__ == '__main__':

    say = '今天的不开心就止于此吧,明天依旧光芒万丈哦,主人,我是小爱,我来为您服务~'
    print(say)
    playSound(say)

    while True:
        chat_input = input('用户输入:')
        chat_reply = unit_chat(chat_input)
        print('机器人回复内容 >>>', chat_reply)
        playSound(chat_reply)
        if chat_input == 'q':
            break

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值