File size: 361 Bytes
992a8de
5da61b4
82fcab7
76d4779
82fcab7
76d4779
 
 
 
06e879d
3a01622
 
76d4779
 
af58e08
992a8de
76d4779
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import type { Assistant } from "./Assistant";
import type { Message } from "./Message";
import type { Timestamps } from "./Timestamps";

export interface SharedConversation extends Timestamps {
	_id: string;

	hash: string;

	model: string;
	embeddingModel: string;

	title: string;
	messages: Message[];
	preprompt?: string;
	assistantId?: Assistant["_id"];
}