fix: bing search

This commit is contained in:
Timothy Jaeryang Baek 2025-01-20 22:52:19 -08:00
parent 006208f9a9
commit 7a70fd1312

View File

@ -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: