Class JobServiceAsyncImpl
-
- All Implemented Interfaces:
-
com.openai.services.async.fineTuning.JobServiceAsync
public final class JobServiceAsyncImpl implements JobServiceAsync
-
-
Method Summary
Modifier and Type Method Description CheckpointServiceAsync
checkpoints()
CompletableFuture<FineTuningJob>
create(FineTuningJobCreateParams params, RequestOptions requestOptions)
Creates a fine-tuning job which begins the process of creating a new model from a given dataset. CompletableFuture<FineTuningJob>
retrieve(FineTuningJobRetrieveParams params, RequestOptions requestOptions)
Get info about a fine-tuning job. CompletableFuture<FineTuningJobListPageAsync>
list(FineTuningJobListParams params, RequestOptions requestOptions)
List your organization's fine-tuning jobs CompletableFuture<FineTuningJob>
cancel(FineTuningJobCancelParams params, RequestOptions requestOptions)
Immediately cancel a fine-tune job. CompletableFuture<FineTuningJobListEventsPageAsync>
listEvents(FineTuningJobListEventsParams params, RequestOptions requestOptions)
Get status updates for a fine-tuning job. -
-
Method Detail
-
checkpoints
CheckpointServiceAsync checkpoints()
-
create
CompletableFuture<FineTuningJob> create(FineTuningJobCreateParams params, RequestOptions requestOptions)
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.
-
retrieve
CompletableFuture<FineTuningJob> retrieve(FineTuningJobRetrieveParams params, RequestOptions requestOptions)
Get info about a fine-tuning job.
-
list
CompletableFuture<FineTuningJobListPageAsync> list(FineTuningJobListParams params, RequestOptions requestOptions)
List your organization's fine-tuning jobs
-
cancel
CompletableFuture<FineTuningJob> cancel(FineTuningJobCancelParams params, RequestOptions requestOptions)
Immediately cancel a fine-tune job.
-
listEvents
CompletableFuture<FineTuningJobListEventsPageAsync> listEvents(FineTuningJobListEventsParams params, RequestOptions requestOptions)
Get status updates for a fine-tuning job.
-
-
-
-