request_utils.py 13 KB

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