mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2024-11-23 21:41:07 +08:00
36 lines
1.6 KiB
Python
36 lines
1.6 KiB
Python
from nonebot.plugin import PluginMetadata, inherit_supported_adapters, require
|
||
require("nonebot_plugin_alconna")
|
||
from .azure import *
|
||
from nonebot import get_driver
|
||
usage = """MarshoAI Alpha by Asankilp
|
||
用法:
|
||
marsho <聊天内容> : 与 Marsho 进行对话。当模型为 GPT-4o(-mini) 等时,可以带上图片进行对话。
|
||
reset : 重置当前会话的上下文。
|
||
超级用户命令:
|
||
changemodel <模型名> : 切换全局 AI 模型。
|
||
contexts : 返回当前会话的上下文列表。 ※当上下文包含图片时,不要使用此命令。
|
||
praises : 返回夸赞名单的提示词。
|
||
usermsg <消息> : 往当前会话添加用户消息(UserMessage)。
|
||
assistantmsg <消息> : 往当前会话添加助手消息(AssistantMessage)。
|
||
注意事项:
|
||
- 当 Marsho 回复消息为None或以content_filter开头的错误信息时,表示该消息被内容过滤器过滤,请调整你的聊天内容确保其合规。
|
||
- 当回复以RateLimitReached开头的错误信息时,该 AI 模型的次数配额已用尽,请联系Bot管理员。
|
||
※本AI的回答"按原样"提供,不提供任何担保。AI也会犯错,请仔细甄别回答的准确性。"""
|
||
__author__ = "Asankilp"
|
||
__plugin_meta__ = PluginMetadata(
|
||
name="Marsho AI插件",
|
||
description="接入Azure服务的AI聊天插件",
|
||
usage=usage,
|
||
type="application",
|
||
homepage="https://github.com/LiteyukiStudio/nonebot-plugin-marshoai",
|
||
supported_adapters=inherit_supported_adapters("nonebot_plugin_alconna"),
|
||
extra={"License":"MIT","Author":"Asankilp"}
|
||
)
|
||
driver = get_driver()
|
||
|
||
|
||
@driver.on_startup
|
||
async def _():
|
||
pass
|
||
|