better explain how includePaths and excludePaths work

This commit is contained in:
rafaelsideguide 2024-10-11 13:52:18 -03:00
parent 5961eb6bbb
commit e57a8e9d45

View File

@ -341,14 +341,14 @@
"items": { "items": {
"type": "string" "type": "string"
}, },
"description": "URL patterns to exclude" "description": "Specifies URL patterns to exclude from the crawl by comparing website paths against the provided regex patterns. For example, if you set \"excludePaths\": [\"blog/*\"] for the base URL firecrawl.dev, any results matching that pattern will be excluded, such as https://www.firecrawl.dev/blog/firecrawl-launch-week-1-recap."
}, },
"includePaths": { "includePaths": {
"type": "array", "type": "array",
"items": { "items": {
"type": "string" "type": "string"
}, },
"description": "URL patterns to include" "description": "Specifies URL patterns to include in the crawl by comparing website paths against the provided regex patterns. Only the paths that match the specified patterns will be included in the response. For example, if you set \"includePaths\": [\"blog/*\"] for the base URL firecrawl.dev, only results matching that pattern will be included, such as https://www.firecrawl.dev/blog/firecrawl-launch-week-1-recap."
}, },
"maxDepth": { "maxDepth": {
"type": "integer", "type": "integer",