mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-25 14:06:18 +00:00
* fix(searxng): walk pageno so max_results above one page is honored The SearXNG search API has no `limit` parameter: `/search` answers with one page of results (the instance's `results_per_page`, 10 by default) and ignores a limit it is handed. The client sent `limit=max_results` anyway and hardcoded `pageno=1`, so any configured `max_results` larger than a page was silently truncated to whatever the first page held -- an instance could not tell a truncated response from a complete one. Collect results by walking `pageno` until `max_results` is reached, a page adds nothing new, or a page comes back empty. The walk is capped at `_MAX_PAGES` so an unexpectedly large `max_results` cannot fan out into unbounded requests. The unsupported `limit` parameter is no longer sent. Adds four regression tests covering cross-page collection, the single-request fast path, dedup-driven early stop, and the absence of `limit`. * Remove redundant condition for limit check Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: RXQ6 <RXQ6@users.noreply.github.com> Co-authored-by: Willem Jiang <willem.jiang@gmail.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>