langchain_community.document_loaders.org_mode
.UnstructuredOrgModeLoader¶
- class langchain_community.document_loaders.org_mode.UnstructuredOrgModeLoader(file_path: Union[str, Path], mode: str = 'single', **unstructured_kwargs: Any)[源码]¶
使用 Unstructured 加载 Org-Mode 文件。
您可以在两种模式之一中运行加载器:“single”(单文件)和“elements”(元素)。如果您使用“single”模式,文档将作为单个 langchain Document 对象返回。如果您使用“elements”模式,unstructured 库将文档分割为标题、叙述文本等元素。您可以在模式后传递额外的 unstructured kwargs 来应用不同的 unstructured 设置。
示例
from langchain_community.document_loaders import UnstructuredOrgModeLoader
- loader = UnstructuredOrgModeLoader(
“example.org”, mode=”elements”, strategy=”fast”,
) docs = loader.load()
参考
https://unstructured-io.github.io/unstructured/bricks.html#partition-org
- 参数
file_path (Union[str, Path]) – 要加载文件的路径。
mode (str) – 从文件加载模式的名称。默认为“single”。
**unstructured_kwargs (Any) – 要传递给 unstructured 的任何其他关键字参数。
方法
__init__
(file_path[, mode])- 参数 file_path
要加载文件的路径。
Documents 的懒加载器。
aload
()将数据加载到 Document 对象中。
加载文件。
load
()将数据加载到 Document 对象中。
load_and_split
([text_splitter])加载 Documents 并分割成块。
- __init__(file_path: Union[str, Path], mode: str = 'single', **unstructured_kwargs: Any)[source]¶
- 参数
file_path (Union[str, Path]) – 要加载文件的路径。
mode (str) – 从文件加载模式的名称。默认为“single”。
**unstructured_kwargs (Any) – 要传递给 unstructured 的任何其他关键字参数。
- load_and_split(text_splitter: Optional[TextSplitter] = None) List[Document] ¶
加载文档并将其分割成块。块以文档的形式返回。
不要覆盖此方法。应考虑将其弃用!
- 参数
text_splitter (可选[TextSplitter]) – 使用于分割文档的TextSplitter实例。默认为RecursiveCharacterTextSplitter。
- 返回
文档列表。
- 返回类型
列表[Document]