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
'Extract text and structure from PDF documents using Mistral\'s OCR API. Enter a URL to a PDF document, configure processing options, and get the content in your preferred format.',
11
+
category: 'tools',
12
+
bgColor: '#000000',
13
+
icon: MistralIcon,
14
+
subBlocks: [
15
+
{
16
+
id: 'filePath',
17
+
title: 'PDF Document URL',
18
+
type: 'short-input',
19
+
layout: 'full',
20
+
placeholder: 'Enter full URL to a PDF document (https://example.com/document.pdf)',
21
+
},
22
+
{
23
+
id: 'resultType',
24
+
title: 'Output Format',
25
+
type: 'dropdown',
26
+
layout: 'full',
27
+
options: [
28
+
{id: 'markdown',label: 'Markdown (Formatted)'},
29
+
{id: 'text',label: 'Plain Text'},
30
+
{id: 'json',label: 'JSON (Raw)'}
31
+
],
32
+
},
33
+
{
34
+
id: 'pages',
35
+
title: 'Specific Pages',
36
+
type: 'short-input',
37
+
layout: 'full',
38
+
placeholder: 'e.g. 0,1,2 (leave empty for all pages)',
39
+
},
40
+
/*
41
+
* Image-related parameters - temporarily disabled
42
+
* Uncomment if PDF image extraction is needed
43
+
*
44
+
{
45
+
id: 'includeImageBase64',
46
+
title: 'Include PDF Images',
47
+
type: 'switch',
48
+
layout: 'half',
49
+
},
50
+
{
51
+
id: 'imageLimit',
52
+
title: 'Max Images',
53
+
type: 'short-input',
54
+
layout: 'half',
55
+
placeholder: 'Maximum number of images to extract',
0 commit comments