mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-13 14:50:00 +00:00
13 lines
220 B
Python
13 lines
220 B
Python
from langchain_ollama import __all__
|
|
|
|
EXPECTED_ALL = [
|
|
"OllamaLLM",
|
|
"ChatOllama",
|
|
"OllamaEmbeddings",
|
|
"__version__",
|
|
]
|
|
|
|
|
|
def test_all_imports() -> None:
|
|
assert sorted(EXPECTED_ALL) == sorted(__all__)
|