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
-
-
Method Detail
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<RunStep>> retrieve(String stepId, 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() CompletableFuture<HttpResponseFor<RunStep>> retrieve(String stepId, StepRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<RunStep>> retrieve(StepRetrieveParams params)
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<RunStep>> retrieve(StepRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<StepListPageAsync>> list(String runId, 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() CompletableFuture<HttpResponseFor<StepListPageAsync>> list(String runId, StepListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<StepListPageAsync>> list(StepListParams params)
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<StepListPageAsync>> list(StepListParams params, RequestOptions requestOptions)
-
-
-
-