LangGraph Platform is now part of LangSmith. Check out the LangSmith docs for more information.
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?