Skip to content

Commit

Permalink
core[patch]: support js chat model namespaces (langchain-ai#26688)
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan authored Sep 19, 2024
1 parent c453b76 commit f7bb364
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions libs/core/langchain_core/load/mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -1031,4 +1031,19 @@
"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",
),
}

0 comments on commit f7bb364

Please sign in to comment.