PsychicLoader#

class langchain_community.document_loaders.psychic.PsychicLoader(api_key: str, account_id: str, connector_id: str | None = None)[source]#

Psychic.dev 加载。

使用API密钥、连接器ID和账户ID进行初始化。

Parameters:
  • api_key (str) – Psychic API 密钥。

  • account_id (str) – Psychic 账户 ID。

  • connector_id (str | None) – Psychic 连接器 ID。

方法

__init__(api_key, account_id[, connector_id])

使用API密钥、连接器ID和账户ID进行初始化。

alazy_load()

一个用于文档的懒加载器。

aload()

将数据加载到Document对象中。

lazy_load()

一个用于文档的懒加载器。

load()

将数据加载到Document对象中。

load_and_split([text_splitter])

加载文档并将其分割成块。

__init__(api_key: str, account_id: str, connector_id: str | None = None)[source]#

使用API密钥、连接器ID和账户ID进行初始化。

Parameters:
  • api_key (str) – Psychic API 密钥。

  • account_id (str) – Psychic 账户 ID。

  • connector_id (str | None) – Psychic 连接器 ID。

async alazy_load() AsyncIterator[Document]#

文档的懒加载器。

Return type:

AsyncIterator[Document]

async aload() list[Document]#

将数据加载到Document对象中。

Return type:

列表[Document]

lazy_load() Iterator[Document][source]#

文档的懒加载器。

Return type:

迭代器[文档]

load() list[Document]#

将数据加载到Document对象中。

Return type:

列表[Document]

load_and_split(text_splitter: TextSplitter | None = None) list[Document]#

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

不要重写此方法。它应该被视为已弃用!

Parameters:

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

Returns:

文档列表。

Return type:

列表[Document]

使用 PsychicLoader 的示例