UNPKG

scheunemann-interfaces

Version:
14 lines (13 loc) 510 B
import { EChatGptModel } from '../enums/model.enum'; import { IChatGptResponse } from '../interfaces'; import { ChatGptChoiceEntity } from './chat-gpt-choice.entity'; import { ChatGptUsageEntity } from './chat-gpt-usage.entity'; export declare class ChatGptResponseEntity implements IChatGptResponse { id: string; object: string; created: number; model: EChatGptModel; choices: ChatGptChoiceEntity[]; usage: ChatGptUsageEntity; constructor(data?: Partial<ChatGptResponseEntity>); }