Spaces:
Runtime error
Runtime error
File size: 355 Bytes
58d33f0 |
1 2 3 4 5 6 7 8 9 10 |
"""Integration test for Serper.dev's Google Search API Wrapper."""
from langchain.utilities.google_serper import GoogleSerperAPIWrapper
def test_call() -> None:
"""Test that call gives the correct answer."""
search = GoogleSerperAPIWrapper()
output = search.run("What was Obama's first name?")
assert "Barack Hussein Obama II" in output
|