File size: 358 Bytes
4416e3b | 1 2 3 4 5 6 7 8 9 10 11 12 | try:
from langchain_core.documents import Document
print('from langchain_core.documents import Document')
except Exception as e:
print(f'core failed: {e}')
try:
from langchain.docstore.document import Document
print('from langchain.docstore.document import Document')
except Exception as e:
print(f'docstore failed: {e}')
|