langchain/libs/partners/google-genai/tests/unit_tests/test_imports.py
William FH 405d111da6
[Partner] Add langchain-google-genai package (gemini) (#14621)
Add a new ChatGoogleGenerativeAI class in a `langchain-google-genai`
package.
Still todo: add a deprecation warning in PALM

---------

Co-authored-by: Erick Friis <erick@langchain.dev>
Co-authored-by: Leonid Kuligin <lkuligin@yandex.ru>
Co-authored-by: Bagatur <baskaryan@gmail.com>
2023-12-13 11:57:59 -08:00

10 lines
178 B
Python

from langchain_google_genai import __all__
EXPECTED_ALL = [
"ChatGoogleGenerativeAI",
]
def test_all_imports() -> None:
assert sorted(EXPECTED_ALL) == sorted(__all__)