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
fix(docs): correct output rows that cite inputs Sim does not send
mistral_parse: the PR removed the includeImageBase64 input row but left the
image_base64 output citing include_image_base64=true, so the page referenced
an input it no longer documents. includeImageBase64 is visibility: 'hidden'
with no subBlock, mapper or canonicalParamId, so it is annotated the same way
Pulse's html and figures were.
The sibling rows are a stronger defect: table_format, extract_header and
extract_footer appear nowhere in the repo - not as tool params, not in the
request body parser.ts builds - so tables/header/footer cited options Sim
never sends. Worded accordingly rather than as hidden inputs.
pulse structured_output cited 'if schema was provided', but there is no
schema or structuredOutput param in the tool, in pulseParseInputSchema, or in
the outgoing body, so the field is always null.
No output field is deleted - removing one changes the block's output schema
and could break saved workflow references.
| ↳ `image_base64`| string | Base64-encoded image data; returned only when the hidden includeImageBase64 input is enabled|
63
63
| ↳ `dimensions`| object | Page dimensions |
64
64
| ↳ `dpi`| number | Dots per inch |
65
65
| ↳ `height`| number | Page height in pixels |
66
66
| ↳ `width`| number | Page width in pixels |
67
-
| ↳ `tables`| array | Extracted tables as HTML/markdown\(when table_format is set\). Referenced via placeholders like \[tbl-0.html\]|
67
+
| ↳ `tables`| array | Extracted tables as HTML/markdown, referenced via placeholders like \[tbl-0.html\]. Sim sends no table-extraction option, so this is empty|
68
68
| ↳ `hyperlinks`| array | Array of URL strings detected in the page \(e.g., \["https://...", "mailto:..."\]\)|
description: 'Extracted tables as HTML/markdown (when table_format is set)',
61
+
description: 'Extracted tables as HTML/markdown, referenced via placeholders like [tbl-0.html]. Sim sends no table-extraction option, so this is empty',
0 commit comments