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

x/openai/resources/completions.ts>CompletionChoice

Deno build of the official Typescript library for the OpenAI API.
Extremely Popular
Go to Latest
namespace CompletionChoice
import { CompletionChoice } from "https://deno.land/x/openai@v4.45.0/resources/completions.ts";
interface CompletionChoice
import { type CompletionChoice } from "https://deno.land/x/openai@v4.45.0/resources/completions.ts";

Properties

finish_reason: "stop" | "length" | "content_filter"

The reason the model stopped generating tokens. This will be stop if the model hit a natural stop point or a provided stop sequence, length if the maximum number of tokens specified in the request was reached, or content_filter if content was omitted due to a flag from our content filters.

index: number
logprobs: CompletionChoice.Logprobs | null
text: string