EmbeddingModelListResponse
Response containing available embedding models and their limits
Example Usage
typescript
import { EmbeddingModelListResponse } from "@meetkai/mka1/models/components";
let value: EmbeddingModelListResponse = {
data: [
{
id: "<id>",
provider: "<value>",
model: "Explorer",
limits: {
maxBatchSize: 2004.02,
maxInputTokens: 13.36,
maxInputLength: 3547.39,
},
},
],
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
object | "list" | ➖ | N/A |
data | components.EmbeddingModel[] | ✔️ | List of available embedding models with their limits |