File size: 256 Bytes
5da61b4
82fcab7
76d4779
82fcab7
76d4779
 
 
 
06e879d
76d4779
 
af58e08
76d4779
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import type { Message } from "./Message";
import type { Timestamps } from "./Timestamps";

export interface SharedConversation extends Timestamps {
	_id: string;

	hash: string;

	model: string;
	title: string;
	messages: Message[];
	preprompt?: string;
}