mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
7f42811e14
Replace this entire comment with: - **Description:** added support for new Google GenerativeAI models - **Twitter handle:** lkuligin --------- Co-authored-by: Erick Friis <erick@langchain.dev>
12 lines
240 B
Python
12 lines
240 B
Python
from langchain_google_genai import __all__
|
|
|
|
EXPECTED_ALL = [
|
|
"ChatGoogleGenerativeAI",
|
|
"GoogleGenerativeAIEmbeddings",
|
|
"GoogleGenerativeAI",
|
|
]
|
|
|
|
|
|
def test_all_imports() -> None:
|
|
assert sorted(EXPECTED_ALL) == sorted(__all__)
|