langchain/tests/integration_tests/test_serpapi.py
2022-11-29 20:07:44 -08:00

10 lines
290 B
Python

"""Integration test for SerpAPI."""
from langchain.serpapi import SerpAPIWrapper
def test_call() -> None:
"""Test that call gives the correct answer."""
chain = SerpAPIWrapper()
output = chain.run("What was Obama's first name?")
assert output == "Barack Hussein Obama II"