langchain_community.document_loaders.psychic
.PsychicLoader¶
- class langchain_community.document_loaders.psychic.PsychicLoader(api_key: str, account_id: str, connector_id: Optional[str] = None)[source]¶
从 Psychic.dev 加载。
使用API密钥、连接器ID和账户ID进行初始化。
- 参数
api_key (str) - Psychic API密钥。
account_id (str) - Psychic账户ID。
connector_id (Optional[str]) - Psychic连接器ID。
方法
__init__
(api_key, account_id[, connector_id])使用API密钥、连接器ID和账户ID进行初始化。
Documents的懒加载器。
aload
()将数据加载到Document对象中。
Documents的懒加载器。
load
()将数据加载到Document对象中。
load_and_split
([text_splitter])加载Documents并将它们分割成块。
- __init__(api_key: str, account_id: str, connector_id: Optional[str] = None)[source]¶
使用API密钥、连接器ID和账户ID进行初始化。
- 参数
api_key (str) - Psychic API密钥。
account_id (str) - Psychic账户ID。
connector_id (Optional[str]) - Psychic连接器ID。
- load_and_split(text_splitter: Optional[TextSplitter] = None) List[Document] ¶
加载文档并将它们拆分为块。块以Document的形式返回。
不要重写此方法。应将其视为已弃用!
- 参数
text_splitter (可选[TextSplitter]) – 用于拆分文档的TextSplitter实例。默认为RecursiveCharacterTextSplitter。
- 返回
文档列表。
- 返回类型
列表[Document]