CreateFineTuningJobRequest
Example Usage
typescript
import { CreateFineTuningJobRequest } from "@meetkai/mka1/models/components";
let value: CreateFineTuningJobRequest = {
model: "CX-9",
trainingFile: "<value>",
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
model | string | ✔️ | The base model to fine-tune |
trainingFile | string | ✔️ | File ID of the training data JSONL file |
validationFile | string | ➖ | File ID of the validation data JSONL file |
suffix | string | ➖ | Suffix appended to the fine-tuned model name |
seed | number | ➖ | Seed for reproducibility |
hyperparameters | components.Hyperparameters | ➖ | Deprecated: use method instead |
method | components.Method | ➖ | Fine-tuning method configuration |
integrations | components.IntegrationObject[] | ➖ | External integrations |
metadata | Record<string, string> | ➖ | Up to 16 key-value pairs |