Qdrant · Schema

InferenceObject

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

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
object object Arbitrary data, used as input for the embedding model. Used if the model requires more than one input or a custom input.
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-inferenceobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InferenceObject",
  "title": "InferenceObject",
  "description": "WARN: Work-in-progress, unimplemented\n\nCustom object for embedding. Requires inference infrastructure, unimplemented.",
  "type": "object",
  "required": [
    "model",
    "object"
  ],
  "properties": {
    "object": {
      "description": "Arbitrary data, used as input for the embedding model. Used if the model requires more than one input or a custom input."
    },
    "model": {
      "description": "Name of the model used to generate the vector. List of available models depends on a provider.",
      "type": "string",
      "minLength": 1,
      "example": "jinaai/jina-embeddings-v2-base-en"
    },
    "options": {
      "description": "Parameters for the model Values of the parameters are model-specific",
      "type": "object",
      "additionalProperties": true,
      "nullable": true
    }
  }
}