Conversation
|
Someone is attempting to deploy a commit to the LibreChat's projects Team on Vercel. A member of the Team first needs to authorize it. |
This branch has not been deployed
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
The "Choosing engines" section of the web search page says that an engine disabled on the SearXNG instance is skipped, and that leaving DuckDuckGo out of
searxngSearchOptions.engineskeeps it from being queried. Neither matches how SearXNG selects engines:parse_genericinsearx/webadapter.py:if engine_name in engines). Engines set todisabled: trueare loaded, so naming one inenginesqueries it. Onlyinactive: trueengines are skipped.categoriesalongsideengines(the search tool in@librechat/agents). When a request carries both,parse_genericadds every engine in that category that is not disabled. Soenginesadds to the selection, and leaving an engine out does not exclude it.Observed against a self-hosted SearXNG 2026.9.25 instance:
engines=qwant, with qwant set todisabled: true, still sent the request to Qwant (it answered with a CAPTCHA).engines=google,bing,duckduckgo&categories=generalalso returned results from brave and startpage.inactive: true.Changes
disabledversusinactive, and describe/configas listing every loaded engine with anenabledflag. Add a paragraph on howenginescombines withcategoriesand how to exclude an engine, and drop "leave DuckDuckGo out" from the advice.engines.unresponsive_engines, which names each engine that failed and why. Item 4 now mentionsinactive.curl: addcategories=general&language=allso the command matches what LibreChat sends. Withoutcategories, SearXNG queries only the listed engines and returns different results from what LibreChat gets.The example engine lists are unchanged.
馃 Generated with Claude Code