Files
langchain/libs/partners/exa/tests/unit_tests/test_imports.py
Mason Daugherty 31eeb50ce0 chore: drop UP045 (#33362)
Python 3.9 EOL
2025-10-08 21:17:53 -04:00

17 lines
439 B
Python

"""Unit tests for imports in `langchain_exa`."""
from langchain_exa import __all__ # type: ignore[import-not-found, import-not-found]
EXPECTED_ALL = [
"ExaSearchResults",
"ExaSearchRetriever",
"HighlightsContentsOptions",
"TextContentsOptions",
"ExaFindSimilarResults",
]
def test_all_imports() -> None:
"""Test that all expected imports are in `__all__`."""
assert sorted(EXPECTED_ALL) == sorted(__all__)