103 lines
1.8 KiB
Python
103 lines
1.8 KiB
Python
"""
|
|
MaiBot 插件系统
|
|
|
|
提供统一的插件开发和管理框架
|
|
"""
|
|
|
|
# 导出主要的公共接口
|
|
from .base import (
|
|
BasePlugin,
|
|
BaseAction,
|
|
BaseCommand,
|
|
BaseTool,
|
|
ConfigField,
|
|
ComponentType,
|
|
ActionActivationType,
|
|
ChatMode,
|
|
ComponentInfo,
|
|
ActionInfo,
|
|
CommandInfo,
|
|
PluginInfo,
|
|
PythonDependency,
|
|
BaseEventHandler,
|
|
EventHandlerInfo,
|
|
EventType,
|
|
MaiMessages,
|
|
)
|
|
|
|
# 导入工具模块
|
|
from .utils import (
|
|
ManifestValidator,
|
|
# ManifestGenerator,
|
|
# validate_plugin_manifest,
|
|
# generate_plugin_manifest,
|
|
)
|
|
|
|
from .apis import (
|
|
chat_api,
|
|
tool_api,
|
|
component_manage_api,
|
|
config_api,
|
|
database_api,
|
|
emoji_api,
|
|
generator_api,
|
|
llm_api,
|
|
message_api,
|
|
person_api,
|
|
plugin_manage_api,
|
|
send_api,
|
|
utils_api,
|
|
register_plugin,
|
|
get_logger,
|
|
)
|
|
|
|
|
|
__version__ = "1.0.0"
|
|
|
|
__all__ = [
|
|
# API 模块
|
|
"chat_api",
|
|
"tool_api",
|
|
"component_manage_api",
|
|
"config_api",
|
|
"database_api",
|
|
"emoji_api",
|
|
"generator_api",
|
|
"llm_api",
|
|
"message_api",
|
|
"person_api",
|
|
"plugin_manage_api",
|
|
"send_api",
|
|
"utils_api",
|
|
"register_plugin",
|
|
"get_logger",
|
|
# 基础类
|
|
"BasePlugin",
|
|
"BaseAction",
|
|
"BaseCommand",
|
|
"BaseTool",
|
|
"BaseEventHandler",
|
|
# 类型定义
|
|
"ComponentType",
|
|
"ActionActivationType",
|
|
"ChatMode",
|
|
"ComponentInfo",
|
|
"ActionInfo",
|
|
"CommandInfo",
|
|
"PluginInfo",
|
|
"PythonDependency",
|
|
"EventHandlerInfo",
|
|
"EventType",
|
|
# 消息
|
|
"MaiMessages",
|
|
# 装饰器
|
|
"register_plugin",
|
|
"ConfigField",
|
|
# 工具函数
|
|
"ManifestValidator",
|
|
"get_logger",
|
|
# "ManifestGenerator",
|
|
# "validate_plugin_manifest",
|
|
# "generate_plugin_manifest",
|
|
]
|