CreateIndicesRequest
Example Usage
typescript
import { CreateIndicesRequest } from "@meetkai/mka1/models/components";
let value: CreateIndicesRequest = {
indices: [
{
field: "embedding",
config: {
type: "IVF_FLAT",
distanceType: "cosine",
numPartitions: 256,
maxIterations: 50,
sampleRate: 256,
},
},
],
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
indices | components.IndexRequest[] | ✔️ | N/A |