跳至主要内容

Hacker News

此示例介绍了如何使用 Cheerio 从 Hacker News 网站加载数据。每个页面将创建一个文档。

设置

npm install @langchain/community @langchain/core cheerio

用法

import { HNLoader } from "@langchain/community/document_loaders/web/hn";

const loader = new HNLoader("https://news.ycombinator.com/item?id=34817881");

const docs = await loader.load();

此页面是否有帮助?


您也可以在 GitHub 上留下详细的反馈 GitHub.