AssistantsClient.GetRunStepAsync Method

Definition

Gets a single run step from a thread run.

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.AI.OpenAI.Assistants.RunStep>> GetRunStepAsync (string threadId, string runId, string stepId, System.Threading.CancellationToken cancellationToken = default);
abstract member GetRunStepAsync : string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.AI.OpenAI.Assistants.RunStep>>
override this.GetRunStepAsync : string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.AI.OpenAI.Assistants.RunStep>>
Public Overridable Function GetRunStepAsync (threadId As String, runId As String, stepId As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of RunStep))

Parameters

threadId
String

The ID of the thread that was run.

runId
String

The ID of the specific run to retrieve the step from.

stepId
String

The ID of the step to retrieve information about.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

threadId, runId or stepId is null.

threadId, runId or stepId is an empty string, and was expected to be non-empty.

Applies to