Interface JobService.WithRawResponse
-
- All Implemented Interfaces:
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 CheckpointService.WithRawResponse
checkpoints()
abstract HttpResponseFor<FineTuningJob>
create(FineTuningJobCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /fine_tuning/jobs
, but is otherwise the same as JobService.create.abstract HttpResponseFor<FineTuningJob>
create(FineTuningJobCreateParams params)
Returns a raw HTTP response for post /fine_tuning/jobs
, but is otherwise the same as JobService.create.abstract 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 JobService.retrieve.abstract 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 JobService.retrieve.abstract HttpResponseFor<FineTuningJobListPage>
list(FineTuningJobListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /fine_tuning/jobs
, but is otherwise the same as JobService.list.abstract HttpResponseFor<FineTuningJobListPage>
list(FineTuningJobListParams params)
Returns a raw HTTP response for get /fine_tuning/jobs
, but is otherwise the same as JobService.list.abstract HttpResponseFor<FineTuningJobListPage>
list()
Returns a raw HTTP response for get /fine_tuning/jobs
, but is otherwise the same as JobService.list.HttpResponseFor<FineTuningJobListPage>
list(RequestOptions requestOptions)
Returns a raw HTTP response for get /fine_tuning/jobs
, but is otherwise the same as JobService.list.abstract 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 JobService.cancel.abstract 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 JobService.cancel.abstract HttpResponseFor<FineTuningJobListEventsPage>
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 JobService.listEvents.abstract HttpResponseFor<FineTuningJobListEventsPage>
listEvents(FineTuningJobListEventsParams params)
Returns a raw HTTP response for get /fine_tuning/jobs/{fine_tuning_job_id}/events
, but is otherwise the same as JobService.listEvents.-
-
Method Detail
-
checkpoints
abstract CheckpointService.WithRawResponse checkpoints()
-
create
abstract HttpResponseFor<FineTuningJob> create(FineTuningJobCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /fine_tuning/jobs
, but is otherwise the same as JobService.create.
-
create
abstract HttpResponseFor<FineTuningJob> create(FineTuningJobCreateParams params)
Returns a raw HTTP response for
post /fine_tuning/jobs
, but is otherwise the same as JobService.create.
-
retrieve
abstract 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 JobService.retrieve.
-
retrieve
abstract 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 JobService.retrieve.
-
list
abstract HttpResponseFor<FineTuningJobListPage> list(FineTuningJobListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /fine_tuning/jobs
, but is otherwise the same as JobService.list.
-
list
abstract HttpResponseFor<FineTuningJobListPage> list(FineTuningJobListParams params)
Returns a raw HTTP response for
get /fine_tuning/jobs
, but is otherwise the same as JobService.list.
-
list
abstract HttpResponseFor<FineTuningJobListPage> list()
Returns a raw HTTP response for
get /fine_tuning/jobs
, but is otherwise the same as JobService.list.
-
list
HttpResponseFor<FineTuningJobListPage> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /fine_tuning/jobs
, but is otherwise the same as JobService.list.
-
cancel
abstract 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 JobService.cancel.
-
cancel
abstract 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 JobService.cancel.
-
listEvents
abstract HttpResponseFor<FineTuningJobListEventsPage> 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 JobService.listEvents.
-
listEvents
abstract HttpResponseFor<FineTuningJobListEventsPage> listEvents(FineTuningJobListEventsParams params)
Returns a raw HTTP response for
get /fine_tuning/jobs/{fine_tuning_job_id}/events
, but is otherwise the same as JobService.listEvents.
-
-
-
-