Skip to content

Commit 5bb89f4

Browse files
committed
chore(firecrawl): regenerate docs and integrations data for parse
1 parent a9cbb3a commit 5bb89f4

3 files changed

Lines changed: 49 additions & 3 deletions

File tree

apps/docs/content/docs/en/tools/firecrawl.mdx

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,4 +234,48 @@ Autonomous web data extraction agent. Searches and gathers information based on
234234
| `expiresAt` | string | Timestamp when the results expire \(24 hours\) |
235235
| `sources` | object | Array of source URLs used by the agent |
236236

237+
### `firecrawl_parse`
238+
239+
Parse uploaded documents (PDF, DOCX, HTML, etc.) into clean markdown using Firecrawl. Supports .html, .htm, .pdf, .docx, .doc, .odt, .rtf, .xlsx, .xls.
240+
241+
#### Input
242+
243+
| Parameter | Type | Required | Description |
244+
| --------- | ---- | -------- | ----------- |
245+
| `file` | file | Yes | Document file to be parsed |
246+
| `formats` | array | No | Output formats to return \(e.g., \["markdown"\]\). Defaults to markdown. |
247+
| `onlyMainContent` | boolean | No | Exclude headers, navs, footers. Defaults to true. |
248+
| `includeTags` | array | No | HTML tags to include |
249+
| `excludeTags` | array | No | HTML tags to exclude |
250+
| `timeout` | number | No | Timeout in milliseconds \(max 300000\). Defaults to 30000. |
251+
| `parsers` | array | No | Parser configuration \(e.g., \[\{ "type": "pdf" \}\]\) |
252+
| `removeBase64Images` | boolean | No | Remove base64 images, keep alt text. Defaults to true. |
253+
| `blockAds` | boolean | No | Block ads and popups. Defaults to true. |
254+
| `proxy` | string | No | Proxy mode: "basic" or "auto" |
255+
| `zeroDataRetention` | boolean | No | Enable zero data retention. Defaults to false. |
256+
| `apiKey` | string | Yes | Firecrawl API key |
257+
| `rateLimit` | string | No | No description |
258+
259+
#### Output
260+
261+
| Parameter | Type | Description |
262+
| --------- | ---- | ----------- |
263+
| `markdown` | string | Parsed document content in markdown format |
264+
| `summary` | string | Generated summary of the document |
265+
| `html` | string | Processed HTML content |
266+
| `rawHtml` | string | Unprocessed raw HTML content |
267+
| `screenshot` | string | Screenshot URL or base64 \(when requested\) |
268+
| `links` | array | URLs discovered in the document |
269+
| `metadata` | object | Document metadata |
270+
|`title` | string | Document title |
271+
|`description` | string | Document description |
272+
|`language` | string | Document language code |
273+
|`sourceURL` | string | Source URL |
274+
|`url` | string | Final URL |
275+
|`keywords` | string | Document keywords |
276+
|`statusCode` | number | HTTP status code |
277+
|`contentType` | string | Document content type |
278+
|`error` | string | Error message if parse failed |
279+
| `warning` | string | Warning message from the parse operation |
280+
237281

apps/docs/content/docs/en/tools/notion.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,6 @@ Create a new database in Notion with custom properties
256256

257257
### `notion_add_database_row`
258258

259-
Add a new row to a Notion database with specified properties
260-
261259
#### Input
262260

263261
| Parameter | Type | Required | Description |

apps/sim/app/(landing)/integrations/data/integrations.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4020,9 +4020,13 @@
40204020
{
40214021
"name": "Agent",
40224022
"description": "Autonomous web data extraction agent. Searches and gathers information based on natural language prompts without requiring specific URLs."
4023+
},
4024+
{
4025+
"name": "Parse Document",
4026+
"description": "Parse uploaded documents (PDF, DOCX, HTML, etc.) into clean markdown using Firecrawl. Supports .html, .htm, .pdf, .docx, .doc, .odt, .rtf, .xlsx, .xls."
40234027
}
40244028
],
4025-
"operationCount": 6,
4029+
"operationCount": 7,
40264030
"triggers": [],
40274031
"triggerCount": 0,
40284032
"authType": "api-key",

0 commit comments

Comments
 (0)