langchain_community.document_loaders.airbyte_json
.AirbyteJSONLoader¶
- class langchain_community.document_loaders.airbyte_json.AirbyteJSONLoader(file_path: Union[str, Path])[source]¶
加载本地 Airbyte json 文件。
使用文件路径初始化。这应该以‘/tmp/airbyte_local/’开始。
属性
file_path
包含 json 文件的目录路径。
方法
__init__
(file_path)使用文件路径初始化。
Documents 的懒加载器。
aload
()将这些数据加载到 Document 对象中。
Documents 的懒加载器。
load
()将这些数据加载到 Document 对象中。
load_and_split
([text_splitter])加载 Documents 并将其分割成块。
- 参数
file_path(《em>Union[str, Path]) –
- __init__(file_path: Union[str, Path])[source]¶
使用文件路径初始化。这应该以‘/tmp/airbyte_local/’开始。
- 参数
file_path(《em>Union[str, Path]) –
- load_and_split(text_splitter: Optional[TextSplitter] = None) List[Document] ¶
加载文档并将它们分割成块。块以文档的形式返回。
不要重写此方法。应考虑将其视为已弃用!
- 参数
text_splitter (Optional[TextSplitter]) – 要用于分割文档的TextSplitter实例。默认为RecursiveCharacterTextSplitter。
- 返回
文档列表。
- 返回类型
List[Document]