Package com.openai.services.blocking
Class BatchServiceImpl.WithRawResponseImpl
-
- All Implemented Interfaces:
-
com.openai.services.blocking.BatchService.WithRawResponse
public final class BatchServiceImpl.WithRawResponseImpl implements BatchService.WithRawResponse
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<Batch>
create(BatchCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /batches
, but is otherwise the same as BatchService.create.HttpResponseFor<Batch>
retrieve(BatchRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /batches/{batch_id}
, but is otherwise the same as BatchService.retrieve.HttpResponseFor<BatchListPage>
list(BatchListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /batches
, but is otherwise the same as BatchService.list.HttpResponseFor<Batch>
cancel(BatchCancelParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /batches/{batch_id}/cancel
, but is otherwise the same as BatchService.cancel.-
-
Method Detail
-
create
HttpResponseFor<Batch> create(BatchCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /batches
, but is otherwise the same as BatchService.create.
-
retrieve
HttpResponseFor<Batch> retrieve(BatchRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /batches/{batch_id}
, but is otherwise the same as BatchService.retrieve.
-
list
HttpResponseFor<BatchListPage> list(BatchListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /batches
, but is otherwise the same as BatchService.list.
-
cancel
HttpResponseFor<Batch> cancel(BatchCancelParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /batches/{batch_id}/cancel
, but is otherwise the same as BatchService.cancel.
-
-
-
-