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
| Field | Type | Required | Description |
|---|---|---|---|
message | string | ✔️ | N/A |
indicesCreated | components.IndexInfo[] | ✔️ | N/A |