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
| Field | Type | Required | Description |
|---|---|---|---|
chat | boolean | ✔️ | Whether the model supports chat completions |
completion | boolean | ✔️ | Whether the model supports text completions |
embedding | boolean | ✔️ | Whether the model supports embeddings |
image | boolean | ✔️ | Whether the model supports image operations |
transcription | boolean | ✔️ | Whether the model supports audio transcription |
speech | boolean | ✔️ | Whether the model supports speech synthesis |