mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2024-11-23 21:41:07 +08:00
16 lines
512 B
Python
16 lines
512 B
Python
from nonebot.plugin import PluginMetadata, inherit_supported_adapters
|
|
|
|
from .config import ConfigModel
|
|
from .constants import USAGE
|
|
|
|
metadata = PluginMetadata(
|
|
name="Marsho AI插件",
|
|
description="接入Azure服务的AI聊天插件",
|
|
usage=USAGE,
|
|
type="application",
|
|
config=ConfigModel,
|
|
homepage="https://github.com/LiteyukiStudio/nonebot-plugin-marshoai",
|
|
supported_adapters=inherit_supported_adapters("nonebot_plugin_alconna"),
|
|
extra={"License": "MIT", "Author": "Asankilp"},
|
|
)
|