0

Update index.ts

This commit is contained in:
Eric Ciarla 2024-06-13 17:17:44 -04:00
parent 32e814bedc
commit 65d63bae45

View File

@ -163,9 +163,12 @@ export class WebScraperDataProvider {
inProgress?: (progress: Progress) => void
): Promise<Document[]> {
const baseURLDepth = new URL(this.urls[0]).pathname.split('/').length - 1;
const baseURLDepth = new URL(this.urls[0]).pathname.split('/').length - 2;
const adjustedMaxDepth = this.maxCrawledDepth + baseURLDepth;
const crawler = new WebCrawler({
initialUrl: this.urls[0],
includes: this.includes,