Update index.mjs
This commit is contained in:
parent
93141df1d3
commit
fe59ffa0a3
1 changed files with 10 additions and 9 deletions
17
index.mjs
17
index.mjs
|
@ -117,17 +117,18 @@ function generateSearchTerm(hostname) {
|
||||||
const contexts = [];
|
const contexts = [];
|
||||||
|
|
||||||
async function siteCrawler(hostname) {
|
async function siteCrawler(hostname) {
|
||||||
const crawled = generateSearchTerm(hostname);
|
|
||||||
|
|
||||||
const compiledConvert = compile({ wordwrap: 130 });
|
|
||||||
|
|
||||||
const loader = new RecursiveUrlLoader(crawled, {
|
|
||||||
extractor: compiledConvert,
|
|
||||||
maxDepth: 6,
|
|
||||||
excludeDirs: ["https://search.sparksammy.com/", "https://search.sparksammy.com/search.php", "https://archive.org", "https://doubleclick.net", "https://paypal.com"],
|
|
||||||
});
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
const crawled = generateSearchTerm(hostname);
|
||||||
|
|
||||||
|
const compiledConvert = compile({ wordwrap: 130 });
|
||||||
|
|
||||||
|
const loader = new RecursiveUrlLoader(crawled, {
|
||||||
|
extractor: compiledConvert,
|
||||||
|
maxDepth: 6,
|
||||||
|
excludeDirs: ["https://search.sparksammy.com/", "https://search.sparksammy.com/search.php", "https://archive.org", "https://doubleclick.net", "https://paypal.com"],
|
||||||
|
});
|
||||||
const webContents = await loader.load();
|
const webContents = await loader.load();
|
||||||
webContents.forEach(content => contexts.push(content));
|
webContents.forEach(content => contexts.push(content));
|
||||||
return webContents;
|
return webContents;
|
||||||
|
|
Loading…
Reference in a new issue