Skip to content

ListIndicesResponse

Example Usage

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

let value: ListIndicesResponse = {
  indices: [
    {
      field: "embedding",
      indexType: "IVF_FLAT",
      config: {
        "distance_type": "cosine",
        "num_partitions": 128,
        "type": "IVF_FLAT",
      },
    },
    {
      field: "content",
      indexType: "FTS",
      config: {
        "type": "FTS",
      },
    },
  ],
};

Fields

FieldTypeRequiredDescription
indicescomponents.IndexInfo[]✔️N/A