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
Modifier and Type Method Description abstract CheckpointServiceAsync.WithRawResponse
checkpoints()
abstract CompletableFuture<HttpResponseFor<FineTuningJob>>
create(FineTuningJobCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.create.abstract CompletableFuture<HttpResponseFor<FineTuningJob>>
create(FineTuningJobCreateParams params)
Returns a raw HTTP response for post /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.create.abstract CompletableFuture<HttpResponseFor<FineTuningJob>>
retrieve(FineTuningJobRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /fine_tuning/jobs/{fine_tuning_job_id}
, but is otherwise the same as JobServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<FineTuningJob>>
retrieve(FineTuningJobRetrieveParams params)
Returns a raw HTTP response for get /fine_tuning/jobs/{fine_tuning_job_id}
, but is otherwise the same as JobServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<FineTuningJobListPageAsync>>
list(FineTuningJobListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.list.abstract CompletableFuture<HttpResponseFor<FineTuningJobListPageAsync>>
list(FineTuningJobListParams params)
Returns a raw HTTP response for get /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.list.abstract CompletableFuture<HttpResponseFor<FineTuningJobListPageAsync>>
list()
Returns a raw HTTP response for get /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.list.CompletableFuture<HttpResponseFor<FineTuningJobListPageAsync>>
list(RequestOptions requestOptions)
Returns a raw HTTP response for get /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.list.abstract CompletableFuture<HttpResponseFor<FineTuningJob>>
cancel(FineTuningJobCancelParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /fine_tuning/jobs/{fine_tuning_job_id}/cancel
, but is otherwise the same as JobServiceAsync.cancel.abstract CompletableFuture<HttpResponseFor<FineTuningJob>>
cancel(FineTuningJobCancelParams params)
Returns a raw HTTP response for post /fine_tuning/jobs/{fine_tuning_job_id}/cancel
, but is otherwise the same as JobServiceAsync.cancel.abstract CompletableFuture<HttpResponseFor<FineTuningJobListEventsPageAsync>>
listEvents(FineTuningJobListEventsParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /fine_tuning/jobs/{fine_tuning_job_id}/events
, but is otherwise the same as JobServiceAsync.listEvents.abstract CompletableFuture<HttpResponseFor<FineTuningJobListEventsPageAsync>>
listEvents(FineTuningJobListEventsParams params)
Returns a raw HTTP response for get /fine_tuning/jobs/{fine_tuning_job_id}/events
, but is otherwise the same as JobServiceAsync.listEvents.-
-
Method Detail
-
checkpoints
abstract CheckpointServiceAsync.WithRawResponse checkpoints()
-
create
abstract CompletableFuture<HttpResponseFor<FineTuningJob>> create(FineTuningJobCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<FineTuningJob>> create(FineTuningJobCreateParams params)
Returns a raw HTTP response for
post /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.create.
-
retrieve
abstract CompletableFuture<HttpResponseFor<FineTuningJob>> retrieve(FineTuningJobRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /fine_tuning/jobs/{fine_tuning_job_id}
, but is otherwise the same as JobServiceAsync.retrieve.
-
retrieve
abstract CompletableFuture<HttpResponseFor<FineTuningJob>> retrieve(FineTuningJobRetrieveParams params)
Returns a raw HTTP response for
get /fine_tuning/jobs/{fine_tuning_job_id}
, but is otherwise the same as JobServiceAsync.retrieve.
-
list
abstract CompletableFuture<HttpResponseFor<FineTuningJobListPageAsync>> list(FineTuningJobListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<FineTuningJobListPageAsync>> list(FineTuningJobListParams params)
Returns a raw HTTP response for
get /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<FineTuningJobListPageAsync>> list()
Returns a raw HTTP response for
get /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<FineTuningJobListPageAsync>> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /fine_tuning/jobs
, but is otherwise the same as JobServiceAsync.list.
-
cancel
abstract CompletableFuture<HttpResponseFor<FineTuningJob>> cancel(FineTuningJobCancelParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /fine_tuning/jobs/{fine_tuning_job_id}/cancel
, but is otherwise the same as JobServiceAsync.cancel.
-
cancel
abstract CompletableFuture<HttpResponseFor<FineTuningJob>> cancel(FineTuningJobCancelParams params)
Returns a raw HTTP response for
post /fine_tuning/jobs/{fine_tuning_job_id}/cancel
, but is otherwise the same as JobServiceAsync.cancel.
-
listEvents
abstract CompletableFuture<HttpResponseFor<FineTuningJobListEventsPageAsync>> listEvents(FineTuningJobListEventsParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /fine_tuning/jobs/{fine_tuning_job_id}/events
, but is otherwise the same as JobServiceAsync.listEvents.
-
listEvents
abstract CompletableFuture<HttpResponseFor<FineTuningJobListEventsPageAsync>> listEvents(FineTuningJobListEventsParams params)
Returns a raw HTTP response for
get /fine_tuning/jobs/{fine_tuning_job_id}/events
, but is otherwise the same as JobServiceAsync.listEvents.
-
-
-
-