Interface CheckpointService.WithRawResponse
-
- All Implemented Interfaces:
public interface CheckpointService.WithRawResponseA view of CheckpointService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract CheckpointService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. HttpResponseFor<CheckpointListPage>list(String fineTuningJobId)Returns a raw HTTP response for get /fine_tuning/jobs/{fine_tuning_job_id}/checkpoints, but is otherwise the same as CheckpointService.list.HttpResponseFor<CheckpointListPage>list(String fineTuningJobId, CheckpointListParams params, RequestOptions requestOptions)HttpResponseFor<CheckpointListPage>list(String fineTuningJobId, CheckpointListParams params)abstract HttpResponseFor<CheckpointListPage>list(CheckpointListParams params, RequestOptions requestOptions)HttpResponseFor<CheckpointListPage>list(CheckpointListParams params)HttpResponseFor<CheckpointListPage>list(String fineTuningJobId, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract CheckpointService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
list
@MustBeClosed() HttpResponseFor<CheckpointListPage> list(String fineTuningJobId)
Returns a raw HTTP response for
get /fine_tuning/jobs/{fine_tuning_job_id}/checkpoints, but is otherwise the same as CheckpointService.list.
-
list
@MustBeClosed() HttpResponseFor<CheckpointListPage> list(String fineTuningJobId, CheckpointListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<CheckpointListPage> list(String fineTuningJobId, CheckpointListParams params)
-
list
@MustBeClosed() abstract HttpResponseFor<CheckpointListPage> list(CheckpointListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<CheckpointListPage> list(CheckpointListParams params)
-
list
@MustBeClosed() HttpResponseFor<CheckpointListPage> list(String fineTuningJobId, RequestOptions requestOptions)
-
-
-
-