Pinecone · Schema

MultiModalContentImageBlockModel

Represents an image block in a multimodal context snippet.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
type string The type of multimodal content block.
caption string
image object
View JSON Schema on GitHub

JSON Schema

pinecone-multimodalcontentimageblockmodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MultiModalContentImageBlockModel",
  "title": "MultiModalContentImageBlockModel",
  "description": "Represents an image block in a multimodal context snippet.",
  "type": "object",
  "properties": {
    "type": {
      "description": "The type of multimodal content block.",
      "type": "string"
    },
    "caption": {
      "type": "string"
    },
    "image": {
      "$ref": "#/components/schemas/ImageModel"
    }
  },
  "required": [
    "type",
    "caption"
  ]
}