mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-17 18:23:59 +00:00
Use data from all Google search results in SerpApi.com wrapper (#12770)
- **Description:** Use all Google search results data in SerpApi.com wrapper instead of the first one only - **Tag maintainer:** @hwchase17 _P.S. `libs/langchain/tests/integration_tests/utilities/test_serpapi.py` are not executed during the `make test`._
This commit is contained in:
parent
9214d8e6ed
commit
71d1a48b66
@ -197,18 +197,19 @@ class SerpAPIWrapper(BaseModel):
|
||||
and not value.startswith("http")
|
||||
):
|
||||
snippets.append(f"{title} {key}: {value}.")
|
||||
if "organic_results" in res.keys():
|
||||
first_organic_result = res["organic_results"][0]
|
||||
if "snippet" in first_organic_result.keys():
|
||||
snippets.append(first_organic_result["snippet"])
|
||||
elif "snippet_highlighted_words" in first_organic_result.keys():
|
||||
snippets.append(first_organic_result["snippet_highlighted_words"])
|
||||
elif "rich_snippet" in first_organic_result.keys():
|
||||
snippets.append(first_organic_result["rich_snippet"])
|
||||
elif "rich_snippet_table" in first_organic_result.keys():
|
||||
snippets.append(first_organic_result["rich_snippet_table"])
|
||||
elif "link" in first_organic_result.keys():
|
||||
snippets.append(first_organic_result["link"])
|
||||
|
||||
for organic_result in res.get("organic_results", []):
|
||||
if "snippet" in organic_result.keys():
|
||||
snippets.append(organic_result["snippet"])
|
||||
elif "snippet_highlighted_words" in organic_result.keys():
|
||||
snippets.append(organic_result["snippet_highlighted_words"])
|
||||
elif "rich_snippet" in organic_result.keys():
|
||||
snippets.append(organic_result["rich_snippet"])
|
||||
elif "rich_snippet_table" in organic_result.keys():
|
||||
snippets.append(organic_result["rich_snippet_table"])
|
||||
elif "link" in organic_result.keys():
|
||||
snippets.append(organic_result["link"])
|
||||
|
||||
if "buying_guide" in res.keys():
|
||||
snippets.append(res["buying_guide"])
|
||||
if "local_results" in res.keys() and "places" in res["local_results"].keys():
|
||||
|
Loading…
Reference in New Issue
Block a user