修复了一些bug,修改了插件加载输出

This commit is contained in:
Windpicker-owo
2025-07-26 20:49:22 +08:00
parent ef505cc118
commit 3021acff59
4 changed files with 16 additions and 8 deletions

View File

@@ -198,7 +198,9 @@ class ComponentRegistry:
# 如果是llm可用的且启用的工具,添加到 llm可用工具列表
if tool_info.available_for_llm and tool_info.enabled:
self._llm_available_tools[tool_name] = tool_class
return True
def _register_event_handler_component(
self, handler_info: EventHandlerInfo, handler_class: Type[BaseEventHandler]
) -> bool: