EmbeddingModel
Information about an embedding model and its limits
Example Usage
typescript
import { EmbeddingModel } from "@meetkai/mka1/models/components";
let value: EmbeddingModel = {
id: "<id>",
provider: "<value>",
model: "Land Cruiser",
limits: {
maxBatchSize: 2004.02,
maxInputTokens: 13.36,
maxInputLength: 3547.39,
},
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
id | string | ✔️ | Qualified model identifier in provider:model format |
provider | string | ✔️ | Provider identifier (e.g., 'openai', 'google') |
model | string | ✔️ | Model identifier within the provider |
limits | components.EmbeddingModelLimits | ✔️ | Limits for the embedding model |