From 6fcf65a8e32c5bfc3681c1f7c01407df2b226ebb Mon Sep 17 00:00:00 2001 From: Ilya Gusev Date: Mon, 15 Jun 2026 11:37:35 +0000 Subject: [PATCH] chore(web): drop redundant comments from Keenable provider Co-Authored-By: Claude Opus 4.8 (1M context) --- nanobot/agent/tools/web.py | 1 - tests/tools/test_web_search_tool.py | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/nanobot/agent/tools/web.py b/nanobot/agent/tools/web.py index d51febe9..f2a5e0e5 100644 --- a/nanobot/agent/tools/web.py +++ b/nanobot/agent/tools/web.py @@ -489,7 +489,6 @@ class WebSearchTool(Tool): return f"Error: {e}" async def _search_keenable(self, query: str, n: int) -> str: - # Keenable has a no-login free tier, so an API key is optional. api_key = self.config.api_key or os.environ.get("KEENABLE_API_KEY", "") headers = {"Content-Type": "application/json", "User-Agent": self.user_agent} if api_key: diff --git a/tests/tools/test_web_search_tool.py b/tests/tools/test_web_search_tool.py index 4f5804cd..85870fd9 100644 --- a/tests/tools/test_web_search_tool.py +++ b/tests/tools/test_web_search_tool.py @@ -132,7 +132,6 @@ async def test_tavily_search(monkeypatch): def test_keenable_without_api_key_stays_on_provider(monkeypatch): - # Free tier needs no key, so Keenable must not fall back to DuckDuckGo. monkeypatch.delenv("KEENABLE_API_KEY", raising=False) tool = _tool(provider="keenable", api_key="") assert tool.exclusive is False @@ -159,7 +158,7 @@ async def test_keenable_search(monkeypatch): result = await tool.execute(query="keenable", count=1) assert "Keen" in result assert "https://keenable.ai" in result - assert "longer excerpt" in result # snippet preferred over description + assert "longer excerpt" in result @pytest.mark.asyncio @@ -176,7 +175,7 @@ async def test_keenable_search_without_key_omits_header(monkeypatch): monkeypatch.setattr(httpx.AsyncClient, "post", mock_post) tool = _tool(provider="keenable", api_key="") result = await tool.execute(query="keenable", count=1) - assert "Anon" in result # description used when snippet absent + assert "Anon" in result @pytest.mark.asyncio