Skip to content

CreateIndicesResponse

Example Usage

typescript
import { CreateIndicesResponse } from "@meetkai/mka1/models/components";

let value: CreateIndicesResponse = {
  message: "Successfully created 1 indices",
  indicesCreated: [
    {
      field: "embedding",
      indexType: "IVF_FLAT",
      config: {
        "distance_type": "cosine",
        "num_partitions": 128,
        "type": "IVF_FLAT",
      },
    },
  ],
};

Fields

FieldTypeRequiredDescription
messagestring✔️N/A
indicesCreatedcomponents.IndexInfo[]✔️N/A