AssistantsClient.GetRunStep(String, String, String, CancellationToken) 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 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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET