d90d699b58
+ 打出Fay数字人助理版作为主分支(带货版移到分支[`fay-sales-edition`]); + 添加Fay助理的文字沟通窗口(文字与语音同步); + 添加沟通记录本地保存功能; + 升级ChatGLM-6B的应用逻辑,长文本与语音回复分享;
12 lines
319 B
Python
12 lines
319 B
Python
import json
|
|
import requests
|
|
|
|
def question(cont):
|
|
url="http://localhost:5005/webhooks/rest/webhook"
|
|
req = json.dumps({"sender": "user", "message": cont})
|
|
headers = {'content-type': 'application/json'}
|
|
r = requests.post(url, headers=headers, data=req)
|
|
lists = json.loads(r.text)
|
|
|
|
return lists
|