Pinecone · Schema

MultiModalContentTextBlockModel

Represents a text block in a multimodal context snippet.

Vector DatabasesAIEmbeddingsRAG

Properties

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

JSON Schema

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