UNPKG

ts-chatgpt-api

Version:

ChatGPT API is a powerful tool developed on TypeScript that allows developers to easily integrate natural language processing capabilities into their applications. As a large language model trained by OpenAI, ChatGPT is capable of understanding and gener

13 lines (12 loc) 293 B
export type ChatGptCompletionParams = { temperature?: number; top_p?: number; n?: number; stream?: boolean; stop?: null | string | string[]; max_tokens?: number; presence_penalty?: number; frequency_penalty?: number; logit_bias?: any; user?: string; };