2024-09-17 20:20:31 +08:00
|
|
|
|
from nonebot import on_command
|
2024-10-21 00:57:57 +08:00
|
|
|
|
from nonebot.adapters import Message, Event
|
2024-10-01 20:56:37 +08:00
|
|
|
|
from nonebot.params import CommandArg
|
2024-09-17 20:20:31 +08:00
|
|
|
|
from nonebot.permission import SUPERUSER
|
2024-10-01 22:12:21 +08:00
|
|
|
|
from nonebot_plugin_alconna import on_alconna, MsgTarget
|
2024-10-01 20:56:37 +08:00
|
|
|
|
from nonebot_plugin_alconna.uniseg import UniMessage, UniMsg
|
2024-10-01 00:04:32 +08:00
|
|
|
|
from arclet.alconna import Alconna, Args, AllParam
|
2024-09-17 20:20:31 +08:00
|
|
|
|
from .util import *
|
|
|
|
|
import traceback
|
2024-10-21 18:04:31 +08:00
|
|
|
|
import contextlib
|
2024-09-17 20:20:31 +08:00
|
|
|
|
from azure.ai.inference.aio import ChatCompletionsClient
|
2024-10-01 20:56:37 +08:00
|
|
|
|
from azure.ai.inference.models import UserMessage, AssistantMessage, TextContentItem, ImageContentItem, ImageUrl, CompletionsFinishReason
|
2024-09-17 20:20:31 +08:00
|
|
|
|
from azure.core.credentials import AzureKeyCredential
|
2024-10-23 18:41:40 +08:00
|
|
|
|
from typing import Optional
|
2024-09-17 20:20:31 +08:00
|
|
|
|
from .__init__ import __plugin_meta__
|
|
|
|
|
from .config import config
|
2024-09-25 23:48:47 +08:00
|
|
|
|
from .models import MarshoContext
|
2024-10-21 00:57:57 +08:00
|
|
|
|
from .constants import *
|
2024-10-01 20:56:37 +08:00
|
|
|
|
changemodel_cmd = on_command("changemodel",permission=SUPERUSER)
|
2024-10-01 22:12:21 +08:00
|
|
|
|
resetmem_cmd = on_command("reset")
|
|
|
|
|
#setprompt_cmd = on_command("prompt",permission=SUPERUSER)
|
2024-09-28 12:24:20 +08:00
|
|
|
|
praises_cmd = on_command("praises",permission=SUPERUSER)
|
2024-09-29 13:40:37 +08:00
|
|
|
|
add_usermsg_cmd = on_command("usermsg",permission=SUPERUSER)
|
|
|
|
|
add_assistantmsg_cmd = on_command("assistantmsg",permission=SUPERUSER)
|
2024-10-01 00:04:32 +08:00
|
|
|
|
contexts_cmd = on_command("contexts",permission=SUPERUSER)
|
2024-10-03 15:16:32 +08:00
|
|
|
|
save_context_cmd = on_command("savecontext",permission=SUPERUSER)
|
|
|
|
|
load_context_cmd = on_command("loadcontext",permission=SUPERUSER)
|
2024-10-01 20:56:37 +08:00
|
|
|
|
marsho_cmd = on_alconna(
|
2024-09-17 20:20:31 +08:00
|
|
|
|
Alconna(
|
|
|
|
|
"marsho",
|
|
|
|
|
Args["text?",AllParam],
|
2024-10-01 20:56:37 +08:00
|
|
|
|
)
|
2024-09-17 20:20:31 +08:00
|
|
|
|
)
|
2024-10-21 00:57:57 +08:00
|
|
|
|
nickname_cmd = on_alconna(
|
|
|
|
|
Alconna(
|
|
|
|
|
"nickname",
|
|
|
|
|
Args["name?",str],
|
|
|
|
|
)
|
|
|
|
|
)
|
2024-10-01 00:04:32 +08:00
|
|
|
|
model_name = config.marshoai_default_model
|
2024-09-25 23:48:47 +08:00
|
|
|
|
context = MarshoContext()
|
2024-10-21 18:04:31 +08:00
|
|
|
|
token = config.marshoai_token
|
|
|
|
|
endpoint = config.marshoai_azure_endpoint
|
|
|
|
|
client = ChatCompletionsClient(
|
|
|
|
|
endpoint=endpoint,
|
|
|
|
|
credential=AzureKeyCredential(token)
|
|
|
|
|
)
|
2024-09-29 13:40:37 +08:00
|
|
|
|
@add_usermsg_cmd.handle()
|
2024-10-01 22:12:21 +08:00
|
|
|
|
async def add_usermsg(target: MsgTarget, arg: Message = CommandArg()):
|
2024-09-29 13:40:37 +08:00
|
|
|
|
if msg := arg.extract_plain_text():
|
2024-10-03 15:16:32 +08:00
|
|
|
|
context.append(UserMessage(content=msg).as_dict(), target.id, target.private)
|
|
|
|
|
await add_usermsg_cmd.finish("已添加用户消息")
|
2024-09-29 13:40:37 +08:00
|
|
|
|
|
|
|
|
|
@add_assistantmsg_cmd.handle()
|
2024-10-01 22:12:21 +08:00
|
|
|
|
async def add_assistantmsg(target: MsgTarget, arg: Message = CommandArg()):
|
2024-09-29 13:40:37 +08:00
|
|
|
|
if msg := arg.extract_plain_text():
|
2024-10-03 15:16:32 +08:00
|
|
|
|
context.append(AssistantMessage(content=msg).as_dict(), target.id, target.private)
|
|
|
|
|
await add_assistantmsg_cmd.finish("已添加助手消息")
|
2024-09-29 13:40:37 +08:00
|
|
|
|
|
2024-09-28 12:24:20 +08:00
|
|
|
|
@praises_cmd.handle()
|
2024-10-01 20:56:37 +08:00
|
|
|
|
async def praises():
|
2024-10-26 00:17:41 +08:00
|
|
|
|
await praises_cmd.finish(build_praises())
|
2024-09-17 20:20:31 +08:00
|
|
|
|
|
2024-10-01 00:04:32 +08:00
|
|
|
|
@contexts_cmd.handle()
|
2024-10-01 22:12:21 +08:00
|
|
|
|
async def contexts(target: MsgTarget):
|
2024-10-26 00:17:41 +08:00
|
|
|
|
await contexts_cmd.finish(str(context.build(target.id, target.private)[1:]))
|
2024-10-01 00:04:32 +08:00
|
|
|
|
|
2024-10-03 15:16:32 +08:00
|
|
|
|
@save_context_cmd.handle()
|
|
|
|
|
async def save_context(target: MsgTarget, arg: Message = CommandArg()):
|
|
|
|
|
contexts = context.build(target.id, target.private)[1:]
|
|
|
|
|
if msg := arg.extract_plain_text():
|
|
|
|
|
await save_context_to_json(msg, contexts)
|
|
|
|
|
await save_context_cmd.finish("已保存上下文")
|
2024-09-17 20:20:31 +08:00
|
|
|
|
|
2024-10-03 15:16:32 +08:00
|
|
|
|
@load_context_cmd.handle()
|
|
|
|
|
async def load_context(target: MsgTarget, arg: Message = CommandArg()):
|
|
|
|
|
if msg := arg.extract_plain_text():
|
|
|
|
|
context.set_context(await load_context_from_json(msg), target.id, target.private)
|
|
|
|
|
await load_context_cmd.finish("已加载并覆盖上下文")
|
2024-09-17 20:20:31 +08:00
|
|
|
|
|
2024-10-01 20:56:37 +08:00
|
|
|
|
@resetmem_cmd.handle()
|
2024-10-01 22:12:21 +08:00
|
|
|
|
async def resetmem(target: MsgTarget):
|
|
|
|
|
context.reset(target.id, target.private)
|
2024-10-01 20:56:37 +08:00
|
|
|
|
await resetmem_cmd.finish("上下文已重置")
|
2024-09-17 20:20:31 +08:00
|
|
|
|
|
2024-10-01 20:56:37 +08:00
|
|
|
|
@changemodel_cmd.handle()
|
|
|
|
|
async def changemodel(arg : Message = CommandArg()):
|
2024-09-17 20:20:31 +08:00
|
|
|
|
global model_name
|
2024-10-01 20:56:37 +08:00
|
|
|
|
if model := arg.extract_plain_text():
|
|
|
|
|
model_name = model
|
|
|
|
|
await changemodel_cmd.finish("已切换")
|
2024-10-03 15:16:32 +08:00
|
|
|
|
|
2024-10-21 00:57:57 +08:00
|
|
|
|
@nickname_cmd.handle()
|
|
|
|
|
async def nickname(
|
|
|
|
|
event: Event,
|
|
|
|
|
name = None
|
|
|
|
|
):
|
|
|
|
|
nicknames = await get_nicknames()
|
|
|
|
|
user_id = event.get_user_id()
|
|
|
|
|
if not name:
|
|
|
|
|
await nickname_cmd.finish("你的昵称为:"+str(nicknames[user_id]))
|
|
|
|
|
if name == "reset":
|
|
|
|
|
await set_nickname(user_id, "")
|
|
|
|
|
await nickname_cmd.finish("已重置昵称")
|
|
|
|
|
else:
|
|
|
|
|
await set_nickname(user_id, name)
|
|
|
|
|
await nickname_cmd.finish("已设置昵称为:"+name)
|
|
|
|
|
|
2024-10-01 20:56:37 +08:00
|
|
|
|
@marsho_cmd.handle()
|
|
|
|
|
async def marsho(
|
2024-10-01 22:12:21 +08:00
|
|
|
|
target: MsgTarget,
|
2024-10-21 00:57:57 +08:00
|
|
|
|
event: Event,
|
2024-10-23 18:41:40 +08:00
|
|
|
|
text: Optional[UniMsg] = None
|
2024-09-17 20:20:31 +08:00
|
|
|
|
):
|
|
|
|
|
if not text:
|
|
|
|
|
await UniMessage(
|
2024-10-01 00:04:32 +08:00
|
|
|
|
__plugin_meta__.usage+"\n当前使用的模型:"+model_name).send()
|
2024-10-21 00:57:57 +08:00
|
|
|
|
await marsho_cmd.finish(INTRODUCTION)
|
2024-09-17 20:20:31 +08:00
|
|
|
|
return
|
2024-10-23 18:41:40 +08:00
|
|
|
|
|
2024-09-17 20:20:31 +08:00
|
|
|
|
try:
|
2024-10-21 00:57:57 +08:00
|
|
|
|
is_support_image_model = model_name.lower() in SUPPORT_IMAGE_MODELS
|
2024-10-01 00:04:32 +08:00
|
|
|
|
usermsg = [] if is_support_image_model else ""
|
2024-10-21 00:57:57 +08:00
|
|
|
|
user_id = event.get_user_id()
|
|
|
|
|
nicknames = await get_nicknames()
|
|
|
|
|
nickname = nicknames.get(user_id, "")
|
|
|
|
|
if nickname != "":
|
|
|
|
|
nickname_prompt = f"\n*此消息的说话者:{nickname}*"
|
|
|
|
|
else:
|
|
|
|
|
nickname_prompt = ""
|
|
|
|
|
await UniMessage("*你未设置自己的昵称。推荐使用'nickname [昵称]'命令设置昵称来获得个性化(可能)回答。").send()
|
2024-10-23 18:41:40 +08:00
|
|
|
|
for i in text:
|
2024-10-01 00:04:32 +08:00
|
|
|
|
if i.type == "image":
|
|
|
|
|
if is_support_image_model:
|
2024-09-17 20:20:31 +08:00
|
|
|
|
imgurl = i.data["url"]
|
2024-10-01 00:04:32 +08:00
|
|
|
|
picmsg = ImageContentItem(
|
|
|
|
|
image_url=ImageUrl(url=str(await get_image_b64(imgurl)))
|
|
|
|
|
)
|
2024-09-17 20:20:31 +08:00
|
|
|
|
usermsg.append(picmsg)
|
2024-10-01 00:04:32 +08:00
|
|
|
|
else:
|
|
|
|
|
await UniMessage("*此模型不支持图片处理。").send()
|
|
|
|
|
elif i.type == "text":
|
2024-10-23 18:41:40 +08:00
|
|
|
|
clean_text = i.data["text"]
|
2024-10-01 00:04:32 +08:00
|
|
|
|
if is_support_image_model:
|
2024-10-21 00:57:57 +08:00
|
|
|
|
usermsg.append(TextContentItem(text=clean_text+nickname_prompt))
|
2024-10-01 00:04:32 +08:00
|
|
|
|
else:
|
2024-10-21 00:57:57 +08:00
|
|
|
|
usermsg += str(clean_text+nickname_prompt)
|
2024-10-21 18:04:31 +08:00
|
|
|
|
response = await make_chat(
|
|
|
|
|
client=client,
|
|
|
|
|
model_name=model_name,
|
|
|
|
|
msg=context.build(target.id, target.private)+[UserMessage(content=usermsg)])
|
2024-09-21 01:30:52 +08:00
|
|
|
|
#await UniMessage(str(response)).send()
|
2024-09-17 20:20:31 +08:00
|
|
|
|
choice = response.choices[0]
|
2024-10-03 15:16:32 +08:00
|
|
|
|
if choice["finish_reason"] == CompletionsFinishReason.STOPPED: # 当对话成功时,将dict的上下文添加到上下文类中
|
|
|
|
|
context.append(UserMessage(content=usermsg).as_dict(), target.id, target.private)
|
|
|
|
|
context.append(choice.message.as_dict(), target.id, target.private)
|
2024-09-29 13:40:37 +08:00
|
|
|
|
elif choice["finish_reason"] == CompletionsFinishReason.CONTENT_FILTERED:
|
2024-10-21 01:04:14 +08:00
|
|
|
|
await UniMessage("*已被内容过滤器过滤。请调整聊天内容后重试。").send(reply_to=True)
|
|
|
|
|
return
|
2024-09-17 20:20:31 +08:00
|
|
|
|
await UniMessage(str(choice.message.content)).send(reply_to=True)
|
2024-09-29 13:40:37 +08:00
|
|
|
|
except Exception as e:
|
2024-10-01 00:30:03 +08:00
|
|
|
|
await UniMessage(str(e)+suggest_solution(str(e))).send()
|
2024-09-17 20:20:31 +08:00
|
|
|
|
traceback.print_exc()
|
|
|
|
|
return
|
2024-10-21 18:04:31 +08:00
|
|
|
|
|
|
|
|
|
with contextlib.suppress(ImportError): #优化先不做()
|
|
|
|
|
import nonebot.adapters.onebot.v11
|
|
|
|
|
from .azure_onebot import poke_notify
|
|
|
|
|
@poke_notify.handle()
|
|
|
|
|
async def poke(
|
|
|
|
|
event: Event,
|
|
|
|
|
target: MsgTarget
|
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
user_id = event.get_user_id()
|
|
|
|
|
nicknames = await get_nicknames()
|
|
|
|
|
nickname = nicknames.get(user_id, "")
|
|
|
|
|
try:
|
|
|
|
|
if config.marshoai_poke_suffix != "":
|
|
|
|
|
response = await make_chat(
|
|
|
|
|
client=client,
|
|
|
|
|
model_name=model_name,
|
|
|
|
|
msg=[get_prompt(),UserMessage(content=f"*{nickname}{config.marshoai_poke_suffix}")]
|
|
|
|
|
)
|
|
|
|
|
choice = response.choices[0]
|
|
|
|
|
if choice["finish_reason"] == CompletionsFinishReason.STOPPED:
|
|
|
|
|
await UniMessage(" "+str(choice.message.content)).send(at_sender=True)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
await UniMessage(str(e)+suggest_solution(str(e))).send()
|
|
|
|
|
traceback.print_exc()
|
|
|
|
|
return
|