Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
本站翻译于2026年5月3日,请放心食用🎉🎉🎉
TypeScript
使用LangChain JavaScript与EPUB文件集成 - 文档加载器。
splitChapters
false
npm install @langchain/community @langchain/core epub2 html-to-text
import { EPubLoader } from "@langchain/community/document_loaders/fs/epub"; const loader = new EPubLoader("src/document_loaders/example_data/example.epub"); const docs = await loader.load();
import { EPubLoader } from "@langchain/community/document_loaders/fs/epub"; const loader = new EPubLoader( "src/document_loaders/example_data/example.epub", { splitChapters: false, } ); const docs = await loader.load();