Files
langchain/tests/integration_tests/test_serpapi.py
2023-02-20 21:15:45 -08:00

10 lines
292 B
Python

"""Integration test for SerpAPI."""
from langchain.utilities 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"