Skip to content

Commit

Permalink
Merge pull request assafelovic#284 from norrisp90/BingSearch-retriever
Browse files Browse the repository at this point in the history
Add Bing Search Retriever
  • Loading branch information
assafelovic authored Dec 5, 2023
2 parents 8d72c10 + 81f9696 commit e10bc55
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 1 deletion.
3 changes: 3 additions & 0 deletions gpt_researcher/master/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ def get_retriever(retriever):
case "duckduckgo":
from gpt_researcher.retrievers import Duckduckgo
retriever = Duckduckgo
case "BingSearch":
from gpt_researcher.retrievers import BingSearch
retriever = BingSearch

case _:
raise Exception("Retriever not found.")
Expand Down
3 changes: 2 additions & 1 deletion gpt_researcher/retrievers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
from .serper.serper import SerperSearch
from .serpapi.serpapi import SerpApiSearch
from .searx.searx import SearxSearch
from .bing.bing import BingSearch

__all__ = ["TavilySearch", "Duckduckgo", "SerperSearch", "SerpApiSearch", "GoogleSearch", "SearxSearch"]
__all__ = ["TavilySearch", "Duckduckgo", "SerperSearch", "SerpApiSearch", "GoogleSearch", "SearxSearch", "BingSearch"]
Empty file.
88 changes: 88 additions & 0 deletions gpt_researcher/retrievers/bing/bing.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# Bing Search Retriever

# libraries
import os
import requests
import json


class BingSearch():
"""
Bing Search Retriever
"""
def __init__(self, query):
"""
Initializes the BingSearch object
Args:
query:
"""
self.query = query
self.api_key = self.get_api_key()

def get_api_key(self):
"""
Gets the Bing API key
Returns:
"""
try:
api_key = os.environ["BING_API_KEY"]
except:
raise Exception("Bing API key not found. Please set the BING_API_KEY environment variable.")
return api_key

def search(self, max_results=7):
"""
Searches the query
Returns:
"""
print("Searching with query {0}...".format(self.query))
"""Useful for general internet search queries using the Bing API."""


# Search the query
url = "https://api.bing.microsoft.com/v7.0/search"

headers = {
'Ocp-Apim-Subscription-Key': self.api_key,
'Content-Type': 'application/json'
}
params = {
"responseFilter" : "Webpages",
"q": self.query,
"count": max_results,
"setLang": "en-GB",
"textDecorations": False,
"textFormat": "HTML",
"safeSearch": "Strict"
}

resp = requests.get(url, headers=headers, params=params)

# Preprocess the results
if resp is None:
return
try:
search_results = json.loads(resp.text)
except Exception:
return
if search_results is None:
return

results = search_results["webPages"]["value"]
search_results = []

# Normalize the results to match the format of the other search APIs
for result in results:
# skip youtube results
if "youtube.com" in result["url"]:
continue
search_result = {
"title": result["name"],
"href": result["url"],
"body": result["snippet"],
}
search_results.append(search_result)

return search_results

0 comments on commit e10bc55

Please sign in to comment.