Skip to content
Developer Preview

ModelVisibleContent

Rich content the model saw beyond text: metadata only — fetch bytes via item/readOutput when an outputRef exists.

  • height
  • mediaType
  • path
  • sourceToolName
  • type
  • width
Source

schema/msp/experimental/msp.schema.json#/types/ModelVisibleContent

{
"description": "Rich content the model saw beyond text: metadata only — fetch bytes via\n`item/readOutput` when an `outputRef` exists.",
"properties": {
"height": {
"description": "Pixel height, when known.",
"type": "integer"
},
"mediaType": {
"description": "The content media type.",
"type": "string"
},
"path": {
"description": "The recorded content path.",
"type": "string"
},
"sourceToolName": {
"description": "The tool that produced the content.",
"type": "string"
},
"type": {
"description": "Content type, `\"image\"` in v1 (free string, grows with the durable\nvocabulary).",
"type": "string"
},
"width": {
"description": "Pixel width, when known.",
"type": "integer"
}
},
"required": [
"mediaType",
"path",
"sourceToolName",
"type"
],
"type": "object"
}