From d8150c61714cfd320190c08263ae4722e38b95ad Mon Sep 17 00:00:00 2001 From: rafaelmmiller <150964962+rafaelsideguide@users.noreply.github.com> Date: Mon, 16 Dec 2024 11:46:56 -0300 Subject: [PATCH] added type to reqs example --- apps/api/requests.http | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/api/requests.http b/apps/api/requests.http index 0e3b9206..5d99bce9 100644 --- a/apps/api/requests.http +++ b/apps/api/requests.http @@ -19,7 +19,7 @@ Authorization: Bearer {{$dotenv TEST_API_KEY}} content-type: application/json { - "url": "firecrawl.dev" + "url": "v" } ### Check Crawl Status @@ -70,8 +70,8 @@ content-type: application/json "urls": ["firecrawl.dev"], "prompt": "What is the title, description and main product of the page?", "schema": { - "title": "string", - "description": "string", - "mainProduct": "string" + "title": { "type": "string" }, + "description": { "type": "string" }, + "mainProduct": { "type": "string" } } } \ No newline at end of file