Skip to content

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

FieldTypeRequiredDescription
object"list"N/A
datacomponents.EmbeddingModel[]✔️List of available embedding models with their limits