Qdrant · Schema

VectorParamsDiff

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
hnsw_config object Update params for HNSW index. If empty object - it will be unset.
quantization_config object Update params for quantization. If none - it is left unchanged.
on_disk boolean If true, vectors are served from disk, improving RAM usage at the cost of latency
View JSON Schema on GitHub

JSON Schema

qdrant-vectorparamsdiff-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VectorParamsDiff",
  "title": "VectorParamsDiff",
  "type": "object",
  "properties": {
    "hnsw_config": {
      "description": "Update params for HNSW index. If empty object - it will be unset.",
      "anyOf": [
        {
          "$ref": "#/components/schemas/HnswConfigDiff"
        },
        {
          "nullable": true
        }
      ]
    },
    "quantization_config": {
      "description": "Update params for quantization. If none - it is left unchanged.",
      "anyOf": [
        {
          "$ref": "#/components/schemas/QuantizationConfigDiff"
        },
        {
          "nullable": true
        }
      ]
    },
    "on_disk": {
      "description": "If true, vectors are served from disk, improving RAM usage at the cost of latency",
      "type": "boolean",
      "nullable": true
    }
  }
}