Interface StepServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
@Deprecated(message = "The Assistants API is deprecated in favor of the Responses API") public interface StepServiceAsync.WithRawResponse
A view of StepServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract StepServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
@Deprecated(message = "The Assistants API is deprecated in favor of the Responses API") 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
@Deprecated(message = "The Assistants API is deprecated in favor of the Responses API") CompletableFuture<HttpResponseFor<RunStep>> retrieve(String stepId, StepRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@Deprecated(message = "The Assistants API is deprecated in favor of the Responses API") CompletableFuture<HttpResponseFor<RunStep>> retrieve(StepRetrieveParams params)
-
retrieve
@Deprecated(message = "The Assistants API is deprecated in favor of the Responses API") abstract CompletableFuture<HttpResponseFor<RunStep>> retrieve(StepRetrieveParams params, RequestOptions requestOptions)
-
list
@Deprecated(message = "The Assistants API is deprecated in favor of the Responses API") 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
@Deprecated(message = "The Assistants API is deprecated in favor of the Responses API") CompletableFuture<HttpResponseFor<StepListPageAsync>> list(String runId, StepListParams params, RequestOptions requestOptions)
-
list
@Deprecated(message = "The Assistants API is deprecated in favor of the Responses API") CompletableFuture<HttpResponseFor<StepListPageAsync>> list(StepListParams params)
-
list
@Deprecated(message = "The Assistants API is deprecated in favor of the Responses API") abstract CompletableFuture<HttpResponseFor<StepListPageAsync>> list(StepListParams params, RequestOptions requestOptions)
-
-
-
-