Spaces:
Sleeping
Sleeping
File size: 316 Bytes
cfd3735 |
1 2 3 4 5 6 7 8 9 10 |
"""Integration test for Wolfram Alpha API Wrapper."""
from langchain.utilities.wolfram_alpha import WolframAlphaAPIWrapper
def test_call() -> None:
"""Test that call gives the correct answer."""
search = WolframAlphaAPIWrapper()
output = search.run("what is 2x+18=x+5?")
assert "x = -13" in output
|