import { ChatEntry } from './ChatEntry'; export interface ChatRequest { model: string; chatHistory: ChatEntry[]; conversationId: string; }