mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-23 18:41:28 -05:00
[GH-ISSUE #8454] BING web searches show the wrong number of sites #69738
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 @jbaron on GitHub (Jan 10, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/8454
Bug Report
Installation Method
Installed using Docker and stand alone
Environment
Confirmation:
Expected Behavior:
The UI should show the number of configured sites that has been searched, not always 10.
The Reason is the wrong config of the Bing parameters in the Python backend (
bing.py):Fix:
Actual Behavior:
It shows 10 (the default) number of sites searched, because "count" defaults to 10. The actual number of sites scraped is correct.
Description
Bug Summary:
The wring number if sites searched are displayed when using Bing search.
Reproduction Details
Steps to Reproduce:
Enable Bing search and use it in a conversation. It will always show 10 (although the actual number of searched sites is lower).
Logs and Screenshots
Browser Console Logs:
n.a
Docker Container Logs:
n.a
@tjbck commented on GitHub (Jan 21, 2025):
Addressed in dev with
7a70fd1312, appreciate the report!