mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-14 15:16:21 +00:00
9 lines
285 B
Python
9 lines
285 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) # noqa: T201
|
|
assert not isinstance(res, str) # str means error for this tool\
|