Freigeben über


AssistantsClient.GetRunStep(String, String, String, CancellationToken) Method

Definition

Gets a single run step from a thread run.

public virtual Azure.Response<Azure.AI.OpenAI.Assistants.RunStep> GetRunStep (string threadId, string runId, string stepId, System.Threading.CancellationToken cancellationToken = default);
abstract member GetRunStep : string * string * string * System.Threading.CancellationToken -> Azure.Response<Azure.AI.OpenAI.Assistants.RunStep>
override this.GetRunStep : string * string * string * System.Threading.CancellationToken -> Azure.Response<Azure.AI.OpenAI.Assistants.RunStep>
Public Overridable Function GetRunStep (threadId As String, runId As String, stepId As String, Optional cancellationToken As CancellationToken = Nothing) As 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