blind_chat / src /lib /types /Message.ts
JoFrost
update to current version
5528541
import type { Timestamps } from "./Timestamps";
export type Message = Partial<Timestamps> & {
from: "user" | "assistant";
id: ReturnType<typeof crypto.randomUUID>;
content: string;
webSearchId?: string;
score?: -1 | 0 | 1;
isCode: boolean;
};