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

4 lines (3 loc) 213 B
import { ChatGptSuccessResponse } from './chat-gpt-success-response'; import { ChatGptErrorResponse } from './chat-gpt-error-response'; export type ChatGptResponse = ChatGptSuccessResponse | ChatGptErrorResponse;