AssistantsClient.GetRunStepAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.
Azure SDK for .NET