LangGraph Platform is now part of LangSmith. Check out the Changelog for more information.
Python
from langchain_community.document_loaders import ConcurrentLoader
loader = ConcurrentLoader.from_filesystem("example_data/", glob="**/*.txt")
files = loader.load()
len(files)
2
Was this page helpful?