Interface StepServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface StepServiceAsync.WithRawResponse
A view of StepServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description CompletableFuture<HttpResponseFor<RunStep>>
retrieve(StepRetrieveParams params)
Returns a raw HTTP response for get /threads/{thread_id}/runs/{run_id}/steps/{step_id}
, but is otherwise the same as StepServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<RunStep>>
retrieve(StepRetrieveParams params, RequestOptions requestOptions)
CompletableFuture<HttpResponseFor<StepListPageAsync>>
list(StepListParams params)
Returns a raw HTTP response for get /threads/{thread_id}/runs/{run_id}/steps
, but is otherwise the same as StepServiceAsync.list.abstract CompletableFuture<HttpResponseFor<StepListPageAsync>>
list(StepListParams params, RequestOptions requestOptions)
-
-
Method Detail
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<RunStep>> retrieve(StepRetrieveParams params)
Returns a raw HTTP response for
get /threads/{thread_id}/runs/{run_id}/steps/{step_id}
, but is otherwise the same as StepServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<RunStep>> retrieve(StepRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<StepListPageAsync>> list(StepListParams params)
Returns a raw HTTP response for
get /threads/{thread_id}/runs/{run_id}/steps
, but is otherwise the same as StepServiceAsync.list.
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<StepListPageAsync>> list(StepListParams params, RequestOptions requestOptions)
-
-
-
-