| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012 |
- from dashscope import Application
- import dashscope
- from openai import OpenAI
- import os
- import piper
- import wave
- from http import HTTPStatus
- from dashscope.audio.asr import Recognition
- from funasr import AutoModel
- from dashscope.audio.tts_v2 import *
- from dashscope.audio.asr import *
- from ament_index_python.packages import get_package_share_directory
- from dify_client2 import CompletionClient, ChatClient
- from promot import get_prompt, get_large_model_config, get_model_paths, get_system_config
- import yaml
- import base64
- import requests
- import json
- import netifaces
- from urllib.request import urlopen
- from urllib.request import Request
- from urllib.error import URLError
- from urllib.parse import urlencode
- from urllib.parse import quote_plus
- import websocket
- import datetime
- import hashlib
- import base64
- import hmac
- from urllib.parse import urlencode
- import time
- import ssl
- from wsgiref.handlers import format_date_time
- from datetime import datetime
- from time import mktime
- import _thread as thread
- from subprocess import Popen
- import functools
- def measure_execution_time(func):
- """
- 装饰器:测量函数执行时间并使用 ROS 日志打印结果
- """
- @functools.wraps(func)
- def wrapper(self, *args, **kwargs):
- start_time = time.time()
- result = func(self, *args, **kwargs)
- end_time = time.time()
- execution_time = end_time - start_time
-
- # 使用 ROS 日志系统记录执行时间
- if hasattr(self, 'get_logger'):
- self.get_logger().info(f"[性能统计] {func.__name__} 函数执行时间: {execution_time:.4f} 秒")
- else:
- print(f"[性能统计] {func.__name__} 函数执行时间: {execution_time:.4f} 秒")
- return result
- return wrapper
- xufei = ""
- Ws_Param = ""
- STATUS_FIRST_FRAME = 0 # 第一帧的标识
- STATUS_CONTINUE_FRAME = 1 # 中间帧标识
- STATUS_LAST_FRAME = 2 # 最后一帧的标识
- record_speech_file = os.path.join(
- get_package_share_directory("largemodel"), "resources_file", "user_speech.wav"
- )
- class Ws_Param(object):
- # 初始化
- def __init__(self, APPID, APIKey, APISecret, AudioFile):
- self.APPID = APPID
- self.APIKey = APIKey
- self.APISecret = APISecret
- self.AudioFile = AudioFile
- # 公共参数(common)
- self.CommonArgs = {"app_id": self.APPID}
- # 业务参数(business),更多个性化参数可在官网查看
- self.BusinessArgs = {
- "domain": "iat",
- "language": "en_us",
- "accent": "mandarin",
- "vinfo": 1,
- "vad_eos": 10000,
- }
- # 生成url
- def create_url(self):
- url = "wss://ws-api.xfyun.cn/v2/iat"
- # 生成RFC1123格式的时间戳
- now = datetime.now()
- date = format_date_time(mktime(now.timetuple()))
- # 拼接字符串
- signature_origin = "host: " + "ws-api.xfyun.cn" + "\n"
- signature_origin += "date: " + date + "\n"
- signature_origin += "GET " + "/v2/iat " + "HTTP/1.1"
- # 进行hmac-sha256进行加密
- signature_sha = hmac.new(
- self.APISecret.encode("utf-8"),
- signature_origin.encode("utf-8"),
- digestmod=hashlib.sha256,
- ).digest()
- signature_sha = base64.b64encode(signature_sha).decode(encoding="utf-8")
- authorization_origin = (
- 'api_key="%s", algorithm="%s", headers="%s", signature="%s"'
- % (self.APIKey, "hmac-sha256", "host date request-line", signature_sha)
- )
- authorization = base64.b64encode(authorization_origin.encode("utf-8")).decode(
- encoding="utf-8"
- )
- # 将请求的鉴权参数组合为字典
- v = {"authorization": authorization, "date": date, "host": "ws-api.xfyun.cn"}
- # 拼接鉴权参数,生成url
- url = url + "?" + urlencode(v)
- return url
- # 收到websocket消息的处理
- def on_message(ws, message):
- try:
- code = json.loads(message)["code"]
- sid = json.loads(message)["sid"]
- if code != 0:
- errMsg = json.loads(message)["message"]
- # print("sid:%s call error:%s code is:%s" % (sid, errMsg, code))
- else:
- data = json.loads(message)["data"]["result"]["ws"]
- result = ""
- for i in data:
- for w in i["cw"]:
- result += w["w"]
- global xufei
- xufei += result
- except Exception as e:
- print("receive msg,but parse exception:", e)
- # 收到websocket错误的处理
- def on_error(ws, error):
- print("### error:", error)
- # 收到websocket关闭的处理
- def on_close(ws, a, b):
- # print("###speak iat closed ###")
- return
- # 收到websocket连接建立的处理
- def on_open(ws):
- def run(*args):
- frameSize = 8000 # 每一帧的音频大小
- intervel = 0.04 # 发送音频间隔(单位:s)
- status = (
- STATUS_FIRST_FRAME # 音频的状态信息,标识音频是第一帧,还是中间帧、最后一帧
- )
- with open(wsParam.AudioFile, "rb") as fp:
- while True:
- buf = fp.read(frameSize)
- # 文件结束
- if not buf:
- status = STATUS_LAST_FRAME
- # 第一帧处理
- # 发送第一帧音频,带business 参数
- # appid 必须带上,只需第一帧发送
- if status == STATUS_FIRST_FRAME:
- d = {
- "common": wsParam.CommonArgs,
- "business": wsParam.BusinessArgs,
- "data": {
- "status": 0,
- "format": "audio/L16;rate=16000",
- "audio": str(base64.b64encode(buf), "utf-8"),
- "encoding": "raw",
- },
- }
- d = json.dumps(d)
- ws.send(d)
- status = STATUS_CONTINUE_FRAME
- # 中间帧处理
- elif status == STATUS_CONTINUE_FRAME:
- d = {
- "data": {
- "status": 1,
- "format": "audio/L16;rate=16000",
- "audio": str(base64.b64encode(buf), "utf-8"),
- "encoding": "raw",
- }
- }
- ws.send(json.dumps(d))
- # 最后一帧处理
- elif status == STATUS_LAST_FRAME:
- d = {
- "data": {
- "status": 2,
- "format": "audio/L16;rate=16000",
- "audio": str(base64.b64encode(buf), "utf-8"),
- "encoding": "raw",
- }
- }
- ws.send(json.dumps(d))
- time.sleep(1)
- break
- # 模拟音频采样间隔
- time.sleep(intervel)
- ws.close()
- thread.start_new_thread(run, ())
- wsParam = ""
- XUNFEI_TTS_FILE = os.path.join(
- get_package_share_directory("largemodel"), "resources_file", "XUNFEI_TTS.mp3"
- )
- class Ws_Param_1(object):
- # 初始化 initialization
- def __init__(self, APPID, APIKey, APISecret, Text):
- self.APPID = APPID
- self.APIKey = APIKey
- self.APISecret = APISecret
- self.Text = Text
- # 公共参数(common)
- self.CommonArgs = {"app_id": self.APPID}
- # 业务参数(business),更多个性化参数可在官网查看
- self.BusinessArgs = {
- "aue": "lame",
- "sfl": 1,
- "auf": "audio/L16;rate=16000",
- "vcn": "x4_xiaoyan",
- "tte": "utf8",
- "speed": 50,
- "pitch": 50,
- }
- self.Data = {
- "status": 2,
- "text": str(base64.b64encode(self.Text.encode("utf-8")), "UTF8"),
- }
- # 使用小语种须使用以下方式,此处的unicode指的是 utf16小端的编码方式,即"UTF-16LE"”
- # self.Data = {"status": 2, "text": str(base64.b64encode(self.Text.encode('utf-16')), "UTF8")}
- # 生成url Generate URL
- def create_url_1(self):
- url = "wss://tts-api.xfyun.cn/v2/tts"
- # 生成RFC1123格式的时间戳 Generate timestamp in RFC1123 format
- now = datetime.now()
- date = format_date_time(mktime(now.timetuple()))
- # 拼接字符串 Splicing strings
- signature_origin = "host: " + "ws-api.xfyun.cn" + "\n"
- signature_origin += "date: " + date + "\n"
- signature_origin += "GET " + "/v2/tts " + "HTTP/1.1"
- # 进行hmac-sha256进行加密 Encrypt hmac-sha256
- signature_sha = hmac.new(
- self.APISecret.encode("utf-8"),
- signature_origin.encode("utf-8"),
- digestmod=hashlib.sha256,
- ).digest()
- signature_sha = base64.b64encode(signature_sha).decode(encoding="utf-8")
- authorization_origin = (
- 'api_key="%s", algorithm="%s", headers="%s", signature="%s"'
- % (self.APIKey, "hmac-sha256", "host date request-line", signature_sha)
- )
- authorization = base64.b64encode(authorization_origin.encode("utf-8")).decode(
- encoding="utf-8"
- )
- # 将请求的鉴权参数组合为字典 Combine the requested authentication parameters into a dictionary
- v = {"authorization": authorization, "date": date, "host": "ws-api.xfyun.cn"}
- # 拼接鉴权参数,生成url Splicing authentication parameters and generating URLs
- url = url + "?" + urlencode(v)
- return url
- def on_message_1(ws, message):
- try:
- message = json.loads(message)
- code = message["code"]
- sid = message["sid"]
- audio = message["data"]["audio"]
- audio = base64.b64decode(audio)
- status = message["data"]["status"]
- # print(message)
- if status == 2:
- # print("ws is closed")
- ws.close()
- if code != 0:
- errMsg = message["message"]
- print("sid:%s call error:%s code is:%s" % (sid, errMsg, code))
- else:
- with open(XUNFEI_TTS_FILE, "ab") as f:
- f.write(audio)
- except Exception as e:
- print("receive msg,but parse exception:", e)
- # 收到websocket错误的处理 Handling of websocket errors received
- def on_error_1(ws, error):
- print("### error:", error)
- def on_close_1(ws, close_status_code, close_msg):
- return
- # 收到websocket连接建立的处理 Received processing for establishing websocket connection
- def on_open_1(ws):
- def run(*args):
- d = {
- "common": wsParam.CommonArgs,
- "business": wsParam.BusinessArgs,
- "data": wsParam.Data,
- }
- d = json.dumps(d)
- # print("------>开始发送文本数据")
- ws.send(d)
- if os.path.exists(XUNFEI_TTS_FILE):
- os.remove(XUNFEI_TTS_FILE)
- thread.start_new_thread(run, ())
- class model_interface:
- def __init__(self, logger=None):
- self.logger = logger # 可选的 logger 用于打印调试信息
- self.init_config_param()
- dashscope.api_key = self.tongyi_api_key
- def init_config_param(self):
- self.pkg_path = get_package_share_directory("largemodel")
- config_param_file = os.path.join(
- self.pkg_path, "config", "large_model_interface.yaml"
- )
- with open(config_param_file, "r") as file:
- config_param = yaml.safe_load(file)
- self.tongyi_api_key = config_param.get("tongyi_api_key")
- self.tongyi_base_url = config_param.get("tongyi_base_url")
- self.tongyi_app_id = config_param.get("tongyi_app_id")
- self.oline_asr_model = config_param.get("oline_asr_model")
- self.zh_tts_model = config_param.get("zh_tts_model")
- self.zh_tts_json = config_param.get("zh_tts_json")
- self.en_tts_model = config_param.get("en_tts_model")
- self.en_tts_json = config_param.get("en_tts_json")
- self.multimodel = config_param.get("multimodel")
- self.ANYTHINGLLM_BASE_URL = config_param.get("ANYTHINGLLM_BASE_URL")
- self.API_KEY = config_param.get("API_KEY")
- self.WORKSPACE_SLUG = config_param.get("WORKSPACE_SLUG")
- self.oline_asr_sample_rate = config_param.get("oline_asr_sample_rate")
- self.oline_tts_model = config_param.get("oline_tts_model")
- self.voice_tone = config_param.get("voice_tone")
- self.local_asr_model = config_param.get("local_asr_model")
- self.tts_supplier = config_param.get("tts_supplier")
- self.baidu_API_KEY = config_param.get("baidu_API_KEY")
- self.baidu_SECRET_KEY = config_param.get("baidu_SECRET_KEY")
- self.CUID = config_param.get("CUID")
- self.PER = config_param.get("PER")
- self.SPD = config_param.get("SPD")
- self.PIT = config_param.get("PIT")
- self.VOL = config_param.get("VOL")
- self.decision_AI_api_key = config_param.get("decision_AI_api_key")
- self.execution_AI_api_key = config_param.get("execution_AI_api_key")
- self.network_adapter = config_param.get("network_adapter")
- self.decision_id = None # dify决策层id
- self.execution_id = None # dify执行层id
- self.international_mode = False # 是否启用国际模式,默认为国内模式
- # 从缓存更新配置(如果缓存中有配置的话)
- self.update_config_from_cache()
- def update_config_from_cache(self):
- """从缓存更新配置(从 config_node 订阅获取)"""
- # 获取大模型配置缓存
- config = get_large_model_config()
- if config:
- if config.get('tongyi_api_key'):
- self.tongyi_api_key = config.get('tongyi_api_key')
- dashscope.api_key = self.tongyi_api_key
- if config.get('tongyi_base_url'):
- self.tongyi_base_url = config.get('tongyi_base_url')
- if config.get('tongyi_app_id'):
- self.tongyi_app_id = config.get('tongyi_app_id')
- if config.get('multimodel'):
- self.multimodel = config.get('multimodel')
- if config.get('oline_asr_model'):
- self.oline_asr_model = config.get('oline_asr_model')
- if config.get('oline_asr_sample_rate'):
- self.oline_asr_sample_rate = config.get('oline_asr_sample_rate')
- if config.get('oline_tts_model'):
- self.oline_tts_model = config.get('oline_tts_model')
- if config.get('voice_tone'):
- self.voice_tone = config.get('voice_tone')
- if config.get('tts_supplier'):
- self.tts_supplier = config.get('tts_supplier')
- if config.get('baidu_API_KEY'):
- self.baidu_API_KEY = config.get('baidu_API_KEY')
- if config.get('baidu_SECRET_KEY'):
- self.baidu_SECRET_KEY = config.get('baidu_SECRET_KEY')
- if config.get('CUID'):
- self.CUID = config.get('CUID')
- if config.get('PER'):
- self.PER = config.get('PER')
- if config.get('SPD'):
- self.SPD = config.get('SPD')
- if config.get('PIT'):
- self.PIT = config.get('PIT')
- if config.get('VOL'):
- self.VOL = config.get('VOL')
- if config.get('decision_AI_api_key'):
- self.decision_AI_api_key = config.get('decision_AI_api_key')
- if config.get('execution_AI_api_key'):
- self.execution_AI_api_key = config.get('execution_AI_api_key')
- if config.get('network_adapter'):
- self.network_adapter = config.get('network_adapter')
- # 获取模型路径缓存
- paths = get_model_paths()
- if paths:
- if paths.get('zh_tts_model'):
- self.zh_tts_model = paths.get('zh_tts_model')
- if paths.get('zh_tts_json'):
- self.zh_tts_json = paths.get('zh_tts_json')
- if paths.get('en_tts_model'):
- self.en_tts_model = paths.get('en_tts_model')
- if paths.get('en_tts_json'):
- self.en_tts_json = paths.get('en_tts_json')
- if paths.get('local_asr_model'):
- self.local_asr_model = paths.get('local_asr_model')
- # 获取系统配置缓存
- system = get_system_config()
- if system:
- if system.get('tongyi_base_url'):
- self.tongyi_base_url = system.get('tongyi_base_url')
- def update_config(self, config):
- """
- 动态更新配置(供外部调用)
- 当 config_node 发布新配置时会调用此方法
- """
- if config.get('tongyi_api_key'):
- self.tongyi_api_key = config.get('tongyi_api_key')
- dashscope.api_key = self.tongyi_api_key
- if config.get('tongyi_base_url'):
- self.tongyi_base_url = config.get('tongyi_base_url')
- if config.get('tongyi_app_id'):
- self.tongyi_app_id = config.get('tongyi_app_id')
- if config.get('multimodel'):
- self.multimodel = config.get('multimodel')
- if config.get('oline_asr_model'):
- self.oline_asr_model = config.get('oline_asr_model')
- if config.get('oline_tts_model'):
- self.oline_tts_model = config.get('oline_tts_model')
- if config.get('voice_tone'):
- self.voice_tone = config.get('voice_tone')
- if config.get('tts_supplier'):
- self.tts_supplier = config.get('tts_supplier')
- if config.get('baidu_API_KEY'):
- self.baidu_API_KEY = config.get('baidu_API_KEY')
- if config.get('baidu_SECRET_KEY'):
- self.baidu_SECRET_KEY = config.get('baidu_SECRET_KEY')
- if config.get('CUID'):
- self.CUID = config.get('CUID')
- if config.get('PER'):
- self.PER = config.get('PER')
- if config.get('SPD'):
- self.SPD = config.get('SPD')
- if config.get('PIT'):
- self.PIT = config.get('PIT')
- if config.get('VOL'):
- self.VOL = config.get('VOL')
- if config.get('decision_AI_api_key'):
- self.decision_AI_api_key = config.get('decision_AI_api_key')
- if config.get('execution_AI_api_key'):
- self.execution_AI_api_key = config.get('execution_AI_api_key')
- if config.get('network_adapter'):
- self.network_adapter = config.get('network_adapter')
- def init_dify_client(self):
- self.international_mode = True
- self.user = "yahboom"
- self.decision_client = ChatClient(
- self.decision_AI_api_key, base_url="http://localhost/v1"
- )
- self.execution_client = ChatClient(
- self.execution_AI_api_key, base_url="http://localhost/v1"
- )
- if self.decision_client is not None:
- return True
- else:
- return False
- def init_Multimodal(self):
- self.multimodal_client = OpenAI(
- api_key=self.tongyi_api_key, base_url=self.tongyi_base_url
- )
- self.init_Multimodal_history(get_prompt())
- def init_Multimodal_history(self, system_prompt):
- self.Multimodalmessages = []
- self.Multimodalmessages.append(
- {"role": "user", "content": [{"type": "text", "text": system_prompt}]}
- )
- self.Multimodalmessages.append(
- {
- "role": "assistant",
- "content": [
- {
- "type": "text",
- "text": "我已经记住所有规则、动作函数和案例了,请开始您的指令吧",
- }
- ],
- }
- )
- def init_oline_asr(self, language):
- self.language = language
- return self.oline_asr_model
- def multimodalinfer(self, prompt, image_path=None):
- """version: 2.0
- 通用多模态接口,适用于通义千问平台的多模态模型
- """
- if image_path:
- image_data = self.encode_image(image_path)
- conversation_entry = {
- "role": "user",
- "content": [
- {
- "type": "image_url",
- "image_url": {"url": f"data:image/png;base64,{image_data}"},
- },
- {"type": "text", "text": "机器人反馈:执行seewhat()完成"},
- ],
- }
- else:
- conversation_entry = {
- "role": "user",
- "content": [{"type": "text", "text": prompt}],
- }
- self.Multimodalmessages.append(conversation_entry)
- completion = self.multimodal_client.chat.completions.create(
- model=self.multimodel, messages=self.Multimodalmessages
- )
- self.Multimodalmessages.append(
- {
- "role": "assistant",
- "content": [
- {"type": "text", "text": completion.choices[0].message.content}
- ],
- }
- )
- return completion.choices[0].message.content
- def TaskDecision(self, input: str) -> list: # 任务决策规划
- """
- 决策层模型接口
- input: 用户输入
- """
- if self.international_mode: # 国际版,调用本地dify应用API
- try:
- # 打印发送给 Dify 决策层的请求信息
- if self.logger:
- self.logger.info(f"[决策层-Dify] 发送请求: query={input}")
- chat_response = self.decision_client.create_chat_message(
- inputs={},
- query=input,
- user=self.user,
- response_mode="blocking",
- )
- chat_response.raise_for_status()
- result = chat_response.json()
- # 打印 Dify 返回结果
- if self.logger:
- self.logger.info(f"[决策层-Dify] 返回结果: {result}")
- if result.get("answer") is not None:
- output = [True, result.get("answer"), result.get("conversation_id")]
- else:
- output = [
- False,
- "The model service is abnormal. Check the large model account or configuration options",
- None,
- ]
- except Exception as e:
- if self.logger:
- self.logger.error(f"[决策层-Dify] 调用异常: {e}")
- output = [
- False,
- "The model service is abnormal. Check the large model account or configuration options",
- None,
- ]
- else: # 国内版,调用百炼大模型平台应用API
- try:
- # 打印发送给百炼的请求信息
- if self.logger:
- self.logger.info(f"[决策层-百炼] 发送请求:")
- self.logger.info(f" - api_key: {self.tongyi_api_key[:10]}...")
- self.logger.info(f" - app_id: {self.tongyi_app_id}")
- self.logger.info(f" - prompt: {input}")
- response = Application.call(
- api_key=self.tongyi_api_key, app_id=self.tongyi_app_id, prompt=input
- )
-
- # 打印百炼返回结果
- if self.logger:
- self.logger.info(f"[决策层-百炼] 返回结果: {response}")
- if hasattr(response, 'output') and response.output:
- self.logger.info(f"[决策层-百炼] output.text: {response.output.text}")
- if hasattr(response, 'usage'):
- self.logger.info(f"[决策层-百炼] usage: {response.usage}")
- if hasattr(response, 'request_id'):
- self.logger.info(f"[决策层-百炼] request_id: {response.request_id}")
- if response.output.text is not None:
- output = [True, response.output.text, None]
- else:
- output = [
- False,
- "The model service is abnormal. Check the large model account or configuration options",
- None,
- ]
- except Exception as e:
- if self.logger:
- self.logger.error(f"[决策层-百炼] 调用异常: {e}")
- output = [
- False,
- "The model service is abnormal. Check the large model account or configuration options",
- None,
- ]
- return output
- def TaskExecution(
- self,
- input: str,
- map_mapping: str,
- language: str,
- image_path=None,
- conversation_id=None,
- ) -> list: # 执行层模型接口
- """
- 执行层模型接口,适用于dify
- input: 用户输入
- map_mapping: 地图映射
- language: 回复语言
- image_path: 图片路径
- conversation_id: 会话id
- return:list
- """
- if image_path is not None:
- with open(image_path, "rb") as file: # 上传图片
- files = {"file": ("robot-perspective-picture", file, "image/png")}
- response = self.execution_client.file_upload("yahboom", files)
- file_id = response.json().get("id")
- image = [
- {
- "type": "image",
- "transfer_method": "local_file",
- "upload_file_id": file_id,
- }
- ]
- try:
- chat_response = self.execution_client.create_chat_message(
- inputs={"map_mapping": map_mapping, "language": language},
- query=input,
- user=self.user,
- response_mode="blocking",
- conversation_id=conversation_id,
- files=image,
- )
- chat_response.raise_for_status()
- result = chat_response.json()
- if result.get("answer") is not None:
- output = [True, result.get("answer"), result.get("conversation_id")]
- else:
- output = [
- False,
- "The model service is abnormal. Check the large model account or configuration options",
- None,
- ]
- except Exception as e:
- output = [
- False,
- "The model service is abnormal. Check the large model account or configuration options",
- None,
- ]
- else:
- try:
- chat_response = self.execution_client.create_chat_message(
- inputs={"map_mapping": map_mapping, "language": language},
- query=input,
- user=self.user,
- response_mode="blocking",
- conversation_id=conversation_id,
- )
- chat_response.raise_for_status()
- result = chat_response.json()
- if result.get("answer") is not None:
- output = [True, result.get("answer"), result.get("conversation_id")]
- else:
- output = [
- False,
- "The model service is abnormal. Check the large model account or configuration options",
- None,
- ]
- except Exception as e:
- output = [
- False,
- "The model service is abnormal. Check the large model account or configuration options",
- None,
- ]
- return output
- def oline_asr(self, input_file):
- """
- 语音识别接口,兼容通义千问平台paraformer、gummy系列模型
- """
- if self.oline_asr_model in [
- "paraformer-realtime-v2",
- "paraformer-realtime-v1",
- "paraformer-realtime-8k-v2",
- "paraformer-realtime-8k-v1",
- ]:
- output = self.paraformer_asr_inferce(input_file)
- return output
- elif self.oline_asr_model in ["gummy-realtime-v1", "gummy-chat-v1"]:
- output = self.gummy_asr_inferce(input_file)
- return output
- def paraformer_asr_inferce(self, input_file):
- """
- 通义千问平台paraformer模型接口
- """
- recognition = Recognition(
- model=self.oline_asr_model,
- format="wav",
- sample_rate=self.oline_asr_sample_rate,
- callback=None,
- )
- result = recognition.call(input_file)
- if result.status_code == HTTPStatus.OK:
- sentences = result.get_sentence()
- if sentences and isinstance(sentences, list):
- return ["ok", sentences[0].get("text", "")]
- else:
- return [
- "error",
- "ASR Error: The large model returns an empty result. Please check the account balance or parameter configuration",
- ]
- else:
- return ["error", "ASR Error:" + result.message]
- def gummy_asr_inferce(self, input_file):
- """
- 通义千问平台gummy模型接口
- """
- translator = TranslationRecognizerRealtime(
- model=self.oline_asr_model,
- format="wav",
- sample_rate=self.oline_asr_sample_rate,
- translation_target_languages=[self.language],
- translation_enabled=True,
- callback=None,
- )
- result = translator.call(input_file)
- if not result.error_message:
- output = ""
- for transcription_result in result.transcription_result_list:
- output += transcription_result.text
- return ["ok", output]
- else:
- return ["error", result.error_message]
- def init_local_asr_model(self):
- self.model_senceVoice = AutoModel(
- model=self.local_asr_model, trust_remote_code=False, disable_update=True
- )
- def tts_model_init(self, model_type="oline", language="zh"):
- if model_type == "oline":
- if self.tts_supplier == "baidu":
- self.token = self.fetch_token()
- self.model_type = "oline"
- elif model_type == "local":
- self.model_type = "local"
- # 初始化Piper语音合成模型
- if language == "zh":
- tts_model = self.zh_tts_model
- tts_json = self.zh_tts_json
- elif language == "en":
- tts_model = self.en_tts_model
- tts_json = self.en_tts_json
- self.synthesizer = piper.PiperVoice.load(
- tts_model, config_path=tts_json, use_cuda=False
- )
- elif model_type == "XUNFEI_FOR_INTERNATIONAL":
- self.model_type = "XUNFEI_FOR_INTERNATIONAL"
- def SenseVoiceSmall_ASR(self, input_file, language="zn"):
- res = self.model_senceVoice.generate(
- input=input_file,
- cache={},
- language=language, # "zn", "en", "yue", "ja", "ko", "nospeech"
- use_itn=False,
- )
- prompt = res[0]["text"].split(">")[-1]
- return ["ok", prompt]
- @measure_execution_time
- def voice_synthesis(self, text, path):
- """
- 语音合成
- text:合成的文本
- path:保存路径
- 返回1:失败 返回0:成功
- """
- if self.model_type == "oline":
- if self.tts_supplier == "baidu":
- """
- 百度智能云平台语音合成模型接口
- """
- # print('baiduhecheng')
- TTS_URL = "http://tsn.baidu.com/text2audio"
- tex = quote_plus(text)
- params = {
- "tok": self.token,
- "tex": tex,
- "per": self.PER,
- "spd": self.SPD,
- "pit": self.PIT,
- "vol": self.VOL,
- "aue": 3,
- "cuid": self.CUID,
- "lan": "zh",
- "ctp": 1,
- } # lan ctp 固定参数
- data = urlencode(params)
- req = Request(TTS_URL, data.encode("utf-8"))
- # has_error = False
- try:
- f = urlopen(req)
- result_str = f.read()
- # headers = dict((name.lower(), value) for name, value in f.headers.items())
- except URLError as err:
- print("asr http response http code : " + str(err.code))
- result_str = err.read()
- # has_error = True
- return 1
- with open(path, "wb") as of:
- of.write(result_str)
- return 0
- elif self.tts_supplier == "aliyun":
- """
- 阿里通义语音合成接口
- """
- self.synthesizer = SpeechSynthesizer(
- model=self.oline_tts_model, voice=self.voice_tone, volume=100
- )
- audio = self.synthesizer.call(text)
- if audio is None:
- return 1
- else:
- with open(path, "wb") as f:
- f.write(audio)
- return 0
- elif self.model_type == "local":
- with wave.open(path, "wb") as wav_file:
- wav_file.setnchannels(1) # 单声道
- wav_file.setsampwidth(2) # 16位采样
- wav_file.setframerate(self.synthesizer.config.sample_rate) # 设置采样率
- # 进行文本转语音
- self.synthesizer.synthesize(text, wav_file)
- elif self.model_type == "XUNFEI_FOR_INTERNATIONAL":
- Xinghou_speaktts(text)
- def openrouter_model_infer(self, prompt, image_path=None):
- """
- 使用anythingllm连接openrouter平台大模型:已弃用
- Connect the large model of the openrouter platform using anythingllm
- """
- if image_path:
- image_data = self.encode_image(image_path)
- data = {
- "message": self.system_text["text1"],
- "mode": "chat",
- "attachments": [
- {
- "name": "image.png",
- "mime": "image/png",
- "contentString": f"data:image/png;base64,{image_data}",
- }
- ],
- "reset": False,
- }
- else:
- data = {"message": prompt, "mode": "chat"}
- # --- 发送 POST 请求 ---
- response = requests.post(self.chat_endpoint, headers=self.headers, json=data)
- response.raise_for_status() # 如果请求失败 (状态码 >= 400),则抛出异常
- # --- 处理响应 ---
- result = response.json()
- return result["textResponse"]
- def fetch_token(self):
- """
- 专用于百度语音合成的token生成方法,百度平台有专有的token生成工具
- """
- TOKEN_URL = "http://aip.baidubce.com/oauth/2.0/token"
- SCOPE = "audio_tts_post" # 有此scope表示有tts能力,没有请在网页里勾选
- params = {
- "grant_type": "client_credentials",
- "client_id": self.baidu_API_KEY,
- "client_secret": self.baidu_SECRET_KEY,
- }
- post_data = urlencode(params)
- post_data = post_data.encode("utf-8")
- req = Request(TOKEN_URL, post_data)
- try:
- f = urlopen(req, timeout=5)
- result_str = f.read()
- except URLError as err:
- print("token http response http code : " + str(err.code))
- result_str = err.read()
- result_str = result_str.decode()
- result = json.loads(result_str)
- if "access_token" in result.keys() and "scope" in result.keys():
- return result["access_token"]
- @staticmethod
- def encode_image(image_path):
- with open(image_path, "rb") as image_file:
- return base64.b64encode(image_file.read()).decode("utf-8")
- @staticmethod
- def get_ip(network_interface):
- addresses = netifaces.ifaddresses(network_interface)
- if netifaces.AF_INET in addresses:
- for info in addresses[netifaces.AF_INET]:
- if "addr" in info:
- return info["addr"]
- # 录完音,可以直接调用去识别 After recording the audio, it can be directly called for recognition
- def rec_wav_music_en():
- global xufei, wsParam
- xufei = ""
- # time1 = datetime.now()
- wsParam = Ws_Param(
- APPID="f12672f1",
- APISecret="NmUyYTRmNTM2MjE3OWJkMDczYzlhZDgz",
- APIKey="8c7b9858dc5e11e8490ce0d09879ad1e",
- AudioFile=record_speech_file,
- )
- websocket.enableTrace(False)
- wsUrl = wsParam.create_url()
- ws = websocket.WebSocketApp(
- wsUrl, on_message=on_message, on_error=on_error, on_close=on_close
- )
- ws.on_open = on_open
- ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE})
- return xufei
- def Xinghou_speaktts(context):
- global wsParam
- # 测试时候在此处正确填写相关信息即可运行 Fill in the relevant information correctly here during testing to run
- wsParam = Ws_Param_1(
- APPID="f12672f1",
- APISecret="NmUyYTRmNTM2MjE3OWJkMDczYzlhZDgz",
- APIKey="8c7b9858dc5e11e8490ce0d09879ad1e",
- Text=context,
- )
- websocket.enableTrace(False)
- wsUrl = wsParam.create_url_1()
- ws = websocket.WebSocketApp(
- wsUrl, on_message=on_message_1, on_error=on_error_1, on_close=on_close_1
- )
- ws.on_open = on_open_1
- ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE})
|