Skip to content

EmbedRequest

Example Usage

typescript
import { EmbedRequest } from "@meetkai/mka1/models/operations";

let value: EmbedRequest = {
  embeddingsRequest: {
    input: "The quick brown fox jumps over the lazy dog.",
    model: "auto",
  },
};

Fields

FieldTypeRequiredDescriptionExample
xOnBehalfOfstringOptional external end-user identifier forwarded by the API gateway.
embeddingsRequestcomponents.EmbeddingsRequest✔️N/A{
"model": "auto",
"input": "The quick brown fox jumps over the lazy dog."
}