Interface RunService.WithRawResponse
-
- All Implemented Interfaces:
public interface RunService.WithRawResponse
A view of RunService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract OutputItemService.WithRawResponse
outputItems()
HttpResponseFor<RunCreateResponse>
create(RunCreateParams params)
Returns a raw HTTP response for post /evals/{eval_id}/runs
, but is otherwise the same as RunService.create.abstract HttpResponseFor<RunCreateResponse>
create(RunCreateParams params, RequestOptions requestOptions)
HttpResponseFor<RunRetrieveResponse>
retrieve(RunRetrieveParams params)
Returns a raw HTTP response for get /evals/{eval_id}/runs/{run_id}
, but is otherwise the same as RunService.retrieve.abstract HttpResponseFor<RunRetrieveResponse>
retrieve(RunRetrieveParams params, RequestOptions requestOptions)
HttpResponseFor<RunListPage>
list(RunListParams params)
Returns a raw HTTP response for get /evals/{eval_id}/runs
, but is otherwise the same as RunService.list.abstract HttpResponseFor<RunListPage>
list(RunListParams params, RequestOptions requestOptions)
HttpResponseFor<RunDeleteResponse>
delete(RunDeleteParams params)
Returns a raw HTTP response for delete /evals/{eval_id}/runs/{run_id}
, but is otherwise the same as RunService.delete.abstract HttpResponseFor<RunDeleteResponse>
delete(RunDeleteParams params, RequestOptions requestOptions)
HttpResponseFor<RunCancelResponse>
cancel(RunCancelParams params)
Returns a raw HTTP response for post /evals/{eval_id}/runs/{run_id}
, but is otherwise the same as RunService.cancel.abstract HttpResponseFor<RunCancelResponse>
cancel(RunCancelParams params, RequestOptions requestOptions)
-
-
Method Detail
-
outputItems
abstract OutputItemService.WithRawResponse outputItems()
-
create
@MustBeClosed() HttpResponseFor<RunCreateResponse> create(RunCreateParams params)
Returns a raw HTTP response for
post /evals/{eval_id}/runs
, but is otherwise the same as RunService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<RunCreateResponse> create(RunCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<RunRetrieveResponse> retrieve(RunRetrieveParams params)
Returns a raw HTTP response for
get /evals/{eval_id}/runs/{run_id}
, but is otherwise the same as RunService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<RunRetrieveResponse> retrieve(RunRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<RunListPage> list(RunListParams params)
Returns a raw HTTP response for
get /evals/{eval_id}/runs
, but is otherwise the same as RunService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<RunListPage> list(RunListParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<RunDeleteResponse> delete(RunDeleteParams params)
Returns a raw HTTP response for
delete /evals/{eval_id}/runs/{run_id}
, but is otherwise the same as RunService.delete.
-
delete
@MustBeClosed() abstract HttpResponseFor<RunDeleteResponse> delete(RunDeleteParams params, RequestOptions requestOptions)
-
cancel
@MustBeClosed() HttpResponseFor<RunCancelResponse> cancel(RunCancelParams params)
Returns a raw HTTP response for
post /evals/{eval_id}/runs/{run_id}
, but is otherwise the same as RunService.cancel.
-
cancel
@MustBeClosed() abstract HttpResponseFor<RunCancelResponse> cancel(RunCancelParams params, RequestOptions requestOptions)
-
-
-
-