Interface JobServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface JobServiceAsync.WithRawResponse
A view of JobServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
checkpoints
abstract CheckpointServiceAsync.WithRawResponse checkpoints()
-
create
@MustBeClosed() CompletableFuture<HttpResponseFor<FineTuningJob>> create(JobCreateParams params)
Returns a raw HTTP response for
post /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.create.
-
create
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<FineTuningJob>> create(JobCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<FineTuningJob>> retrieve(JobRetrieveParams params)
Returns a raw HTTP response for
get /fine_tuning/jobs/{fine_tuning_job_id}
, but is otherwise the same as JobServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<FineTuningJob>> retrieve(JobRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<JobListPageAsync>> list()
Returns a raw HTTP response for
get /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.list.
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<JobListPageAsync>> list(JobListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<JobListPageAsync>> list(JobListParams params)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<JobListPageAsync>> list(RequestOptions requestOptions)
-
cancel
@MustBeClosed() CompletableFuture<HttpResponseFor<FineTuningJob>> cancel(JobCancelParams params)
Returns a raw HTTP response for
post /fine_tuning/jobs/{fine_tuning_job_id}/cancel
, but is otherwise the same as JobServiceAsync.cancel.
-
cancel
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<FineTuningJob>> cancel(JobCancelParams params, RequestOptions requestOptions)
-
listEvents
@MustBeClosed() CompletableFuture<HttpResponseFor<JobListEventsPageAsync>> listEvents(JobListEventsParams params)
Returns a raw HTTP response for
get /fine_tuning/jobs/{fine_tuning_job_id}/events
, but is otherwise the same as JobServiceAsync.listEvents.
-
listEvents
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<JobListEventsPageAsync>> listEvents(JobListEventsParams params, RequestOptions requestOptions)
-
-
-
-