You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/libs/community/tests/unit_tests/utilities/test_tavily.py

8 lines
312 B
Python

from langchain_community.utilities.tavily_search import TavilySearchAPIWrapper
def test_api_wrapper_api_key_not_visible() -> None:
"""Test that an exception is raised if the API key is not present."""
wrapper = TavilySearchAPIWrapper(tavily_api_key="abcd123")
assert "abcd123" not in repr(wrapper)