scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
12 lines (11 loc) • 337 B
TypeScript
import { EChatGptModel } from "../enums/model.enum";
import { IChatGptChoice } from "./i-chat-gpt-choice";
import { IChatGptUsage } from "./i-chat-gpt-usage";
export interface IChatGptResponse {
id: string;
object: string;
created: number;
model: EChatGptModel;
choices: IChatGptChoice[];
usage: IChatGptUsage;
}