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"]); ```