export interface ILlmCounts { products: number; pages: number; total: number; } export interface ILlmStatus { success?: boolean; llm_url?: string; body?: string; counts?: ILlmCounts; generated_at?: string; cached?: boolean; warnings?: string[]; error?: string; } export interface ILlmHit { id: number; bot_name: string; user_agent: string; status: number; path: string; created_at: string; } export interface ILlmBotCount { bot_name: string; count: number; } export interface ILlmHitsByDay { date: string; label: string; count: number; } export interface ILlmHitsResponse { success?: boolean; bot_counts: ILlmBotCount[]; recent: ILlmHit[]; hits_by_day: ILlmHitsByDay[]; since: string; }