cli[minor]: add astradb in the cli migration to 0.2 (#21913)

astradb has a new partner package but the automatic migration cli tool
doesn't take care of migration astradb integrations
This commit is contained in:
Nicolò Boschi 2024-05-20 16:29:17 +02:00 committed by GitHub
parent 242eeb537f
commit dd00aac7ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,30 @@
[
[
"langchain_community.vectorstores.astradb.AstraDB",
"langchain_astradb.AstraDBVectorStore"
],
[
"langchain_community.storage.astradb.AstraDBByteStore",
"langchain_astradb.AstraDBByteStore"
],
[
"langchain_community.storage.astradb.AstraDBStore",
"langchain_astradb.AstraDBStore"
],
[
"langchain_community.cache.astradb.AstraDBCache",
"langchain_astradb.AstraDBCache"
],
[
"langchain_community.cache.astradb.AstraDBSemanticCache",
"langchain_astradb.AstraDBSemanticCache"
],
[
"langchain_community.chat_message_histories.astradb.AstraDBChatMessageHistory",
"langchain_astradb.AstraDBChatMessageHistory"
],
[
"langchain_community.document_loaders.astradb.AstraDBLoader",
"langchain_astradb.AstraDBLoader"
]
]

View File

@ -147,6 +147,7 @@ RULE_TO_PATHS = {
"ibm.json",
"openai.json",
"pinecone.json",
"astradb.json",
],
}