feat: add Tavily as configurable search provider alongside DuckDuckGo#1
Open
tavily-integrations wants to merge 1 commit intoJoyGhoshs:mainfrom
Conversation
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
Adds Tavily as an optional web search provider in PenNoteAI, keeping DuckDuckGo as the default. Users can switch providers via a dropdown in plugin settings and provide their Tavily API key.
src/search/tavily.ts—TavilySearcherclass calling Tavily Search REST API via Obsidian'srequestUrl, with result caching matching DuckDuckGo's patternPenNoteSettingsinsrc/types.tswithsearchProvider('duckduckgo' | 'tavily') andtavilyApiKeyfieldssrc/settings.tsunder Search & Crawl sectionToolRunnerinsrc/agent/tool-runner.tsto acceptDuckDuckGoSearcher | TavilySearchersrc/main.tswith acreateSearcher()factory method; searcher is re-created on settings changeFiles changed
src/search/tavily.ts(new)src/types.tssrc/settings.tssrc/agent/tool-runner.tssrc/main.tsDependency changes
requestUrl(no npm package needed)Environment / config changes
tavilyApiKey: stored in plugin settings (not a process env var), entered via settings UIsearchProvider: new setting field, defaults to"duckduckgo"Notes for reviewers
Automated Review