mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 15:13:55 +08:00
* 跳过使用Open ai 接口时,DeepSeek-R1 模型的深度思考内容 (#54) * 跳过 DeepSeek-R1 模型的深度思考内容 * 跳过 DeepSeek-R1 模型的深度思考内容 * 新增LM Studio本地大模型API接口 * 优化代码,遇到Bad Case安全处理 * update:优化 --------- Co-authored-by: Sinyo <38577585+SinyoWong@users.noreply.github.com> Co-authored-by: hrz <1710360675@qq.com>
50 lines
1.9 KiB
Python
50 lines
1.9 KiB
Python
from config.logger import setup_logging
|
|
import openai
|
|
from core.providers.llm.base import LLMProviderBase
|
|
|
|
TAG = __name__
|
|
logger = setup_logging()
|
|
|
|
|
|
class LLMProvider(LLMProviderBase):
|
|
def __init__(self, config):
|
|
self.model_name = config.get("model_name")
|
|
self.api_key = config.get("api_key")
|
|
if 'base_url' in config:
|
|
self.base_url = config.get("base_url")
|
|
else:
|
|
self.base_url = config.get("url")
|
|
if "你" in self.api_key:
|
|
logger.bind(tag=TAG).error("你还没配置LLM的密钥,请在配置文件中配置密钥,否则无法正常工作")
|
|
self.client = openai.OpenAI(api_key=self.api_key, base_url=self.base_url)
|
|
|
|
def response(self, session_id, dialogue):
|
|
try:
|
|
responses = self.client.chat.completions.create(
|
|
model=self.model_name,
|
|
messages=dialogue,
|
|
stream=True
|
|
)
|
|
|
|
is_active = True
|
|
for chunk in responses:
|
|
try:
|
|
# 检查是否存在有效的choice且content不为空
|
|
delta = chunk.choices[0].delta if getattr(chunk, 'choices', None) else None
|
|
content = delta.content if hasattr(delta, 'content') else ''
|
|
except IndexError:
|
|
content = ''
|
|
if content:
|
|
# 处理标签跨多个chunk的情况
|
|
if '<think>' in content:
|
|
is_active = False
|
|
content = content.split('<think>')[0]
|
|
if '</think>' in content:
|
|
is_active = True
|
|
content = content.split('</think>')[-1]
|
|
if is_active:
|
|
yield content
|
|
|
|
except Exception as e:
|
|
logger.bind(tag=TAG).error(f"Error in response generation: {e}")
|