2024-09-17 20:20:31 +08:00
|
|
|
|
from nonebot.typing import T_State
|
|
|
|
|
from nonebot import on_command
|
|
|
|
|
from nonebot.adapters import Message
|
|
|
|
|
from nonebot.params import ArgPlainText, CommandArg
|
|
|
|
|
from nonebot.permission import SUPERUSER
|
|
|
|
|
from typing import Optional
|
|
|
|
|
#from .acgnapis import *
|
|
|
|
|
from nonebot_plugin_alconna import on_alconna
|
|
|
|
|
from nonebot_plugin_alconna.uniseg import UniMessage, Target, MsgTarget, UniMsg, Image
|
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
|
|
|
|
|
from azure.ai.inference.aio import ChatCompletionsClient
|
2024-09-29 13:40:37 +08:00
|
|
|
|
from azure.ai.inference.models import SystemMessage, UserMessage, AssistantMessage, TextContentItem, ImageContentItem, ImageUrl, CompletionsFinishReason
|
2024-09-17 20:20:31 +08:00
|
|
|
|
from azure.core.credentials import AzureKeyCredential
|
|
|
|
|
from .__init__ import __plugin_meta__
|
2024-09-21 01:30:52 +08:00
|
|
|
|
from PIL import Image
|
2024-09-17 20:20:31 +08:00
|
|
|
|
from .config import config
|
2024-09-25 23:48:47 +08:00
|
|
|
|
from .models import MarshoContext
|
2024-09-17 20:20:31 +08:00
|
|
|
|
changemdl = on_command("changemodel",permission=SUPERUSER)
|
|
|
|
|
resetmem = on_command("reset",permission=SUPERUSER)
|
|
|
|
|
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-09-17 20:20:31 +08:00
|
|
|
|
nekocmd = on_alconna(
|
|
|
|
|
Alconna(
|
|
|
|
|
"marsho",
|
|
|
|
|
Args["text?",AllParam],
|
|
|
|
|
),
|
|
|
|
|
aliases={"neko"}
|
|
|
|
|
)
|
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-09-17 20:20:31 +08:00
|
|
|
|
context_limit = 15
|
2024-10-01 00:04:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-09-29 13:40:37 +08:00
|
|
|
|
@add_usermsg_cmd.handle()
|
|
|
|
|
async def add_usermsg(arg: Message = CommandArg()):
|
|
|
|
|
if msg := arg.extract_plain_text():
|
|
|
|
|
context.append(UserMessage(content=msg))
|
|
|
|
|
await UniMessage("已添加用户消息").send()
|
|
|
|
|
|
|
|
|
|
@add_assistantmsg_cmd.handle()
|
|
|
|
|
async def add_assistantmsg(arg: Message = CommandArg()):
|
|
|
|
|
if msg := arg.extract_plain_text():
|
|
|
|
|
context.append(AssistantMessage(content=msg))
|
|
|
|
|
await UniMessage("已添加助手消息").send()
|
|
|
|
|
|
2024-09-28 12:24:20 +08:00
|
|
|
|
@praises_cmd.handle()
|
|
|
|
|
async def getpraises():
|
|
|
|
|
await UniMessage(build_praises()).send()
|
2024-09-17 20:20:31 +08:00
|
|
|
|
|
2024-10-01 00:04:32 +08:00
|
|
|
|
@contexts_cmd.handle()
|
|
|
|
|
async def contexts():
|
|
|
|
|
await UniMessage(str(context.build()[1:])).send()
|
|
|
|
|
|
|
|
|
|
# @setprompt_cmd.handle() #用不了了
|
|
|
|
|
# async def setprompt(arg: Message = CommandArg()):
|
|
|
|
|
# global spell, context
|
|
|
|
|
# if prompt := arg.extract_plain_text():
|
|
|
|
|
# spell = SystemMessage(content=prompt)
|
|
|
|
|
# await setprompt_cmd.finish("已设置提示词")
|
|
|
|
|
# else:
|
|
|
|
|
# spell = SystemMessage(content="")
|
|
|
|
|
# context = []
|
|
|
|
|
# await setprompt_cmd.finish("已清除提示词")
|
2024-09-17 20:20:31 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@resetmem.handle()
|
|
|
|
|
async def reset():
|
2024-09-25 23:48:47 +08:00
|
|
|
|
context.reset()
|
2024-10-01 00:04:32 +08:00
|
|
|
|
context.resetcount()
|
2024-09-17 20:20:31 +08:00
|
|
|
|
await resetmem.finish("上下文已重置")
|
|
|
|
|
|
|
|
|
|
@changemdl.got("model",prompt="请输入模型名")
|
|
|
|
|
async def changemodel(model : str = ArgPlainText()):
|
|
|
|
|
global model_name
|
|
|
|
|
model_name = model
|
|
|
|
|
await changemdl.finish("已切换")
|
|
|
|
|
@nekocmd.handle()
|
|
|
|
|
async def neko(
|
|
|
|
|
message: UniMsg,
|
|
|
|
|
text = None
|
|
|
|
|
):
|
|
|
|
|
token = config.marshoai_token
|
2024-10-01 00:04:32 +08:00
|
|
|
|
endpoint = config.marshoai_azure_endpoint
|
2024-09-17 20:20:31 +08:00
|
|
|
|
#msg = await UniMessage.generate(message=message)
|
|
|
|
|
client = ChatCompletionsClient(
|
|
|
|
|
endpoint=endpoint,
|
|
|
|
|
credential=AzureKeyCredential(token),
|
|
|
|
|
)
|
|
|
|
|
if not text:
|
|
|
|
|
await UniMessage(
|
2024-10-01 00:04:32 +08:00
|
|
|
|
__plugin_meta__.usage+"\n当前使用的模型:"+model_name).send()
|
2024-09-17 20:20:31 +08:00
|
|
|
|
return
|
2024-10-01 00:04:32 +08:00
|
|
|
|
if context.count >= context_limit:
|
2024-09-17 20:20:31 +08:00
|
|
|
|
await UniMessage("上下文数量达到阈值。已自动重置上下文。").send()
|
2024-09-25 23:48:47 +08:00
|
|
|
|
context.reset()
|
2024-10-01 00:04:32 +08:00
|
|
|
|
context.resetcount()
|
2024-09-17 20:20:31 +08:00
|
|
|
|
# await UniMessage(str(text)).send()
|
|
|
|
|
try:
|
2024-10-01 00:04:32 +08:00
|
|
|
|
is_support_image_model = model_name.lower() in config.marshoai_support_image_models
|
|
|
|
|
usermsg = [] if is_support_image_model else ""
|
|
|
|
|
for i in message:
|
|
|
|
|
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":
|
|
|
|
|
if is_support_image_model:
|
|
|
|
|
usermsg.append(TextContentItem(text=i.data["text"]))
|
|
|
|
|
else:
|
|
|
|
|
usermsg += str(i.data["text"])
|
2024-09-17 20:20:31 +08:00
|
|
|
|
response = await client.complete(
|
2024-09-25 23:48:47 +08:00
|
|
|
|
messages=context.build()+[UserMessage(content=usermsg)],
|
2024-09-17 20:20:31 +08:00
|
|
|
|
model=model_name
|
|
|
|
|
)
|
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-09-29 13:40:37 +08:00
|
|
|
|
if choice["finish_reason"] == CompletionsFinishReason.STOPPED:
|
2024-09-17 20:20:31 +08:00
|
|
|
|
context.append(UserMessage(content=usermsg))
|
|
|
|
|
context.append(choice.message)
|
2024-10-01 00:04:32 +08:00
|
|
|
|
context.addcount()
|
2024-09-29 13:40:37 +08:00
|
|
|
|
elif choice["finish_reason"] == CompletionsFinishReason.CONTENT_FILTERED:
|
|
|
|
|
await UniMessage("*已被内容过滤器过滤。*").send()
|
2024-09-21 01:30:52 +08:00
|
|
|
|
#await UniMessage(str(choice)).send()
|
2024-09-17 20:20:31 +08:00
|
|
|
|
await UniMessage(str(choice.message.content)).send(reply_to=True)
|
|
|
|
|
#requests_limit = response.headers.get('x-ratelimit-limit-requests')
|
|
|
|
|
#request_id = response.headers.get('x-request-id')
|
|
|
|
|
#remaining_requests = response.headers.get('x-ratelimit-remaining-requests')
|
|
|
|
|
#remaining_tokens = response.headers.get('x-ratelimit-remaining-tokens')
|
|
|
|
|
#await UniMessage(f""" 剩余token:{remaining_tokens}"""
|
|
|
|
|
# ).send()
|
2024-09-29 13:40:37 +08:00
|
|
|
|
except Exception as e:
|
2024-09-17 20:20:31 +08:00
|
|
|
|
await UniMessage(str(e)).send()
|
2024-09-28 12:24:20 +08:00
|
|
|
|
# await UniMessage(str(e.reason)).send()
|
2024-09-17 20:20:31 +08:00
|
|
|
|
traceback.print_exc()
|
|
|
|
|
return
|