Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/openai/resources/beta/threads/runs/mod.ts>Steps

Deno build of the official Typescript library for the OpenAI API.
Extremely Popular
Go to Latest
class Steps
extends APIResource
import { Steps } from "https://deno.land/x/openai@v4.52.1/resources/beta/threads/runs/mod.ts";

Methods

list(
threadId: string,
runId: string,
options?: Core.RequestOptions,
): Core.PagePromise<RunStepsPage, RunStep>

Returns a list of run steps belonging to a run.

list(
threadId: string,
runId: string,
options?: Core.RequestOptions,
): Core.PagePromise<RunStepsPage, RunStep>
retrieve(
threadId: string,
runId: string,
stepId: string,
options?: Core.RequestOptions,
): Core.APIPromise<RunStep>

Retrieves a run step.