UNPKG

scheunemann-interfaces

Version:
7 lines (6 loc) 168 B
import { IChatGptMessage } from "./i-chat-gpt-message"; export interface IChatGptChoice { index: number; message: IChatGptMessage; finish_reason: string; }