Our new LangChain Academy course on Deep Agents is now live! Enroll for free.
OSS (v1-alpha)
LangChain and LangGraph
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?