File size: 250 Bytes
faca43f
 
 
 
 
 
 
 
5528541
faca43f
1
2
3
4
5
6
7
8
9
10
11
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;
};