summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2026-07-08fix: use relative import for user plugin compatibilityHEADmasterntzyz
The absolute import 'from plugins.web.mimo.provider import ...' only works when the plugin is bundled inside hermes-agent's plugins/ directory. When installed as a user plugin to ~/.hermes/plugins/, Python cannot resolve the module path and the plugin fails to load silently. Switch to relative import (from .provider) which works in both locations.
2026-07-07fix: expand reuse tip to cover MiMo LLM provider (Token Plan) usersntzyz
2026-07-07feat: split README and INSTALL, add setup.shntzyz
- Split README.md (overview) and INSTALL.md (install for agents) - Add setup.sh (reference only) - Unify author to ntzyz <i@ntzyz.io> - Add Windows PowerShell equivalents and reuse tip
2026-06-26feat: MiMo web search plugin for Hermes AgentHermes Agent
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