2024-11-05 20:22:06 +08:00
|
|
|
|
from nonebot.plugin import PluginMetadata, inherit_supported_adapters
|
2024-11-17 00:56:50 +08:00
|
|
|
|
|
|
|
|
|
from .config import ConfigModel
|
2024-11-05 20:22:06 +08:00
|
|
|
|
from .constants import USAGE
|
|
|
|
|
|
|
|
|
|
metadata = PluginMetadata(
|
|
|
|
|
name="Marsho AI插件",
|
2024-12-02 13:27:45 +08:00
|
|
|
|
description="接入Azure服务或其他API的AI猫娘聊天插件,支持图片处理,外部函数调用,兼容多个AI模型,可解析AI回复的富文本信息",
|
2024-11-05 20:22:06 +08:00
|
|
|
|
usage=USAGE,
|
|
|
|
|
type="application",
|
|
|
|
|
config=ConfigModel,
|
|
|
|
|
homepage="https://github.com/LiteyukiStudio/nonebot-plugin-marshoai",
|
|
|
|
|
supported_adapters=inherit_supported_adapters("nonebot_plugin_alconna"),
|
2024-12-02 13:23:06 +08:00
|
|
|
|
extra={"License": "MIT, Mulan PSL v2", "Author": "Asankilp"},
|
2024-11-05 20:22:06 +08:00
|
|
|
|
)
|