mirror of
https://github.com/langgenius/dify-official-plugins.git
synced 2026-07-21 17:45:23 -04:00
searxng with agent #926
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nicho2 on GitHub (Jan 9, 2026).
Self Checks
Dify version
1.11.1
Plugin version
0.0.7
Cloud or Self Hosted
Self Hosted (Docker)
Steps to reproduce
I don't understand what is the problem !!
✔️ Error log
@dosubot[bot] commented on GitHub (Jan 9, 2026):
The error "tool parameter query not found in tool config" means the searxng_search tool is missing a required parameter called
queryin its configuration. This parameter is essential—it represents the search string that SearXNG uses to perform a search. If it's not provided, the tool cannot work and will fail with this error.To fix this, make sure that when you configure or invoke the searxng_search tool (whether in the agent setup or in your workflow), you supply a value for the
queryparameter. The configuration for this tool explicitly marksqueryas required and expects it to be a string—usually the keywords or phrase you want to search for. If the UI does not expose a field for this, check your agent or tool setup and ensure thequeryparameter is included in the tool's parameters section, or update your workflow to pass it correctly. For reference, see the tool config definition and implementation:searxng_search.yamlsearxng_search.pyIf you need to pass dynamic queries (for example, from user input or LLM output), ensure your agent or workflow is set up to provide this value at runtime. If you have further trouble, let me know how you're configuring the agent and I can help you pinpoint where to add the
queryparameter.To reply, just mention @dosu.
How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other
@nicho2 commented on GitHub (Jan 16, 2026):
OK , I upgraded to Dify version 1.11.4, deleted the Node agent, rebuilt it, and now it's OK.