Package version:

Interface RunStepsOperations

Interface representing a RunSteps operations.

interface RunStepsOperations {
    get: ((threadId: string, runId: string, stepId: string, options?: RunStepsGetRunStepOptionalParams) => Promise<RunStep>);
    list: ((threadId: string, runId: string, options?: RunStepsListRunStepsOptionalParams) => PagedAsyncIterableIterator<RunStep, {}, PageSettings>);
}

Properties

Properties

get: ((threadId: string, runId: string, stepId: string, options?: RunStepsGetRunStepOptionalParams) => Promise<RunStep>)

Retrieves a single run step from a thread run.

list: ((threadId: string, runId: string, options?: RunStepsListRunStepsOptionalParams) => PagedAsyncIterableIterator<RunStep, {}, PageSettings>)

Gets a list of run steps from a thread run.