mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
9 lines
271 B
Python
9 lines
271 B
Python
|
from langchain_exa import ExaSearchResults
|
||
|
|
||
|
|
||
|
def test_search_tool() -> None:
|
||
|
tool = ExaSearchResults()
|
||
|
res = tool.invoke({"query": "best time to visit japan", "num_results": 5})
|
||
|
print(res)
|
||
|
assert not isinstance(res, str) # str means error for this tool\
|