4cfad5ae0f
- 全新ui - 全面优化websocket逻辑,提高数字人和ui连接的稳定性及资源开销 - 全面优化唤醒逻辑,提供稳定的普通唤醒模式和前置词唤醒模式 - 优化拾音质量,支持多声道麦克风拾音 - 优化自动播放服务器的对接机制,提供稳定和兼容旧版ue工程的对接模式 - 数字人接口输出机器人表情,以适应新fay ui及单片机的数字人表情输出 - 使用更高级的音频时长计算方式,可以更精准控制音频播放完成后的逻辑 - 修复点击关闭按钮会导致程序退出的bug - 修复没有麦克风的设备开启麦克风会出错的问题 - 为服务器主机地址提供配置项,以方便服务器部署
36 lines
1.0 KiB
Python
36 lines
1.0 KiB
Python
import json
|
|
import requests
|
|
from core import content_db
|
|
|
|
|
|
def question(cont, uid=0):
|
|
contentdb = content_db.new_instance()
|
|
if uid == 0:
|
|
list = contentdb.get_list('all','desc', 11)
|
|
else:
|
|
list = contentdb.get_list('all','desc', 11, uid)
|
|
answer_info = dict()
|
|
chat_list = []
|
|
i = len(list)-1
|
|
while i >= 0:
|
|
answer_info = dict()
|
|
if list[i][0] == "member":
|
|
answer_info["role"] = "user"
|
|
answer_info["content"] = list[i][2]
|
|
elif list[i][0] == "fay":
|
|
answer_info["role"] = "bot"
|
|
answer_info["content"] = list[i][2]
|
|
chat_list.append(answer_info)
|
|
i -= 1
|
|
content = {
|
|
"prompt":"请简单回复我。" + cont,
|
|
"history":chat_list}
|
|
url = "http://127.0.0.1:8000/v1/completions"
|
|
req = json.dumps(content)
|
|
headers = {'content-type': 'application/json'}
|
|
r = requests.post(url, headers=headers, data=req)
|
|
res = json.loads(r.text).get('response')
|
|
return req
|
|
|
|
if __name__ == "__main__":
|
|
question("你叫什么名字") |