scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
9 lines (8 loc) • 320 B
TypeScript
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>);
}