feat(researcher): add You.com Search API integration - #6
Open
Zakiamangal wants to merge 2 commits into
Open
Conversation
Add You.com Search API as the web_search tool for the Researcher agent, replacing the planned Brave/DuckDuckGo placeholder. Includes: - youComApiKey VS Code setting (connectAiLab.youComApiKey) - TypeScript provider module (src/providers/youcom-search.ts) - Python tool script with memory/report output - Researcher agent catalog updated (planned → implemented) Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
5 tasks
You.com Search API uses /v1/search (not /web). Response format is
{ results: { web: [], news: [] } } — update both Python tool and
TypeScript provider accordingly. Also add .gitignore entries for
API key files.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
youComApiKeyVS Code configuration key for You.com Search APIweb_searchtool for the Researcher agent via You.com Search APIweb_searchtool moves from "planned" to implementedChanges
package.json— newconnectAiLab.youComApiKeyconfig settingsrc/providers/youcom-search.ts— TypeScript provider for You.com Search APIassets/tool-seeds/researcher/web_search.py— Python tool script (reads API key from config, outputs to memory.md + report)assets/tool-seeds/researcher/web_search.md— tool documentationsrc/extension.ts— AGENT_TOOLS_CATALOG researcher entry updatedHow to test
connectAiLab.youComApiKey_agents/researcher/tools/is initializedweb_search.jsonwith your API key in_agents/researcher/tools/:{ "you_com_api_key": "YOUR-KEY", "max_results": 10 }_agents/researcher/memory.mdfor saved results🤖 Generated with Claude Code