From de71e451c5f1283d642070ac5028fdbae842b988 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Fri, 26 Jun 2026 19:00:22 +0800 Subject: feat: MiMo web search plugin for Hermes Agent MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Xiaomi MiMo ่”็ฝ‘ๆœ็ดข (server-side web search) provider plugin. - WebSearchProvider subclass calling MiMo Chat Completions API with tools=[{type: web_search, force_search: true}] - Parses url_citation annotations into Hermes standard format - Supports XIAOMI_BASE_URL for Token Plan endpoints - Standalone test_search.py CLI script (no Hermes dependency) - Configurable model, max_keyword, timeout via config.yaml --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d497e87 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +__pycache__/ +*.pyc +*.pyo +.env +.venv/ +*.egg-info/ +dist/ +build/ -- cgit v1.3.1