feat: add Tavily search provider option to settings and setup wizard#7
Open
tavily-integrations wants to merge 2 commits into
Conversation
added 2 commits
May 15, 2026 15:14
…rable search provider in the frontend settings UI
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 a configurable search provider alongside existing providers (SearXNG, Brave, DuckDuckGo) in the frontend settings UI. This is an additive change — no existing providers are removed or modified.
What changed
SettingsView.tsx:
tavilyApiKeystate variabletavilyoption to the preferred search provider dropdowntavily_api_keythrough the existingPOST /api/search/providers/configcallSetupWizard.tsx:
Files changed
client/src/components/SettingsView.tsxclient/src/components/SetupWizard.tsxDependency changes
None — purely frontend UI additions using existing components.
Environment variable changes
TAVILY_API_KEYis now accepted via the UI and sent to the backend config endpoint astavily_api_keyNotes for reviewers
tavily_api_keyfield in the config endpoint (handled by a separate migration unit)Automated Review
tavilyApiKeystate and password input in SettingsView, includestavily_api_keyin the POST body to/api/search/providers/config, adds "Tavily" to the preferred provider dropdown, adds Tavily to the SetupWizard INTEGRATIONS list, and mapstavily → TAVILY_API_KEYin the setupRoutes.tsintegrationKeyMap. All three changed files are within scope and the changes are internally consistent. The backend handling oftavily_api_keyin searchRoutes.ts (extraction, ConfigManager persistence, provider activation, priority management) is expected to land via the prerequisiteconfig-api-tavily-supportunit and should not block this unit.