You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/firecrawl/actions/crawl-url/crawl-url.mjs
+21-11Lines changed: 21 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ export default {
5
5
key: "firecrawl-crawl-url",
6
6
name: "Crawl URL",
7
7
description: "Crawls a given URL and returns the contents of sub-pages. [See the documentation](https://docs.firecrawl.dev/api-reference/endpoint/crawl-post)",
8
-
version: "1.0.3",
8
+
version: "1.1.0",
9
9
type: "action",
10
10
props: {
11
11
firecrawl,
@@ -15,6 +15,12 @@ export default {
15
15
"url",
16
16
],
17
17
},
18
+
prompt: {
19
+
type: "string",
20
+
label: "Prompt",
21
+
description: "A prompt to use to generate the crawler options (all the parameters below) from natural language. Explicitly set parameters will override the generated equivalents.",
22
+
optional: true,
23
+
},
18
24
excludePaths: {
19
25
type: "string[]",
20
26
label: "Exclude Paths",
@@ -27,16 +33,20 @@ export default {
27
33
description: "Similar to `Exclude Paths`, but if set, only the paths matching the specified patterns will be included",
28
34
optional: true,
29
35
},
30
-
maxDepth: {
36
+
maxDiscoveryDepth: {
31
37
type: "integer",
32
-
label: "Max Depth",
33
-
description: "Maximum depth to crawl relative to the entered URL",
38
+
label: "Max Discovery Depth",
39
+
description: "Maximum depth to crawl based on discovery order. The root site and sitemapped pages has a discovery depth of 0. For example, if you set it to 1, and you set sitemap: 'skip', you will only crawl the entered URL and all URLs that are linked on that page.",
34
40
optional: true,
35
41
},
36
-
ignoreSitemap: {
37
-
type: "boolean",
38
-
label: "Ignore Sitemap",
39
-
description: "Ignore the website sitemap when crawling",
42
+
sitemap: {
43
+
type: "string",
44
+
label: "Sitemap",
45
+
description: "Sitemap mode when crawling. If you set it to 'skip', the crawler will ignore the website sitemap and only crawl the entered URL and discover pages from there onwards.",
46
+
options: [
47
+
"skip",
48
+
"include",
49
+
],
40
50
optional: true,
41
51
},
42
52
ignoreQueryParameters: {
@@ -51,10 +61,10 @@ export default {
51
61
description: "Maximum number of pages to crawl",
52
62
optional: true,
53
63
},
54
-
allowBackwardLinks: {
64
+
crawlEntireDomain: {
55
65
type: "boolean",
56
-
label: "Allow Backward Links",
57
-
description: "Enables the crawler to navigate from a specific URL to previously linked pages",
66
+
label: "Crawl Entire Domain",
67
+
description: "Allows the crawler to follow internal links to sibling or parent URLs, not just child paths.",
Copy file name to clipboardExpand all lines: components/firecrawl/actions/get-crawl-status/get-crawl-status.mjs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ export default {
4
4
key: "firecrawl-get-crawl-status",
5
5
name: "Get Crawl Data",
6
6
description: "Obtains the status and data from a previous crawl operation. [See the documentation](https://docs.firecrawl.dev/api-reference/endpoint/crawl-get)",
Copy file name to clipboardExpand all lines: components/firecrawl/actions/get-extract-status/get-extract-status.mjs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ export default {
4
4
key: "firecrawl-get-extract-status",
5
5
name: "Get Extract Data",
6
6
description: "Obtains the status and data from a previous extract operation. [See the documentation](https://docs.firecrawl.dev/api-reference/endpoint/extract-get)",
Copy file name to clipboardExpand all lines: components/firecrawl/actions/map-url/map-url.mjs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ export default {
4
4
key: "firecrawl-map-url",
5
5
name: "Map URL",
6
6
description: "Maps a given URL using Firecrawl's Map endpoint. Optionally, you can provide a search term to filter the mapping. [See the documentation](https://docs.firecrawl.dev/features/map)",
0 commit comments