mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-16 16:11:02 +00:00
8 lines
171 B
Python
8 lines
171 B
Python
from langchain_ibm import __all__
|
|
|
|
EXPECTED_ALL = ["WatsonxLLM", "WatsonxEmbeddings"]
|
|
|
|
|
|
def test_all_imports() -> None:
|
|
assert sorted(EXPECTED_ALL) == sorted(__all__)
|