From 3b5f71c1e81f47075d3d11ee7506be0316ce0a57 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Wed, 8 May 2024 17:46:35 -0700 Subject: [PATCH] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 205ff3f..7368b08 100644 --- a/README.md +++ b/README.md @@ -379,9 +379,11 @@ const schema = z.object({ .length(5) .describe("Top 5 stories on Hacker News"), }); + const scrapeResult = await app.scrapeUrl("https://firecrawl.dev", { extractorOptions: { extractionSchema: schema }, }); + console.log(scrapeResult.data["llm_extraction"]); ```