UNPKG

scheunemann-interfaces

Version:
9 lines (8 loc) 320 B
import { IChatGptChoice } from '../interfaces'; import { ChatGptMessageEntity } from './chat-gpt-message.entity'; export declare class ChatGptChoiceEntity implements IChatGptChoice { index: number; message: ChatGptMessageEntity; finish_reason: string; constructor(data?: Partial<ChatGptChoiceEntity>); }