request_utils.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. @Time : 2024/10/17 14:36
  5. @File : request_utils.py.py
  6. @Desc :
  7. """
  8. #import sys
  9. #sys.path.append("/Users/caoyongchuang/PycharmProjects/predict/ai-slibra-assistant")
  10. import re
  11. import os
  12. import shutil
  13. import json
  14. import time
  15. from config import get_logger
  16. import requests
  17. import base64
  18. from database import *
  19. from util import timetic, norm_community
  20. import uuid
  21. SERVE_HOST = os.environ.get("SERVE_HOST", "192.168.100.159")
  22. VOICE_DIR = os.environ.get("VOICE_DIR","/root/aibot/dm/voice")
  23. logger = get_logger()
  24. def nlg_service(uid, bid, node_name, choose_speech):
  25. return ''
  26. def get_voice(content, is_local, silence_duration):
  27. # appid = "1226203350"
  28. # access_token = "mMPNJ4WbSVL6NHQKvn4qllYfwv1G4X5w"
  29. # 企业
  30. appid = "8661018433"
  31. access_token ="KkTVKPD9kY-i27Hr9gXtFQ4zqY7nrhJl"
  32. cluster = "volcano_tts"
  33. voice_type = "BV700_V2_streaming"
  34. host = "openspeech.bytedance.com"
  35. api_url = f"https://{host}/api/v1/tts"
  36. header = {"Authorization": f"Bearer;{access_token}"}
  37. #DEFAULT_FILE_UPLOAD_URL = 'http://10.0.0.28:8080/qiniuyun/upLoadImage'
  38. DEFAULT_FILE_UPLOAD_URL = 'http://192.168.9.54:8080/qiniuyun/upLoadImage'
  39. rid = str(uuid.uuid4())
  40. request_json = {
  41. "app": {
  42. "appid": appid,
  43. "token": "access_token",
  44. "cluster": cluster
  45. },
  46. "user": {
  47. "uid": "388808087185088"
  48. },
  49. "audio": {
  50. "voice_type": voice_type,
  51. #"encoding": "mp3",
  52. "encoding": "wav",
  53. "rate": "16000",
  54. "speed_ratio": 0.9,
  55. "volume_ratio": 1.0,
  56. "pitch_ratio": 1.0,
  57. "emotion": "customer_service",
  58. "language": "zh"
  59. },
  60. "request": {
  61. "reqid": rid,
  62. "text": content,
  63. "text_type": "plain",
  64. "operation": "query",
  65. "with_frontend": 1,
  66. "frontend_type": "unitTson",
  67. "silence_duration":silence_duration
  68. }
  69. }
  70. retry = 1
  71. while retry <=3:
  72. try:
  73. resp = requests.post(api_url, json.dumps(request_json), headers=header)
  74. rfile = f"{rid}.wav"
  75. path, file = f"{VOICE_DIR}/{rfile}", f"../voice/{rfile}"
  76. if "data" in resp.json():
  77. data = resp.json()["data"]
  78. file_to_save = open(file, "wb")
  79. file_to_save.write(base64.b64decode(data))
  80. if is_local:
  81. if os.path.exists(file):
  82. logger.info(f"voice local file ::session_id={rid}, res={file}")
  83. return path
  84. else:
  85. files = {'file': open(file, 'rb')}
  86. response = requests.post(DEFAULT_FILE_UPLOAD_URL, files=files)
  87. if response.ok:
  88. result = json.loads(response.text)
  89. url = result.get('data')
  90. if os.path.exists(file):
  91. os.system(f"rm -fr {file}")
  92. logger.info(f"voice upload_plot::session_id={rid}, res={url}")
  93. return url
  94. except Exception as e:
  95. retry +=1
  96. time.sleep(2)
  97. logger.info(f"voice generate 错误{e} retry:{retry}")
  98. @timetic
  99. def voice_service(content, local=False, silence_duration="125"):
  100. encode_b = content.encode("utf-8")
  101. key = base64.b64encode(encode_b)
  102. name = "voice_url"
  103. retry,num =1,1
  104. while num <= retry:
  105. try:
  106. url = r.hget(name, key)
  107. #url=''
  108. if url and os.path.exists(url):
  109. logger.info(f"获取voice url成功:{content}")
  110. return url
  111. else:
  112. url = get_voice(content, local, silence_duration)
  113. r.hset(name, key, url)
  114. r.expire(name, 3600 * 24*7)
  115. return url
  116. except Exception as e:
  117. logger.info(f"get voice url {num}缓存错误{e}")
  118. num +=1
  119. @timetic
  120. def intent_service(node_name, asr, bid, code, uid, sessionid):
  121. param = json.dumps(dict(nodeId=code,
  122. userId=uid,
  123. sessionId=sessionid,
  124. taskId=bid,
  125. query=asr,
  126. nodeName = node_name
  127. ), ensure_ascii=False)
  128. try:
  129. #ip= "10.0.0.24"
  130. res = requests.post(f"http://{SERVE_HOST}:50072/intention",
  131. param.encode("UTF-8"),
  132. headers={'Content-Type': 'application/json;charset=utf-8'},
  133. timeout=8)
  134. content = json.loads(res.text)
  135. logger.info(f"intent service:{content}")
  136. return [content]
  137. except Exception as e:
  138. logger.error(f"intent服务异常:query:{asr},uid:{uid},session:{sessionid}:{e}")
  139. return []
  140. @timetic
  141. def business_service(session_id, uid, code, tools, asr):
  142. def getContent(contents, tools):
  143. if tools in ["water_info", "water_loc_info"]:
  144. mess = '您查询的小区'
  145. neighbourhoodName = [item.get('neighbourhoodName') for item in contents]
  146. reason = ["因"+item.get('reason') for item in contents]
  147. timeBegin = ["于"+item.get('timeBegin') + "停水" for item in contents]
  148. timeEnd = [item.get('timeEnd') for item in contents]
  149. conclusions = [f"预计{time}恢复供水" if time is not None else "暂未确定恢复时间" for time in timeEnd]
  150. nums = len(neighbourhoodName)
  151. mess +=";".join([",".join(i) for i in zip(neighbourhoodName, reason, timeBegin, conclusions)])
  152. mess +=",是否已解决您的问题?"
  153. elif tools in ["fee_info", "fee_user_info"]:
  154. mess = "您账户截止"
  155. statisticsTime = [content.get("statisticsTime", '') for content in contents]
  156. waterFees = [round(float(content.get("waterFees", 0)), 2) for content in contents]
  157. meterAmount = [round(float(content.get("meterAmount", 0)), 2) for content in contents]
  158. mess = mess + statisticsTime[0] + "您的抄表表数为"+str(meterAmount[0]) +"欠费金额为" + str(waterFees[0])+ "元。如需详细查询缴费和水量情况可以登陆佳木斯供水公众号,如需人工查询请拨打824/--/777/--/6,还有什么可以帮你?."
  159. elif tools in ["user_info", "user_phone_info"]:
  160. neighbour, cardNo = [content.get("neighbourhoodName") for content in contents], [content.get("userNo") for content in contents]
  161. nums = len(neighbour)
  162. mess = f"根据您的手机号查询到{nums}个小区," + ";".join(map(lambda x: ",".join(x), zip(neighbour, ["户号是"]* nums, cardNo)))+ "。解决轻按1, 未解决请安2."
  163. elif tools in ["meter_owner_phone", "meter_owner_neighbour"]:
  164. loc_phone = [[content['neighbourhoodName'], content['meterReaderPhone']] for content in contents]
  165. mess = f"您查询的小区{loc_phone[0][0]},抄表员电话是{loc_phone[0][1]};抄表员电话是{loc_phone[0][1]}, 重听请说再说一次,是否已解决您的问题?"
  166. else:
  167. mess = ''
  168. return mess
  169. pattern = r'DTMF(.*?)DTMF'
  170. matches = re.findall(pattern, asr, re.DOTALL)
  171. if matches:
  172. asr = re.sub("[()]", "", matches[-1])
  173. else:
  174. asr = asr.split("###")[-1]
  175. asr = asr.strip(r""""$%&'()*+,,-./:;<=>?@[\]^_`{|}~。??!""")
  176. if tools in ["water_loc_info", "fee_user_info", "user_phone_info", "meter_owner_neighbour"] and len(asr)==0:
  177. return [{"title": "NO", "isFaq": False, "faqContent": '', "asr": asr, "businessContent": ''}]
  178. # parse water_loc_info
  179. if tools in ["water_loc_info", "meter_owner_neighbour", "water_info", "meter_owner_phone"]:
  180. asr = norm_community(asr)
  181. if tools in ["water_info", "meter_owner_phone"]:
  182. newtools = "water_loc_info" if tools == "water_info" else "meter_owner_neighbour"
  183. param = json.dumps(dict(nodeId=code,
  184. userId=uid,
  185. sessionId=session_id,
  186. asrText=asr,
  187. method=newtools
  188. ), ensure_ascii=False)
  189. try:
  190. # 192.168.40.21
  191. res = requests.post(f"http://{SERVE_HOST}:8001/bigModel/queryBusinessInfo",
  192. param.encode("UTF-8"),
  193. headers={'Content-Type': 'application/json;charset=utf-8'},
  194. timeout=30)
  195. resp = json.loads(res.text)
  196. logger.info(f"bussiness:{resp}, tools:{tools}, session:{session_id}")
  197. if resp['code'] == "0":
  198. content = resp['data'].get("contents")
  199. title = "NO" if content is None or len(content) == 0 else "YES"
  200. businessContent = getContent(content, tools) if title == "YES" else ''
  201. opt = [
  202. {"title": title, "isFaq": False, "faqContent": '', "asr": asr, "businessContent": businessContent}]
  203. logger.info(f"code:{code},uid:{uid}, tools:{tools},asr:{asr}, opt:{opt}")
  204. return opt
  205. except Exception as e:
  206. logger.info(f"bussion service服务异常:session:{session_id}, tools:{tools},uid:{uid}:{e}")
  207. param = json.dumps(dict(nodeId=code,
  208. userId=uid,
  209. sessionId=session_id,
  210. asrText=asr,
  211. method=tools
  212. ), ensure_ascii=False)
  213. try:
  214. # 192.168.40.21
  215. res = requests.post(f"http://{SERVE_HOST}:8001/bigModel/queryBusinessInfo",
  216. param.encode("UTF-8"),
  217. headers={'Content-Type': 'application/json;charset=utf-8'},
  218. timeout=30)
  219. resp = json.loads(res.text)
  220. logger.info(f"bussiness:{resp}, tools:{tools}, session:{session_id}")
  221. if resp['code'] == "0":
  222. content = resp['data'].get("contents")
  223. title = "NO" if content is None or len(content)==0 else "YES"
  224. businessContent = getContent(content, tools) if title == "YES" else ''
  225. opt = [{"title": title, "isFaq": False, "faqContent": '', "asr": asr, "businessContent": businessContent}]
  226. logger.info(f"code:{code},uid:{uid}, tools:{tools},asr:{asr}, opt:{opt}")
  227. return opt
  228. else:
  229. return [{"title": "NO", "isFaq": False, "faqContent": '', "asr": asr, "businessContent": ''}]
  230. except Exception as e:
  231. logger.info(f"bussion service服务异常:session:{session_id}, tools:{tools},uid:{ uid}:{e}")
  232. return [{"title": "NO", "isFaq": False, "faqContent": '', "asr": asr, "businessContent":''}]
  233. @timetic
  234. def aibot_service(ip ="192.168.100.159",port="40072", nodeId="start", userId='no', sessionId='1', taskId='10001', asrText='是', ext='', recordId=''):
  235. param = json.dumps(dict(nodeId=nodeId,
  236. userId=userId,
  237. sessionId=sessionId,
  238. taskId=taskId,
  239. asrText=asrText,
  240. ext=ext,
  241. recordId=recordId
  242. ), ensure_ascii=False)
  243. try:
  244. res = requests.post(f"http://{ip}:{port}/botservice",
  245. param.encode("UTF-8"),
  246. headers={'Content-Type': 'application/json;charset=utf-8'},
  247. timeout=30)
  248. resp = json.loads(res.text)
  249. if resp['code'] == 0:
  250. content = resp['data']
  251. logger.info(f"aibot: {resp}")
  252. return resp
  253. except Exception as e:
  254. logger.error(f"Ai bot服务异常:{nodeId}, {taskId},{ userId}:{e}")
  255. return
  256. if __name__ == "__main__":
  257. text="欢迎致电“佳木斯龙江环保供水服务热线”。我们最新推出智能语音服务,说话就能查询业务, 抢先体验请按1, 传统服务请按2"
  258. print(voice_service(text))
  259. #intent_service("1", "没听清", "2200", "1", "10", "1")
  260. #aibot_service()