addedInput schema / properties / paths_only
Added value: +{
+ "description": "Controls PNG delivery. Default false: base64-inline the rendered PNG so clients that cannot fetch a URL over HTTP (e.g. a sandboxed agent) can still see it. Set true to return only metadata (smaller response).",
+ "type": "boolean"
+}
addedInput schema / properties / view
Added value: +{
+ "description": "View to render. Default \"all\" = a labeled contact sheet of every canonical angle (iso/front/back/left/right/top) — best for judging the whole model. Pass a single view name for one large render of that angle.",
+ "enum": [
+ "all",
+ "iso",
+ "front",
+ "back",
+ "left",
+ "right",
+ "top"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / bytes
Added value: +{
+ "description": "PNG byte length (when ok).",
+ "type": "number"
+}
removedOutput schema / properties / capturedAt
Removed value: -{
- "description": "ISO timestamp the render was captured (when ok).",
- "type": "string"
-}
changedOutput schema / properties / error / description
Previous value: -"Error code when ok is false (e.g. \"no_render\")."New value: +"Error code when ok is false (e.g. \"empty_geometry\", \"mesh_failed\")."
addedOutput schema / properties / height
Added value: +{
+ "description": "Rendered image edge in px (when ok).",
+ "type": "number"
+}
addedOutput schema / properties / image_b64
Added value: +{
+ "description": "Base64-encoded PNG bytes, present when inlined (paths_only=false) and under the size cap.",
+ "type": "string"
+}
changedOutput schema / properties / ok / description
Previous value: -"Whether a render was found."New value: +"Whether a render was produced."
addedOutput schema / properties / truncated
Added value: +{
+ "description": "Set when inline was requested but the PNG exceeded the size cap.",
+ "type": "boolean"
+}
removedOutput schema / properties / url
Removed value: -{
- "description": "Signed URL for the latest rendered PNG (when ok).",
- "type": "string"
-}
addedOutput schema / properties / view
Added value: +{
+ "description": "The view that was rendered (when ok).",
+ "type": "string"
+}
addedOutput schema / properties / width
Added value: +{
+ "description": "Rendered image edge in px (when ok).",
+ "type": "number"
+}