import type { ArtifactVersion } from './ArtifactVersion'; export type ChatHistory = { readonly id: number; readonly message: any; readonly inserted_at: string; title?: string | null; readonly feedback: any; readonly generation_id: string | null; readonly conversation_id: string | null; readonly files: any; artifact_versions: Array; /** * True if this is a human message */ readonly is_human: boolean; /** * True if this is an AI message */ readonly is_ai: boolean; };