class CollegeConfidentialLoaderA method that loads the text file or blob and returns a promise that
Fetches the web document from the webPath and loads it using Cheerio.
A static method that imports the readFile function from the
Fetches web documents from the given array of URLs and loads them using Cheerio.
const loader = new CollegeConfidentialLoader("https:exampleurl.com");
const docs = await loader.load();
console.log({ docs });The async caller should be used by subclasses to make any async calls, which will thus benefit from the concurrency and retry logic.
Timeout for this call in milliseconds.
A document loader specifically designed for loading documents from the College Confidential website. It extends the CheerioWebBaseLoader.