From d3c36adaa7be8f736e27edca3d607311a8bab1ea Mon Sep 17 00:00:00 2001 From: rafaelsideguide <150964962+rafaelsideguide@users.noreply.github.com> Date: Mon, 29 Apr 2024 17:58:47 -0300 Subject: [PATCH 1/2] Update index.ts --- apps/api/src/scraper/WebScraper/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/api/src/scraper/WebScraper/index.ts b/apps/api/src/scraper/WebScraper/index.ts index 1904ef9..386dfb2 100644 --- a/apps/api/src/scraper/WebScraper/index.ts +++ b/apps/api/src/scraper/WebScraper/index.ts @@ -64,6 +64,7 @@ export class WebScraperDataProvider { useCaching: boolean = false, inProgress?: (progress: Progress) => void ): Promise { + if (this.urls[0].trim() === "") { throw new Error("Url is required"); } From 5ae05bda1ddb0f8f09cc1835cd78ebe982dc608c Mon Sep 17 00:00:00 2001 From: Eric Ciarla Date: Tue, 30 Apr 2024 16:05:33 -0400 Subject: [PATCH 2/2] Update contradiction-testing-using-llms.mdx --- tutorials/contradiction-testing-using-llms.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/contradiction-testing-using-llms.mdx b/tutorials/contradiction-testing-using-llms.mdx index e2a4d73..6a9590a 100644 --- a/tutorials/contradiction-testing-using-llms.mdx +++ b/tutorials/contradiction-testing-using-llms.mdx @@ -1,4 +1,4 @@ -# Build an agent that check your website for contradictions +# Build an agent that checks your website for contradictions Learn how to use Firecrawl and Claude to scrape your website's data and look for contradictions and inconsistencies in a few lines of code. When you are shipping fast, data is bound to get stale, with FireCrawl and LLMs you can make sure your public web data is always consistent! We will be using Opus's huge 200k context window and Firecrawl's parellization, making this process accurate and fast.