123 lines
3.9 KiB
JavaScript
123 lines
3.9 KiB
JavaScript
|
|
"use strict";
|
||
|
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
|
exports.Jobs = void 0;
|
||
|
|
const tslib_1 = require("../../../internal/tslib.js");
|
||
|
|
const resource_1 = require("../../../core/resource.js");
|
||
|
|
const CheckpointsAPI = tslib_1.__importStar(require("./checkpoints.js"));
|
||
|
|
const checkpoints_1 = require("./checkpoints.js");
|
||
|
|
const pagination_1 = require("../../../core/pagination.js");
|
||
|
|
const path_1 = require("../../../internal/utils/path.js");
|
||
|
|
class Jobs extends resource_1.APIResource {
|
||
|
|
constructor() {
|
||
|
|
super(...arguments);
|
||
|
|
this.checkpoints = new CheckpointsAPI.Checkpoints(this._client);
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Creates a fine-tuning job which begins the process of creating a new model from
|
||
|
|
* a given dataset.
|
||
|
|
*
|
||
|
|
* Response includes details of the enqueued job including job status and the name
|
||
|
|
* of the fine-tuned models once complete.
|
||
|
|
*
|
||
|
|
* [Learn more about fine-tuning](https://platform.openai.com/docs/guides/model-optimization)
|
||
|
|
*
|
||
|
|
* @example
|
||
|
|
* ```ts
|
||
|
|
* const fineTuningJob = await client.fineTuning.jobs.create({
|
||
|
|
* model: 'gpt-4o-mini',
|
||
|
|
* training_file: 'file-abc123',
|
||
|
|
* });
|
||
|
|
* ```
|
||
|
|
*/
|
||
|
|
create(body, options) {
|
||
|
|
return this._client.post('/fine_tuning/jobs', { body, ...options });
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Get info about a fine-tuning job.
|
||
|
|
*
|
||
|
|
* [Learn more about fine-tuning](https://platform.openai.com/docs/guides/model-optimization)
|
||
|
|
*
|
||
|
|
* @example
|
||
|
|
* ```ts
|
||
|
|
* const fineTuningJob = await client.fineTuning.jobs.retrieve(
|
||
|
|
* 'ft-AF1WoRqd3aJAHsqc9NY7iL8F',
|
||
|
|
* );
|
||
|
|
* ```
|
||
|
|
*/
|
||
|
|
retrieve(fineTuningJobID, options) {
|
||
|
|
return this._client.get((0, path_1.path) `/fine_tuning/jobs/${fineTuningJobID}`, options);
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* List your organization's fine-tuning jobs
|
||
|
|
*
|
||
|
|
* @example
|
||
|
|
* ```ts
|
||
|
|
* // Automatically fetches more pages as needed.
|
||
|
|
* for await (const fineTuningJob of client.fineTuning.jobs.list()) {
|
||
|
|
* // ...
|
||
|
|
* }
|
||
|
|
* ```
|
||
|
|
*/
|
||
|
|
list(query = {}, options) {
|
||
|
|
return this._client.getAPIList('/fine_tuning/jobs', (pagination_1.CursorPage), { query, ...options });
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Immediately cancel a fine-tune job.
|
||
|
|
*
|
||
|
|
* @example
|
||
|
|
* ```ts
|
||
|
|
* const fineTuningJob = await client.fineTuning.jobs.cancel(
|
||
|
|
* 'ft-AF1WoRqd3aJAHsqc9NY7iL8F',
|
||
|
|
* );
|
||
|
|
* ```
|
||
|
|
*/
|
||
|
|
cancel(fineTuningJobID, options) {
|
||
|
|
return this._client.post((0, path_1.path) `/fine_tuning/jobs/${fineTuningJobID}/cancel`, options);
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Get status updates for a fine-tuning job.
|
||
|
|
*
|
||
|
|
* @example
|
||
|
|
* ```ts
|
||
|
|
* // Automatically fetches more pages as needed.
|
||
|
|
* for await (const fineTuningJobEvent of client.fineTuning.jobs.listEvents(
|
||
|
|
* 'ft-AF1WoRqd3aJAHsqc9NY7iL8F',
|
||
|
|
* )) {
|
||
|
|
* // ...
|
||
|
|
* }
|
||
|
|
* ```
|
||
|
|
*/
|
||
|
|
listEvents(fineTuningJobID, query = {}, options) {
|
||
|
|
return this._client.getAPIList((0, path_1.path) `/fine_tuning/jobs/${fineTuningJobID}/events`, (pagination_1.CursorPage), { query, ...options });
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Pause a fine-tune job.
|
||
|
|
*
|
||
|
|
* @example
|
||
|
|
* ```ts
|
||
|
|
* const fineTuningJob = await client.fineTuning.jobs.pause(
|
||
|
|
* 'ft-AF1WoRqd3aJAHsqc9NY7iL8F',
|
||
|
|
* );
|
||
|
|
* ```
|
||
|
|
*/
|
||
|
|
pause(fineTuningJobID, options) {
|
||
|
|
return this._client.post((0, path_1.path) `/fine_tuning/jobs/${fineTuningJobID}/pause`, options);
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Resume a fine-tune job.
|
||
|
|
*
|
||
|
|
* @example
|
||
|
|
* ```ts
|
||
|
|
* const fineTuningJob = await client.fineTuning.jobs.resume(
|
||
|
|
* 'ft-AF1WoRqd3aJAHsqc9NY7iL8F',
|
||
|
|
* );
|
||
|
|
* ```
|
||
|
|
*/
|
||
|
|
resume(fineTuningJobID, options) {
|
||
|
|
return this._client.post((0, path_1.path) `/fine_tuning/jobs/${fineTuningJobID}/resume`, options);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
exports.Jobs = Jobs;
|
||
|
|
Jobs.Checkpoints = checkpoints_1.Checkpoints;
|
||
|
|
//# sourceMappingURL=jobs.js.map
|