Skip to content

Capabilities

Object describing the capabilities of this custom model

Example Usage

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

let value: Capabilities = {
  chat: false,
  completion: true,
  embedding: false,
  image: true,
  transcription: false,
  speech: false,
};

Fields

FieldTypeRequiredDescription
chatboolean✔️Whether the model supports chat completions
completionboolean✔️Whether the model supports text completions
embeddingboolean✔️Whether the model supports embeddings
imageboolean✔️Whether the model supports image operations
transcriptionboolean✔️Whether the model supports audio transcription
speechboolean✔️Whether the model supports speech synthesis