Skip to content

Commit 6adffbd

Browse files
committed
updated docs
1 parent aaed338 commit 6adffbd

File tree

20 files changed

+33
-62
lines changed

20 files changed

+33
-62
lines changed

apps/docs/components/ui/icon-mapping.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
206206
microsoft_excel_v2: MicrosoftExcelIcon,
207207
microsoft_planner: MicrosoftPlannerIcon,
208208
microsoft_teams: MicrosoftTeamsIcon,
209-
mistral_parse_v2: MistralIcon,
209+
mistral_parse_v3: MistralIcon,
210210
mongodb: MongoDBIcon,
211211
mysql: MySQLIcon,
212212
neo4j: Neo4jIcon,

apps/docs/content/docs/de/tools/file.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Mehrere Dateien lesen und parsen
66
import { BlockInfoCard } from "@/components/ui/block-info-card"
77

88
<BlockInfoCard
9-
type="file"
9+
type="file_v3"
1010
color="#40916C"
1111
/>
1212

apps/docs/content/docs/de/tools/fireflies.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Interagieren Sie mit Fireflies.ai-Besprechungstranskripten und -auf
66
import { BlockInfoCard } from "@/components/ui/block-info-card"
77

88
<BlockInfoCard
9-
type="fireflies"
9+
type="fireflies_v2"
1010
color="#100730"
1111
/>
1212

apps/docs/content/docs/de/tools/mistral_parse.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Text aus PDF-Dokumenten extrahieren
66
import { BlockInfoCard } from "@/components/ui/block-info-card"
77

88
<BlockInfoCard
9-
type="mistral_parse"
9+
type="mistral_parse_v3"
1010
color="#000000"
1111
/>
1212

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

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,9 @@ Retrieve content from Confluence pages using the Confluence API.
5959
| `authorId` | string | Account ID of the page author |
6060
| `createdAt` | string | ISO 8601 timestamp when the page was created |
6161
| `url` | string | URL to view the page in Confluence |
62-
| `body` | object | Raw page body content in requested format\(s\) |
63-
|`storage` | object | Body in storage format \(Confluence markup\) |
64-
|`value` | string | The content value in the specified format |
65-
|`representation` | string | Content representation type |
66-
|`view` | object | Body in view format \(rendered HTML\) |
67-
|`value` | string | The content value in the specified format |
68-
|`representation` | string | Content representation type |
69-
|`atlas_doc_format` | object | Body in Atlassian Document Format \(ADF\) |
70-
|`value` | string | The content value in the specified format |
71-
|`representation` | string | Content representation type |
62+
| `body` | object | Raw page body content in storage format |
63+
|`value` | string | The content value in the specified format |
64+
|`representation` | string | Content representation type |
7265
| `version` | object | Page version information |
7366
|`number` | number | Version number |
7467
|`message` | string | Version message |

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

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Extract text from PDF documents
66
import { BlockInfoCard } from "@/components/ui/block-info-card"
77

88
<BlockInfoCard
9-
type="mistral_parse_v2"
9+
type="mistral_parse_v3"
1010
color="#000000"
1111
/>
1212

@@ -35,8 +35,6 @@ Integrate Mistral Parse into the workflow. Can extract text from uploaded PDF do
3535

3636
### `mistral_parser`
3737

38-
Parse PDF documents using Mistral OCR API
39-
4038
#### Input
4139

4240
| Parameter | Type | Required | Description |
@@ -56,27 +54,8 @@ Parse PDF documents using Mistral OCR API
5654
| Parameter | Type | Description |
5755
| --------- | ---- | ----------- |
5856
| `pages` | array | Array of page objects from Mistral OCR |
59-
|`index` | number | Page index \(zero-based\) |
60-
|`markdown` | string | Extracted markdown content |
61-
|`images` | array | Images extracted from this page with bounding boxes |
62-
|`id` | string | Image identifier \(e.g., img-0.jpeg\) |
63-
|`top_left_x` | number | Top-left X coordinate in pixels |
64-
|`top_left_y` | number | Top-left Y coordinate in pixels |
65-
|`bottom_right_x` | number | Bottom-right X coordinate in pixels |
66-
|`bottom_right_y` | number | Bottom-right Y coordinate in pixels |
67-
|`image_base64` | string | Base64-encoded image data \(when include_image_base64=true\) |
68-
|`dimensions` | object | Page dimensions |
69-
|`dpi` | number | Dots per inch |
70-
|`height` | number | Page height in pixels |
71-
|`width` | number | Page width in pixels |
72-
|`tables` | array | Extracted tables as HTML/markdown \(when table_format is set\). Referenced via placeholders like \[tbl-0.html\] |
73-
|`hyperlinks` | array | Array of URL strings detected in the page \(e.g., \["https://...", "mailto:..."\]\) |
74-
|`header` | string | Page header content \(when extract_header=true\) |
75-
|`footer` | string | Page footer content \(when extract_footer=true\) |
76-
| `model` | string | Mistral OCR model identifier \(e.g., mistral-ocr-latest\) |
77-
| `usage_info` | object | Usage and processing statistics |
78-
|`pages_processed` | number | Total number of pages processed |
79-
|`doc_size_bytes` | number | Document file size in bytes |
80-
| `document_annotation` | string | Structured annotation data as JSON string \(when applicable\) |
57+
| `model` | string | Mistral OCR model identifier |
58+
| `usage_info` | json | Usage statistics from the API |
59+
| `document_annotation` | string | Structured annotation data |
8160

8261

apps/docs/content/docs/es/tools/file.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Leer y analizar múltiples archivos
66
import { BlockInfoCard } from "@/components/ui/block-info-card"
77

88
<BlockInfoCard
9-
type="file"
9+
type="file_v3"
1010
color="#40916C"
1111
/>
1212

apps/docs/content/docs/es/tools/fireflies.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Interactúa con transcripciones y grabaciones de reuniones de Firef
66
import { BlockInfoCard } from "@/components/ui/block-info-card"
77

88
<BlockInfoCard
9-
type="fireflies"
9+
type="fireflies_v2"
1010
color="#100730"
1111
/>
1212

apps/docs/content/docs/es/tools/mistral_parse.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Extraer texto de documentos PDF
66
import { BlockInfoCard } from "@/components/ui/block-info-card"
77

88
<BlockInfoCard
9-
type="mistral_parse"
9+
type="mistral_parse_v3"
1010
color="#000000"
1111
/>
1212

apps/docs/content/docs/fr/tools/file.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Lire et analyser plusieurs fichiers
66
import { BlockInfoCard } from "@/components/ui/block-info-card"
77

88
<BlockInfoCard
9-
type="file"
9+
type="file_v3"
1010
color="#40916C"
1111
/>
1212

0 commit comments

Comments
 (0)