langchain_community.document_loaders.ifixit.IFixitLoader

class langchain_community.document_loaders.ifixit.IFixitLoader(web_path: str)[source]

加载iFixit维修指南、设备维基和答案。

iFixit是全球最大的、开放的维修社区。该网站包含近10万份维修手册,4.2万个设备的20万个问题和答案,所有数据均获CC-BY许可。

此加载器将允许您使用iFixit的开放API和Web爬取从iFixit设备下载维修指南、Q&A和维基文本。

使用Web路径初始化。

方法

__init__(web_path)

使用Web路径初始化。

alazy_load()

Document的懒加载器。

aload()

将数据加载到Document对象中。

lazy_load()

Document的懒加载器。

load()

将数据加载到Document对象中。

load_and_split([text_splitter])

加载文档并分割成块。

load_device([url_override, include_guides])

加载设备

load_guide([url_override])

加载指南

load_questions_and_answers([url_override])

加载问题答案列表。

load_suggestions([query, doc_type])

加载建议。

参数

web_path (str) –

__init__(web_path: str)[source]

使用Web路径初始化。

参数

web_path (str) –

async alazy_load() AsyncIterator[Document]

Document的懒加载器。

返回类型

AsyncIterator[Document]

async aload() List[Document]

将数据加载到Document对象中。

返回类型

列表[Document]

lazy_load() 迭代器[Document]

Document的懒加载器。

返回类型

迭代器[Document]

load() 列表[Document][源代码]

将数据加载到Document对象中。

返回类型

列表[Document]

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

加载文档并将它们拆分成块。块作为Document返回。

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

参数

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

返回:

文档列表。

返回类型

列表[Document]

load_device(url_override: Optional[str] = None, include_guides: bool = True) List[Document][source]

加载设备

参数
  • url_override (Optional[str]) – 覆盖默认URL的URL。

  • include_guides (bool) – 是否包含与设备链接的指南。默认为True。

返回类型

列表[Document]

返回:

load_guide(url_override: Optional[str] = None) List[Document][source]

加载指南

参数

url_override (Optional[str]) – 覆盖默认URL的URL。

返回类型

列表[Document]

返回:List[Document]

load_questions_and_answers(url_override: Optional[str] = None) List[Document][source]

加载问题答案列表。

参数

url_override (Optional[str]) – 覆盖默认URL的URL。

返回类型

列表[Document]

返回:List[Document]

static load_suggestions(query: str = '', doc_type: str = 'all') List[Document][source]

加载建议。

参数
  • query (str) – 查询字符串

  • doc_type (str) – 要搜索的文档类型。可以是以下之一:“all”, “device”, “guide”, “teardown”, “answer”, “wiki”。

返回类型

列表[Document]

返回:

使用 IFixitLoader 的示例