mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-11 20:05:19 +00:00
fix: bing search
This commit is contained in:
parent
006208f9a9
commit
7a70fd1312
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ def search_bing(
|
|||
filter_list: Optional[list[str]] = None,
|
||||
) -> list[SearchResult]:
|
||||
mkt = locale
|
||||
params = {"q": query, "mkt": mkt, "answerCount": count}
|
||||
params = {"q": query, "mkt": mkt, "count": count}
|
||||
headers = {"Ocp-Apim-Subscription-Key": subscription_key}
|
||||
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in a new issue