大学机密
本例说明了如何使用Cheerio从大学机密网站加载数据。每个页面将创建一个文档。
设置
- npm
- Yarn
- pnpm
npm install cheerio
yarn add cheerio
pnpm add cheerio
用法
import { CollegeConfidentialLoader } from "langchain/document_loaders/web/college_confidential";
const loader = new CollegeConfidentialLoader(
"https://www.collegeconfidential.com/colleges/brown-university/"
);
const docs = await loader.load();