LanceDB · Example Payload

Lancedb Create Vector Index Example

Vector DatabaseMultimodalLance FormatLakehouseRAGAgent MemoryOpen SourceEmbeddingsFull-Text SearchHybrid SearchColumnar StorageArrowAI Infrastructure

Lancedb Create Vector Index Example is an example object payload from LanceDB, with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

$commentcolumnindexTypemetricnumPartitionsnumSubVectorsreplacename

Example Payload

Raw ↑
{
  "$comment": "POST /v1/table/{id}/create_index — build an IVF_PQ vector index on the embedding column",
  "column": "embedding",
  "indexType": "IVF_PQ",
  "metric": "cosine",
  "numPartitions": 256,
  "numSubVectors": 96,
  "replace": true,
  "name": "embedding_ivfpq_256_96"
}