cli[minor]: fix import path for two Astra DB classes in the migration json data (#21926)

This PR fixes two mistakes in the import paths from community for the
json data aiding the cli migration to 0.2.

It is intended as a quick follow-up to
https://github.com/langchain-ai/langchain/pull/21913 .

@nicoloboschi FYI
This commit is contained in:
Stefano Lottini 2024-05-20 18:25:10 +02:00 committed by GitHub
parent 30bca57aae
commit f2e75f9500
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,11 +12,11 @@
"langchain_astradb.AstraDBStore"
],
[
"langchain_community.cache.astradb.AstraDBCache",
"langchain_community.cache.AstraDBCache",
"langchain_astradb.AstraDBCache"
],
[
"langchain_community.cache.astradb.AstraDBSemanticCache",
"langchain_community.cache.AstraDBSemanticCache",
"langchain_astradb.AstraDBSemanticCache"
],
[
@ -27,4 +27,4 @@
"langchain_community.document_loaders.astradb.AstraDBLoader",
"langchain_astradb.AstraDBLoader"
]
]
]