College Confidential
这个例子介绍了如何使用 Cheerio 从大学机密网站加载数据。每页将创建一个文档。
安装
- npm
- Yarn
- pnpm
npm install @langchain/community @langchain/core cheerio
yarn add @langchain/community @langchain/core cheerio
pnpm add @langchain/community @langchain/core cheerio
用法
import { CollegeConfidentialLoader } from "@langchain/community/document_loaders/web/college_confidential";
const loader = new CollegeConfidentialLoader(
"https://www.collegeconfidential.com/colleges/brown-university/"
);
const docs = await loader.load();