Skip to content

Commit 4782daa

Browse files
committed
fix(docs): correct the Vanta mimeType and Firecrawl reachability wording
Vanta: the base64 branch (route.ts:100) reads params.mimeType as its only content-type source, so "not currently applied" was wrong. Say it applies there and is a fallback on the File branch. Firecrawl: scrapeOptions is declared in the block's inputs map with no subBlock, so it is reachable by a direct tool call. "Exposes no visible input" rather than "exposes no input".
1 parent caf86a2 commit 4782daa

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,11 @@ Search for information on the web using Firecrawl
167167
|`title` | string | Search result title from search engine |
168168
|`description` | string | Search result description/snippet from search engine |
169169
|`url` | string | URL of the search result |
170-
|`markdown` | string | Page content in markdown; returned only when scraping was requested, for which the Search operation exposes no input |
171-
|`html` | string | Processed HTML content; returned only when "html" is among the requested scrape formats, for which the Search operation exposes no input |
172-
|`rawHtml` | string | Unprocessed raw HTML; returned only when "rawHtml" is among the requested scrape formats, for which the Search operation exposes no input |
173-
|`links` | array | Links found on the page; returned only when "links" is among the requested scrape formats, for which the Search operation exposes no input |
174-
|`screenshot` | string | Screenshot URL \(expires after 24 hours\); returned only when "screenshot" is among the requested scrape formats, for which the Search operation exposes no input |
170+
|`markdown` | string | Page content in markdown; returned only when scraping was requested, for which the Search operation exposes no visible input |
171+
|`html` | string | Processed HTML content; returned only when "html" is among the requested scrape formats, for which the Search operation exposes no visible input |
172+
|`rawHtml` | string | Unprocessed raw HTML; returned only when "rawHtml" is among the requested scrape formats, for which the Search operation exposes no visible input |
173+
|`links` | array | Links found on the page; returned only when "links" is among the requested scrape formats, for which the Search operation exposes no visible input |
174+
|`screenshot` | string | Screenshot URL \(expires after 24 hours\); returned only when "screenshot" is among the requested scrape formats, for which the Search operation exposes no visible input |
175175
|`metadata` | object | Metadata about the search result page |
176176
|`title` | string | Page title |
177177
|`description` | string | Page meta description |

apps/docs/content/docs/en/integrations/vanta.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ Upload an evidence file to a Vanta document. Requires credentials with the vanta
331331
| `documentId` | string | Yes | Unique ID of the document to attach the file to |
332332
| `file` | file | No | The evidence file to upload |
333333
| `fileName` | string | No | Optional file name override |
334-
| `mimeType` | string | No | MIME type of the file \(e.g., application/pdf\). Not currently applied: a file uploaded through the File input always sends the content type resolved from storage. |
334+
| `mimeType` | string | No | MIME type of the file \(e.g., application/pdf\). Applied when uploading base64 content; for a file from the File input it is only a fallback, since the content type is normally resolved from storage. |
335335
| `description` | string | No | Description of the uploaded evidence \(e.g., "Q3 access review evidence"\) |
336336
| `effectiveAtDate` | string | No | ISO 8601 date indicating when the document is effective from |
337337

apps/sim/tools/firecrawl/types.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,32 +136,32 @@ export const SEARCH_RESULT_OUTPUT_PROPERTIES = {
136136
markdown: {
137137
type: 'string',
138138
description:
139-
'Page content in markdown; returned only when scraping was requested, for which the Search operation exposes no input',
139+
'Page content in markdown; returned only when scraping was requested, for which the Search operation exposes no visible input',
140140
optional: true,
141141
},
142142
html: {
143143
type: 'string',
144144
description:
145-
'Processed HTML content; returned only when "html" is among the requested scrape formats, for which the Search operation exposes no input',
145+
'Processed HTML content; returned only when "html" is among the requested scrape formats, for which the Search operation exposes no visible input',
146146
optional: true,
147147
},
148148
rawHtml: {
149149
type: 'string',
150150
description:
151-
'Unprocessed raw HTML; returned only when "rawHtml" is among the requested scrape formats, for which the Search operation exposes no input',
151+
'Unprocessed raw HTML; returned only when "rawHtml" is among the requested scrape formats, for which the Search operation exposes no visible input',
152152
optional: true,
153153
},
154154
links: {
155155
type: 'array',
156156
description:
157-
'Links found on the page; returned only when "links" is among the requested scrape formats, for which the Search operation exposes no input',
157+
'Links found on the page; returned only when "links" is among the requested scrape formats, for which the Search operation exposes no visible input',
158158
optional: true,
159159
items: { type: 'string', description: 'URL found on the page' },
160160
},
161161
screenshot: {
162162
type: 'string',
163163
description:
164-
'Screenshot URL (expires after 24 hours); returned only when "screenshot" is among the requested scrape formats, for which the Search operation exposes no input',
164+
'Screenshot URL (expires after 24 hours); returned only when "screenshot" is among the requested scrape formats, for which the Search operation exposes no visible input',
165165
optional: true,
166166
},
167167
metadata: SEARCH_METADATA_OUTPUT,

apps/sim/tools/generated/tool-metadata.ts

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

apps/sim/tools/generated/tool-outputs.ts

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

apps/sim/tools/vanta/upload_document_file.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export const vantaUploadDocumentFileTool: ToolConfig<
6464
required: false,
6565
visibility: 'user-or-llm',
6666
description:
67-
'MIME type of the file (e.g., application/pdf). Not currently applied: a file uploaded through the File input always sends the content type resolved from storage.',
67+
'MIME type of the file (e.g., application/pdf). Applied when uploading base64 content; for a file from the File input it is only a fallback, since the content type is normally resolved from storage.',
6868
},
6969
description: {
7070
type: 'string',

0 commit comments

Comments
 (0)