request_utils.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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. try:
  71. resp = requests.post(api_url, json.dumps(request_json), headers=header)
  72. rfile = f"{rid}.wav"
  73. path, file = f"{VOICE_DIR}/{rfile}", f"../voice/{rfile}"
  74. if "data" in resp.json():
  75. data = resp.json()["data"]
  76. file_to_save = open(file, "wb")
  77. file_to_save.write(base64.b64decode(data))
  78. if is_local:
  79. if os.path.exists(file):
  80. logger.info(f"voice local file ::session_id={rid}, res={file}")
  81. return path
  82. else:
  83. files = {'file': open(file, 'rb')}
  84. response = requests.post(DEFAULT_FILE_UPLOAD_URL, files=files)
  85. if response.ok:
  86. result = json.loads(response.text)
  87. url = result.get('data')
  88. if os.path.exists(file):
  89. os.system(f"rm -fr {file}")
  90. logger.info(f"voice upload_plot::session_id={rid}, res={url}")
  91. return url
  92. except Exception as e:
  93. logger.info(f"voice generate 错误{e}")
  94. @timetic
  95. def voice_service(content, local=False, silence_duration="125"):
  96. encode_b = content.encode("utf-8")
  97. key = base64.b64encode(encode_b)
  98. name = "voice_url"
  99. retry,num =3,1
  100. while num <= retry:
  101. try:
  102. url = r.hget(name, key)
  103. #url=''
  104. if url and os.path.exists(url):
  105. logger.info(f"获取voice url成功:{content}")
  106. return url
  107. else:
  108. url = get_voice(content, local, silence_duration)
  109. r.hset(name, key, url)
  110. r.expire(name, 3600 * 24*7)
  111. return url
  112. except Exception as e:
  113. logger.info(f"get voice url {num}缓存错误{e}")
  114. num +=1
  115. @timetic
  116. def intent_service(node_name, asr, bid, code, uid, sessionid):
  117. param = json.dumps(dict(nodeId=code,
  118. userId=uid,
  119. sessionId=sessionid,
  120. taskId=bid,
  121. query=asr,
  122. nodeName = node_name
  123. ), ensure_ascii=False)
  124. try:
  125. #ip= "10.0.0.24"
  126. res = requests.post(f"http://{SERVE_HOST}:50072/intention",
  127. param.encode("UTF-8"),
  128. headers={'Content-Type': 'application/json;charset=utf-8'},
  129. timeout=8)
  130. content = json.loads(res.text)
  131. logger.info(f"intent service:{content}")
  132. return [content]
  133. except Exception as e:
  134. logger.error(f"intent服务异常:query:{asr},uid:{uid},session:{sessionid}:{e}")
  135. return []
  136. @timetic
  137. def business_service(session_id, uid, code, tools, asr):
  138. def getContent(contents, tools):
  139. if tools in ["water_info", "water_loc_info"]:
  140. mess = '您查询的小区'
  141. neighbourhoodName = [item.get('neighbourhoodName') for item in contents]
  142. reason = ["因"+item.get('reason') for item in contents]
  143. timeBegin = ["于"+item.get('timeBegin') + "停水" for item in contents]
  144. timeEnd = [item.get('timeEnd') for item in contents]
  145. conclusions = [f"预计{time}恢复供水" if time is not None else "暂未确定恢复时间" for time in timeEnd]
  146. nums = len(neighbourhoodName)
  147. mess +=";".join([",".join(i) for i in zip(neighbourhoodName, reason, timeBegin, conclusions)])
  148. mess +=",是否已解决您的问题?"
  149. elif tools in ["fee_info", "fee_user_info"]:
  150. mess = "您账户截止"
  151. statisticsTime = [content.get("statisticsTime", '') for content in contents]
  152. waterFees = [round(float(content.get("waterFees", 0)), 2) for content in contents]
  153. meterAmount = [round(float(content.get("meterAmount", 0)), 2) for content in contents]
  154. mess = mess + statisticsTime[0] + "您的抄表表数为"+str(meterAmount[0]) +"欠费金额为" + str(waterFees[0])+ "元。如需详细查询缴费和水量情况可以登陆佳木斯供水公众号,如需人工查询请拨打824/--/777/--/6,还有什么可以帮你?."
  155. elif tools in ["user_info", "user_phone_info"]:
  156. neighbour, cardNo = [content.get("neighbourhoodName") for content in contents], [content.get("userNo") for content in contents]
  157. nums = len(neighbour)
  158. mess = f"根据您的手机号查询到{nums}个小区," + ";".join(map(lambda x: ",".join(x), zip(neighbour, ["户号是"]* nums, cardNo)))+ "。解决轻按1, 未解决请安2."
  159. elif tools in ["meter_owner_phone", "meter_owner_neighbour"]:
  160. loc_phone = [[content['neighbourhoodName'], content['meterReaderPhone']] for content in contents]
  161. mess = f"您查询的小区{loc_phone[0][0]},抄表员电话是{loc_phone[0][1]};抄表员电话是{loc_phone[0][1]}, 重听请说再说一次,是否已解决您的问题?"
  162. else:
  163. mess = ''
  164. return mess
  165. pattern = r'DTMF(.*?)DTMF'
  166. matches = re.findall(pattern, asr, re.DOTALL)
  167. if matches:
  168. asr = re.sub("[()]", "", matches[-1])
  169. else:
  170. asr = asr.split("###")[-1]
  171. asr = asr.strip(r""""$%&'()*+,,-./:;<=>?@[\]^_`{|}~。??!""")
  172. if tools in ["water_loc_info", "fee_user_info", "user_phone_info", "meter_owner_neighbour"] and len(asr)==0:
  173. return [{"title": "NO", "isFaq": False, "faqContent": '', "asr": asr, "businessContent": ''}]
  174. # parse water_loc_info
  175. if tools in ["water_loc_info", "meter_owner_neighbour", "water_info", "meter_owner_phone"]:
  176. asr = norm_community(asr)
  177. if tools in ["water_info", "meter_owner_phone"]:
  178. newtools = "water_loc_info" if tools == "water_info" else "meter_owner_neighbour"
  179. param = json.dumps(dict(nodeId=code,
  180. userId=uid,
  181. sessionId=session_id,
  182. asrText=asr,
  183. method=newtools
  184. ), ensure_ascii=False)
  185. try:
  186. # 192.168.40.21
  187. res = requests.post(f"http://{SERVE_HOST}:8001/bigModel/queryBusinessInfo",
  188. param.encode("UTF-8"),
  189. headers={'Content-Type': 'application/json;charset=utf-8'},
  190. timeout=30)
  191. resp = json.loads(res.text)
  192. logger.info(f"bussiness:{resp}, tools:{tools}, session:{session_id}")
  193. if resp['code'] == "0":
  194. content = resp['data'].get("contents")
  195. title = "NO" if content is None or len(content) == 0 else "YES"
  196. businessContent = getContent(content, tools) if title == "YES" else ''
  197. opt = [
  198. {"title": title, "isFaq": False, "faqContent": '', "asr": asr, "businessContent": businessContent}]
  199. logger.info(f"code:{code},uid:{uid}, tools:{tools},asr:{asr}, opt:{opt}")
  200. return opt
  201. except Exception as e:
  202. logger.info(f"bussion service服务异常:session:{session_id}, tools:{tools},uid:{uid}:{e}")
  203. param = json.dumps(dict(nodeId=code,
  204. userId=uid,
  205. sessionId=session_id,
  206. asrText=asr,
  207. method=tools
  208. ), ensure_ascii=False)
  209. try:
  210. # 192.168.40.21
  211. res = requests.post(f"http://{SERVE_HOST}:8001/bigModel/queryBusinessInfo",
  212. param.encode("UTF-8"),
  213. headers={'Content-Type': 'application/json;charset=utf-8'},
  214. timeout=30)
  215. resp = json.loads(res.text)
  216. logger.info(f"bussiness:{resp}, tools:{tools}, session:{session_id}")
  217. if resp['code'] == "0":
  218. content = resp['data'].get("contents")
  219. title = "NO" if content is None or len(content)==0 else "YES"
  220. businessContent = getContent(content, tools) if title == "YES" else ''
  221. opt = [{"title": title, "isFaq": False, "faqContent": '', "asr": asr, "businessContent": businessContent}]
  222. logger.info(f"code:{code},uid:{uid}, tools:{tools},asr:{asr}, opt:{opt}")
  223. return opt
  224. else:
  225. return [{"title": "NO", "isFaq": False, "faqContent": '', "asr": asr, "businessContent": ''}]
  226. except Exception as e:
  227. logger.info(f"bussion service服务异常:session:{session_id}, tools:{tools},uid:{ uid}:{e}")
  228. return [{"title": "NO", "isFaq": False, "faqContent": '', "asr": asr, "businessContent":''}]
  229. @timetic
  230. def aibot_service(ip ="192.168.100.159",port="40072", nodeId="start", userId='no', sessionId='1', taskId='10001', asrText='是', ext='', recordId=''):
  231. param = json.dumps(dict(nodeId=nodeId,
  232. userId=userId,
  233. sessionId=sessionId,
  234. taskId=taskId,
  235. asrText=asrText,
  236. ext=ext,
  237. recordId=recordId
  238. ), ensure_ascii=False)
  239. try:
  240. res = requests.post(f"http://{ip}:{port}/botservice",
  241. param.encode("UTF-8"),
  242. headers={'Content-Type': 'application/json;charset=utf-8'},
  243. timeout=30)
  244. resp = json.loads(res.text)
  245. if resp['code'] == 0:
  246. content = resp['data']
  247. logger.info(f"aibot: {resp}")
  248. return resp
  249. except Exception as e:
  250. logger.error(f"Ai bot服务异常:{nodeId}, {taskId},{ userId}:{e}")
  251. return
  252. if __name__ == "__main__":
  253. text="欢迎致电“佳木斯龙江环保供水服务热线”。我们最新推出智能语音服务,说话就能查询业务, 抢先体验请按1, 传统服务请按2"
  254. print(voice_service(text))
  255. #intent_service("1", "没听清", "2200", "1", "10", "1")
  256. #aibot_service()