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