Skip to main content
Module

x/openai/resources/beta/threads/mod.ts>Threads

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

Properties

messages: MessagesAPI.Messages
runs: RunsAPI.Runs

Methods

create(body?: ThreadCreateParams, options?: Core.RequestOptions): Core.APIPromise<Thread>

Create a thread.

create(options?: Core.RequestOptions): Core.APIPromise<Thread>
createAndRun(body: ThreadCreateAndRunParams, options?: Core.RequestOptions): Core.APIPromise<RunsAPI.Run>

Create a thread and run it in one request.

del(threadId: string, options?: Core.RequestOptions): Core.APIPromise<ThreadDeleted>

Delete a thread.

retrieve(threadId: string, options?: Core.RequestOptions): Core.APIPromise<Thread>

Retrieves a thread.

update(
threadId: string,
options?: Core.RequestOptions,
): Core.APIPromise<Thread>

Modifies a thread.