mirror of
https://github.com/hwchase17/langchain
synced 2024-11-11 19:11:02 +00:00
17e886388b
Co-authored-by: Lance Martin <lance@langchain.dev>
10 lines
164 B
Python
10 lines
164 B
Python
from langchain_nomic import __all__
|
|
|
|
EXPECTED_ALL = [
|
|
"NomicEmbeddings",
|
|
]
|
|
|
|
|
|
def test_all_imports() -> None:
|
|
assert sorted(EXPECTED_ALL) == sorted(__all__)
|