Qdrant · Schema

Image

WARN: Work-in-progress, unimplemented Image object for embedding. Requires inference infrastructure, unimplemented.

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
image object Image data: base64 encoded image or an URL
model string Name of the model used to generate the vector. List of available models depends on a provider.
options object Parameters for the model Values of the parameters are model-specific
View JSON Schema on GitHub

JSON Schema

qdrant-image-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Image",
  "title": "Image",
  "description": "WARN: Work-in-progress, unimplemented\n\nImage object for embedding. Requires inference infrastructure, unimplemented.",
  "type": "object",
  "required": [
    "image",
    "model"
  ],
  "properties": {
    "image": {
      "description": "Image data: base64 encoded image or an URL",
      "example": "https://example.com/image.jpg"
    },
    "model": {
      "description": "Name of the model used to generate the vector. List of available models depends on a provider.",
      "type": "string",
      "minLength": 1,
      "example": "Qdrant/clip-ViT-B-32-vision"
    },
    "options": {
      "description": "Parameters for the model Values of the parameters are model-specific",
      "type": "object",
      "additionalProperties": true,
      "nullable": true
    }
  }
}