export interface LoadPreviousSessionResponseItem { id: string[]; kwargs: { content: string; additional_kwargs: Record; }; lc: number; type: string; } export interface SessionInfo { id: string; created_at: string; updated_at: string; token_count: number; token_percentage: number; max_tokens_reached: boolean; } export interface LoadPreviousSessionResponse { data: LoadPreviousSessionResponseItem[]; session: SessionInfo; } export interface SendMessageResponse { output?: string; text?: string; message?: string; executionId?: string; executionStarted?: boolean; }