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)

使用文件路径初始化。

alazy_load()

Documents 的懒加载器。

aload()

将这些数据加载到 Document 对象中。

lazy_load()

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]) –

async alazy_load() AsyncIterator[Document]

Documents 的懒加载器。

返回类型

AsyncIterator[Document]

async aload() List[Document]

将这些数据加载到 Document 对象中。

返回类型

List[Document]

lazy_load() Iterator[Document]

Documents 的懒加载器。

返回类型

Iterator[Document]

load() List[Document][source]

将这些数据加载到 Document 对象中。

返回类型

List[Document]

load_and_split(text_splitter: Optional[TextSplitter] = None) List[Document]

加载文档并将它们分割成块。块以文档的形式返回。

不要重写此方法。应考虑将其视为已弃用!

参数

text_splitter (Optional[TextSplitter]) – 要用于分割文档的TextSplitter实例。默认为RecursiveCharacterTextSplitter。

返回

文档列表。

返回类型

List[Document]

使用AirbyteJSONLoader的示例