Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion hermes_cli/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2299,6 +2299,14 @@ def _ensure_hermes_home_managed(home: Path):
"password": True,
"category": "tool",
},
"APIFY_API_TOKEN": {
"description": "Apify API token for web search (RAG Web Browser) and page extract (Website Content Crawler)",
"prompt": "Apify API token",
"url": "https://apify.com/account/integrations",
"tools": ["web_search", "web_extract"],
"password": True,
"category": "tool",
},
"SEARXNG_URL": {
"description": "URL of your SearXNG instance for free self-hosted web search",
"prompt": "SearXNG URL (e.g. http://localhost:8080)",
Expand Down Expand Up @@ -5257,7 +5265,7 @@ def set_config_value(key: str, value: str):
'OPENROUTER_API_KEY', 'OPENAI_API_KEY', 'ANTHROPIC_API_KEY', 'VOICE_TOOLS_OPENAI_KEY',
'EXA_API_KEY', 'PARALLEL_API_KEY', 'FIRECRAWL_API_KEY', 'FIRECRAWL_API_URL',
'FIRECRAWL_GATEWAY_URL', 'TOOL_GATEWAY_DOMAIN', 'TOOL_GATEWAY_SCHEME',
'TOOL_GATEWAY_USER_TOKEN', 'TAVILY_API_KEY',
'TOOL_GATEWAY_USER_TOKEN', 'TAVILY_API_KEY', 'APIFY_API_TOKEN',
'BROWSERBASE_API_KEY', 'BROWSERBASE_PROJECT_ID', 'BROWSER_USE_API_KEY',
'FAL_KEY', 'TELEGRAM_BOT_TOKEN', 'DISCORD_BOT_TOKEN',
'TERMINAL_SSH_HOST', 'TERMINAL_SSH_USER', 'TERMINAL_SSH_KEY',
Expand Down
14 changes: 14 additions & 0 deletions plugins/web/apify/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"""Apify web search + extract + crawl plugin — bundled, auto-loaded.

Uses apify/rag-web-browser for search and apify/website-content-crawler
for both single-page extract and multi-page crawl. Requires APIFY_API_TOKEN.
"""

from __future__ import annotations

from plugins.web.apify.provider import ApifyWebSearchProvider


def register(ctx) -> None:
"""Register the Apify provider with the plugin context."""
ctx.register_web_search_provider(ApifyWebSearchProvider())
7 changes: 7 additions & 0 deletions plugins/web/apify/plugin.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: web-apify
version: 1.0.0
description: "Apify web search (RAG Web Browser) and page extract (Website Content Crawler)"
author: Apify
kind: backend
provides_web_providers:
- apify
Loading
Loading