chore: fix code formatting

This commit is contained in:
Buns Enchantress
2026-02-03 05:50:36 -06:00
parent 66ab70190b
commit 6721f5b0b7
963 changed files with 35240 additions and 8588 deletions

View File

@@ -13,12 +13,20 @@ const targets = urls.length > 0 ? urls : DEFAULT_URLS;
async function runFetch(url: string, readability: boolean) {
if (!readability) {
throw new Error("Basic extraction removed. Set readability=true or enable Firecrawl.");
throw new Error(
"Basic extraction removed. Set readability=true or enable Firecrawl.",
);
}
const tool = createWebFetchTool({
config: {
tools: {
web: { fetch: { readability, cacheTtlMinutes: 0, firecrawl: { enabled: false } } },
web: {
fetch: {
readability,
cacheTtlMinutes: 0,
firecrawl: { enabled: false },
},
},
},
},
sandboxed: false,