feat(search): 添加SearXNG搜索引擎支持

在Web搜索工具中集成了SearXNG作为新的搜索引擎选项。

- 在 `WebSearchConfig` 中添加了 `searxng_instances` 和 `searxng_api_keys` 配置项。
- 更新了配置文件模板以包含新的SearXNG设置。
- 修复了 `main.py` 中管理器异步初始化调用方式的错误。
This commit is contained in:
minecraft1024a
2025-10-05 20:50:11 +08:00
committed by Windpicker-owo
parent f8e62d0253
commit b45261288f
4 changed files with 10 additions and 6 deletions

View File

@@ -72,7 +72,7 @@ class WEBSEARCHPLUGIN(BasePlugin):
logger.error(f"❌ 搜索引擎初始化失败: {e}", exc_info=True)
# Python包依赖列表
python_dependencies: list[PythonDependency] = [
python_dependencies: list[PythonDependency] = [ # noqa: RUF012
PythonDependency(package_name="asyncddgs", description="异步DuckDuckGo搜索库", optional=False),
PythonDependency(
package_name="exa_py",