2024-10-01 00:04:32 +08:00
|
|
|
|
import base64
|
|
|
|
|
import mimetypes
|
2024-09-17 20:20:31 +08:00
|
|
|
|
import os
|
2024-09-28 12:24:20 +08:00
|
|
|
|
import json
|
2024-11-05 20:22:06 +08:00
|
|
|
|
from typing import Any
|
2024-09-17 20:20:31 +08:00
|
|
|
|
import httpx
|
2024-10-03 11:58:33 +08:00
|
|
|
|
import nonebot_plugin_localstore as store
|
2024-09-25 23:48:47 +08:00
|
|
|
|
from datetime import datetime
|
2024-11-05 20:22:06 +08:00
|
|
|
|
from zhDateTime import DateTime # type: ignore
|
2024-10-21 18:04:31 +08:00
|
|
|
|
from azure.ai.inference.aio import ChatCompletionsClient
|
2024-10-23 01:40:09 +08:00
|
|
|
|
from azure.ai.inference.models import SystemMessage
|
2024-10-01 00:04:32 +08:00
|
|
|
|
from .config import config
|
2024-11-05 20:22:06 +08:00
|
|
|
|
|
|
|
|
|
|
2024-10-01 00:04:32 +08:00
|
|
|
|
async def get_image_b64(url):
|
|
|
|
|
headers = {
|
2024-11-05 20:22:06 +08:00
|
|
|
|
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
|
2024-10-01 00:04:32 +08:00
|
|
|
|
}
|
2024-11-05 20:22:06 +08:00
|
|
|
|
|
2024-09-17 20:20:31 +08:00
|
|
|
|
async with httpx.AsyncClient() as client:
|
2024-10-01 00:04:32 +08:00
|
|
|
|
response = await client.get(url, headers=headers)
|
|
|
|
|
if response.status_code == 200:
|
|
|
|
|
# 获取图片数据
|
|
|
|
|
image_data = response.content
|
2024-11-05 20:22:06 +08:00
|
|
|
|
content_type = response.headers.get("Content-Type")
|
2024-10-01 00:04:32 +08:00
|
|
|
|
if not content_type:
|
|
|
|
|
content_type = mimetypes.guess_type(url)[0]
|
2024-11-05 20:22:06 +08:00
|
|
|
|
image_format = content_type.split("/")[1] if content_type else "jpeg"
|
|
|
|
|
base64_image = base64.b64encode(image_data).decode("utf-8")
|
2024-10-01 00:04:32 +08:00
|
|
|
|
data_url = f"data:{content_type};base64,{base64_image}"
|
|
|
|
|
return data_url
|
|
|
|
|
else:
|
|
|
|
|
return None
|
2024-10-21 18:04:31 +08:00
|
|
|
|
|
2024-11-05 20:22:06 +08:00
|
|
|
|
|
2024-10-21 18:04:31 +08:00
|
|
|
|
async def make_chat(client: ChatCompletionsClient, msg, model_name: str):
|
2024-10-23 18:41:40 +08:00
|
|
|
|
return await client.complete(
|
|
|
|
|
messages=msg,
|
|
|
|
|
model=model_name,
|
|
|
|
|
temperature=config.marshoai_temperature,
|
|
|
|
|
max_tokens=config.marshoai_max_tokens,
|
2024-11-05 20:22:06 +08:00
|
|
|
|
top_p=config.marshoai_top_p,
|
2024-10-23 18:41:40 +08:00
|
|
|
|
)
|
2024-11-05 20:22:06 +08:00
|
|
|
|
|
|
|
|
|
|
2024-09-28 12:24:20 +08:00
|
|
|
|
def get_praises():
|
2024-11-05 20:22:06 +08:00
|
|
|
|
praises_file = store.get_plugin_data_file(
|
|
|
|
|
"praises.json"
|
|
|
|
|
) # 夸赞名单文件使用localstore存储
|
2024-10-03 11:58:33 +08:00
|
|
|
|
if not os.path.exists(praises_file):
|
2024-09-28 12:24:20 +08:00
|
|
|
|
init_data = {
|
|
|
|
|
"like": [
|
2024-11-05 20:22:06 +08:00
|
|
|
|
{
|
|
|
|
|
"name": "Asankilp",
|
|
|
|
|
"advantages": "赋予了Marsho猫娘人格,使用vim与vscode为Marsho写了许多代码,使Marsho更加可爱",
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
with open(praises_file, "w", encoding="utf-8") as f:
|
|
|
|
|
json.dump(init_data, f, ensure_ascii=False, indent=4)
|
|
|
|
|
with open(praises_file, "r", encoding="utf-8") as f:
|
2024-09-28 12:24:20 +08:00
|
|
|
|
data = json.load(f)
|
|
|
|
|
return data
|
|
|
|
|
|
2024-11-05 20:22:06 +08:00
|
|
|
|
|
2024-09-28 12:24:20 +08:00
|
|
|
|
def build_praises():
|
|
|
|
|
praises = get_praises()
|
|
|
|
|
result = ["你喜欢以下几个人物,他们有各自的优点:"]
|
|
|
|
|
for item in praises["like"]:
|
|
|
|
|
result.append(f"名字:{item['name']},优点:{item['advantages']}")
|
|
|
|
|
return "\n".join(result)
|
2024-09-25 23:48:47 +08:00
|
|
|
|
|
2024-11-05 20:22:06 +08:00
|
|
|
|
|
|
|
|
|
async def save_context_to_json(name: str, context: Any):
|
2024-10-03 15:16:32 +08:00
|
|
|
|
context_dir = store.get_plugin_data_dir() / "contexts"
|
|
|
|
|
os.makedirs(context_dir, exist_ok=True)
|
|
|
|
|
file_path = os.path.join(context_dir, f"{name}.json")
|
2024-11-05 20:22:06 +08:00
|
|
|
|
with open(file_path, "w", encoding="utf-8") as json_file:
|
2024-10-03 15:16:32 +08:00
|
|
|
|
json.dump(context, json_file, ensure_ascii=False, indent=4)
|
|
|
|
|
|
2024-11-05 20:22:06 +08:00
|
|
|
|
|
2024-10-03 15:16:32 +08:00
|
|
|
|
async def load_context_from_json(name: str):
|
|
|
|
|
context_dir = store.get_plugin_data_dir() / "contexts"
|
|
|
|
|
os.makedirs(context_dir, exist_ok=True)
|
|
|
|
|
file_path = os.path.join(context_dir, f"{name}.json")
|
|
|
|
|
try:
|
2024-11-05 20:22:06 +08:00
|
|
|
|
with open(file_path, "r", encoding="utf-8") as json_file:
|
2024-10-03 15:16:32 +08:00
|
|
|
|
return json.load(json_file)
|
|
|
|
|
except FileNotFoundError:
|
|
|
|
|
return []
|
2024-11-05 20:22:06 +08:00
|
|
|
|
|
|
|
|
|
|
2024-10-21 00:57:57 +08:00
|
|
|
|
async def set_nickname(user_id: str, name: str):
|
|
|
|
|
filename = store.get_plugin_data_file("nickname.json")
|
|
|
|
|
if not os.path.exists(filename):
|
|
|
|
|
data = {}
|
|
|
|
|
else:
|
2024-11-05 20:22:06 +08:00
|
|
|
|
with open(filename, "r", encoding="utf-8") as f:
|
2024-10-21 00:57:57 +08:00
|
|
|
|
data = json.load(f)
|
|
|
|
|
data[user_id] = name
|
2024-11-05 20:22:06 +08:00
|
|
|
|
with open(filename, "w", encoding="utf-8") as f:
|
2024-10-21 00:57:57 +08:00
|
|
|
|
json.dump(data, f, ensure_ascii=False, indent=4)
|
|
|
|
|
|
2024-11-05 20:22:06 +08:00
|
|
|
|
|
2024-10-21 00:57:57 +08:00
|
|
|
|
async def get_nicknames():
|
|
|
|
|
filename = store.get_plugin_data_file("nickname.json")
|
|
|
|
|
try:
|
2024-11-05 20:22:06 +08:00
|
|
|
|
with open(filename, "r", encoding="utf-8") as f:
|
2024-10-21 00:57:57 +08:00
|
|
|
|
return json.load(f)
|
|
|
|
|
except FileNotFoundError:
|
|
|
|
|
return {}
|
2024-10-03 15:16:32 +08:00
|
|
|
|
|
2024-11-05 20:22:06 +08:00
|
|
|
|
|
2024-10-01 00:04:32 +08:00
|
|
|
|
def get_prompt():
|
|
|
|
|
prompts = ""
|
|
|
|
|
prompts += config.marshoai_additional_prompt
|
|
|
|
|
if config.marshoai_enable_praises:
|
|
|
|
|
praises_prompt = build_praises()
|
|
|
|
|
prompts += praises_prompt
|
|
|
|
|
if config.marshoai_enable_time_prompt:
|
2024-11-05 20:22:06 +08:00
|
|
|
|
current_time = datetime.now().strftime("%Y.%m.%d %H:%M:%S")
|
|
|
|
|
current_lunar_date = (
|
|
|
|
|
DateTime.now().to_lunar().date_hanzify()[5:]
|
|
|
|
|
) # 库更新之前使用切片
|
2024-10-01 00:04:32 +08:00
|
|
|
|
time_prompt = f"现在的时间是{current_time},农历{current_lunar_date}。"
|
|
|
|
|
prompts += time_prompt
|
|
|
|
|
marsho_prompt = config.marshoai_prompt
|
2024-11-05 20:22:06 +08:00
|
|
|
|
spell = SystemMessage(content=marsho_prompt + prompts).as_dict()
|
2024-09-25 23:48:47 +08:00
|
|
|
|
return spell
|
2024-10-01 00:30:03 +08:00
|
|
|
|
|
2024-11-05 20:22:06 +08:00
|
|
|
|
|
2024-10-03 11:58:33 +08:00
|
|
|
|
def suggest_solution(errinfo: str) -> str:
|
|
|
|
|
suggestions = {
|
|
|
|
|
"content_filter": "消息已被内容过滤器过滤。请调整聊天内容后重试。",
|
|
|
|
|
"RateLimitReached": "模型达到调用速率限制。请稍等一段时间或联系Bot管理员。",
|
|
|
|
|
"tokens_limit_reached": "请求token达到上限。请重置上下文。",
|
|
|
|
|
"content_length_limit": "请求体过大。请重置上下文。",
|
2024-10-03 15:16:32 +08:00
|
|
|
|
"unauthorized": "Azure凭据无效。请联系Bot管理员。",
|
2024-10-21 02:23:01 +08:00
|
|
|
|
"invalid type: parameter messages.content is of type array but should be of type string.": "聊天请求体包含此模型不支持的数据类型。请重置上下文。",
|
2024-11-05 20:22:06 +08:00
|
|
|
|
"At most 1 image(s) may be provided in one request.": "此模型只能在上下文中包含1张图片。如果此前的聊天已经发送过图片,请重置上下文。",
|
2024-10-03 11:58:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for key, suggestion in suggestions.items():
|
|
|
|
|
if key in errinfo:
|
|
|
|
|
return f"\n{suggestion}"
|
2024-11-05 20:22:06 +08:00
|
|
|
|
|
2024-10-21 00:57:57 +08:00
|
|
|
|
return ""
|