File size: 232 Bytes
1eff97d
 
 
5da61b4
4a6603b
1b66f8d
0c4cf03
5b779a6
1eff97d
1
2
3
4
5
6
7
8
9
10
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;
};