AssistantsClient.GetRun(String, String, CancellationToken) Method

Definition

Gets an existing run from an existing thread.

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

Parameters

threadId
String

The ID of the thread to retrieve run information from.

runId
String

The ID of the thread to retrieve information about.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

threadId or runId is null.

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

Applies to