Inline preview (snapshot)
get_inline_previewQuickly inspect a TOP's health with a small thumbnail, parent error sweep, and changed parameters in one call.
Instructions
Read-only one-shot inspection of a TOP: small base64 thumbnail (default 256² JPEG) + parent error sweep (BFS up parent_depth hops) + top-N changed-from-default parameters + cook stats. One call instead of chaining get_preview / get_td_node_errors / get_td_node_parameters when you just want to know 'is this op alive and healthy?'. Use get_preview/render_output for delivery-grade frames; this thumbnail is intentionally tiny + lossy.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Full path of the TOP to inspect. | |
| width | No | Thumbnail width in pixels (16–1024). Capped — this is for snapshots, not delivery. | |
| height | No | Thumbnail height in pixels (16–1024). | |
| format | No | Thumbnail encoding. JPEG keeps the payload small (~8–20 KB at 256²); PNG when alpha matters. | jpeg |
| jpeg_quality | No | JPEG quality 1–100. Ignored when format is png. | |
| parent_depth | No | How many upstream hops to also check for errors. 0 = just path; 1 = path + direct inputs. | |
| max_changed_params | No | Top-N parameters whose value differs from the operator default, ranked alphabetic. 0 = skip. | |
| include_full_params | No | If true, also include the full parameters object (mirrors get_td_node_parameters). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| type | Yes | ||
| family | No | ||
| alive | Yes | ||
| thumbnail | Yes | ||
| cook | Yes | ||
| errors | Yes | ||
| changed_params | Yes | ||
| parameters | No | ||
| warnings | No |