UpdateCustomModelCapabilities
Object describing the capabilities of this custom model
Example Usage
typescript
import { UpdateCustomModelCapabilities } from "@meetkai/mka1/models/operations";
let value: UpdateCustomModelCapabilities = {
chat: false,
completion: false,
embedding: false,
image: false,
transcription: true,
speech: true,
};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 |