Documents loaders

Documents loaders #

https://python.langchain.com/docs/concepts/#document-loaders

这些类用于加载 Document 对象。LangChain 与各种数据源有数百种集成,可以从 Slack、Notion、Google Drive 等平台加载数据。

每个 DocumentLoader 都有其特定的参数,但它们都可以通过 .load 方法以相同的方式调用。以下是一个使用示例:

1from langchain_community.document_loaders.csv_loader import CSVLoader
2
3loader = CSVLoader(
4    ...  # <-- Integration specific parameters here
5)
6data = loader.load()

API Reference: CSVLoader

有关如何使用文档加载器的详细信息,请参阅此处的相关操作指南

© 2024 青蛙小白
comments powered by Disqus