Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
RunStepsOperations interface
- Package:
- @azure/ai-agents
Interface representing a RunSteps operations.
Properties
| get | Retrieves a single run step from a thread run. |
| list | Gets a list of run steps from a thread run. |
Property Details
get
Retrieves a single run step from a thread run.
get: (threadId: string, runId: string, stepId: string, options?: RunStepsGetRunStepOptionalParams) => Promise<RunStep>
Property Value
(threadId: string, runId: string, stepId: string, options?: RunStepsGetRunStepOptionalParams) => Promise<RunStep>
list
Gets a list of run steps from a thread run.
list: (threadId: string, runId: string, options?: RunStepsListRunStepsOptionalParams) => PagedAsyncIterableIterator<RunStep, RunStep[], PageSettings>
Property Value
(threadId: string, runId: string, options?: RunStepsListRunStepsOptionalParams) => PagedAsyncIterableIterator<RunStep, RunStep[], PageSettings>
