6989a98d75
- Arkitektur: docs/auth/passwordless-architecture.md - Backend: iom/quixzoom-auth-service/ (FastAPI + Redis) - Webb: quixzoom-market-pages/se/login/ (QR-kod + polling) - App: iom/quixzoom-app/src/features/auth/ (push + deep links) Flöde: QR-kod → app-godkännande → webb-inloggad
137 lines
4.1 KiB
JavaScript
137 lines
4.1 KiB
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
import { APIResource } from "../../../core/resource.mjs";
|
|
import * as CheckpointsAPI from "./checkpoints.mjs";
|
|
import { Checkpoints, } from "./checkpoints.mjs";
|
|
import { CursorPage } from "../../../core/pagination.mjs";
|
|
import { path } from "../../../internal/utils/path.mjs";
|
|
/**
|
|
* Manage fine-tuning jobs to tailor a model to your specific training data.
|
|
*/
|
|
export class Jobs extends 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, __security: { bearerAuth: true } });
|
|
}
|
|
/**
|
|
* 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(path `/fine_tuning/jobs/${fineTuningJobID}`, {
|
|
...options,
|
|
__security: { bearerAuth: true },
|
|
});
|
|
}
|
|
/**
|
|
* 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', (CursorPage), {
|
|
query,
|
|
...options,
|
|
__security: { bearerAuth: true },
|
|
});
|
|
}
|
|
/**
|
|
* Immediately cancel a fine-tune job.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* const fineTuningJob = await client.fineTuning.jobs.cancel(
|
|
* 'ft-AF1WoRqd3aJAHsqc9NY7iL8F',
|
|
* );
|
|
* ```
|
|
*/
|
|
cancel(fineTuningJobID, options) {
|
|
return this._client.post(path `/fine_tuning/jobs/${fineTuningJobID}/cancel`, {
|
|
...options,
|
|
__security: { bearerAuth: true },
|
|
});
|
|
}
|
|
/**
|
|
* 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(path `/fine_tuning/jobs/${fineTuningJobID}/events`, (CursorPage), { query, ...options, __security: { bearerAuth: true } });
|
|
}
|
|
/**
|
|
* Pause a fine-tune job.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* const fineTuningJob = await client.fineTuning.jobs.pause(
|
|
* 'ft-AF1WoRqd3aJAHsqc9NY7iL8F',
|
|
* );
|
|
* ```
|
|
*/
|
|
pause(fineTuningJobID, options) {
|
|
return this._client.post(path `/fine_tuning/jobs/${fineTuningJobID}/pause`, {
|
|
...options,
|
|
__security: { bearerAuth: true },
|
|
});
|
|
}
|
|
/**
|
|
* Resume a fine-tune job.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* const fineTuningJob = await client.fineTuning.jobs.resume(
|
|
* 'ft-AF1WoRqd3aJAHsqc9NY7iL8F',
|
|
* );
|
|
* ```
|
|
*/
|
|
resume(fineTuningJobID, options) {
|
|
return this._client.post(path `/fine_tuning/jobs/${fineTuningJobID}/resume`, {
|
|
...options,
|
|
__security: { bearerAuth: true },
|
|
});
|
|
}
|
|
}
|
|
Jobs.Checkpoints = Checkpoints;
|
|
//# sourceMappingURL=jobs.mjs.map
|