mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
405d111da6
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>
10 lines
178 B
Python
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__)
|