Interface JobService
-
- All Implemented Interfaces:
public interface JobService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
JobService.WithRawResponse
A view of JobService that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract JobService.WithRawResponse
withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method. abstract CheckpointService
checkpoints()
FineTuningJob
create(JobCreateParams params)
Creates a fine-tuning job which begins the process of creating a new model from a given dataset. abstract FineTuningJob
create(JobCreateParams params, RequestOptions requestOptions)
FineTuningJob
retrieve(JobRetrieveParams params)
Get info about a fine-tuning job. abstract FineTuningJob
retrieve(JobRetrieveParams params, RequestOptions requestOptions)
JobListPage
list()
List your organization's fine-tuning jobs abstract JobListPage
list(JobListParams params, RequestOptions requestOptions)
JobListPage
list(JobListParams params)
JobListPage
list(RequestOptions requestOptions)
FineTuningJob
cancel(JobCancelParams params)
Immediately cancel a fine-tune job. abstract FineTuningJob
cancel(JobCancelParams params, RequestOptions requestOptions)
JobListEventsPage
listEvents(JobListEventsParams params)
Get status updates for a fine-tuning job. abstract JobListEventsPage
listEvents(JobListEventsParams params, RequestOptions requestOptions)
-
-
Method Detail
-
withRawResponse
abstract JobService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
checkpoints
abstract CheckpointService checkpoints()
-
create
FineTuningJob create(JobCreateParams 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.
-
create
abstract FineTuningJob create(JobCreateParams params, RequestOptions requestOptions)
-
retrieve
FineTuningJob retrieve(JobRetrieveParams params)
Get info about a fine-tuning job.
-
retrieve
abstract FineTuningJob retrieve(JobRetrieveParams params, RequestOptions requestOptions)
-
list
JobListPage list()
List your organization's fine-tuning jobs
-
list
abstract JobListPage list(JobListParams params, RequestOptions requestOptions)
-
list
JobListPage list(JobListParams params)
-
list
JobListPage list(RequestOptions requestOptions)
-
cancel
FineTuningJob cancel(JobCancelParams params)
Immediately cancel a fine-tune job.
-
cancel
abstract FineTuningJob cancel(JobCancelParams params, RequestOptions requestOptions)
-
listEvents
JobListEventsPage listEvents(JobListEventsParams params)
Get status updates for a fine-tuning job.
-
listEvents
abstract JobListEventsPage listEvents(JobListEventsParams params, RequestOptions requestOptions)
-
-
-
-