mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-01 09:04:03 +00:00
core[patch]: support js chat model namespaces (#26688)
This commit is contained in:
parent
c453b76579
commit
f7bb3640f1
@ -1031,4 +1031,19 @@ _JS_SERIALIZABLE_MAPPING: dict[tuple[str, ...], tuple[str, ...]] = {
|
||||
"chat_models",
|
||||
"ChatBedrock",
|
||||
),
|
||||
("langchain", "chat_models", "google_genai", "ChatGoogleGenerativeAI"): (
|
||||
"langchain_google_genai",
|
||||
"chat_models",
|
||||
"ChatGoogleGenerativeAI",
|
||||
),
|
||||
("langchain", "chat_models", "groq", "ChatGroq"): (
|
||||
"langchain_groq",
|
||||
"chat_models",
|
||||
"ChatGroq",
|
||||
),
|
||||
("langchain", "chat_models", "bedrock", "BedrockChat"): (
|
||||
"langchain_aws",
|
||||
"chat_models",
|
||||
"ChatBedrock",
|
||||
),
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user