import type { Timestamps } from "./Timestamps"; export type Message = Partial & { from: "user" | "assistant"; id: ReturnType; content: string; webSearchId?: string; score?: -1 | 0 | 1; isCode: boolean; };