import Chioce from "./LLMChoice";
import LLMUsage from "./LLMUsage";
export default interface LLMResponse {
    id: string;
    choices: Chioce[];
    created: number;
    model: string;
    msg?: string;
    usage: LLMUsage;
}
