File size: 282 Bytes
e6addfc
76d4779
e6addfc
 
 
 
 
 
 
 
 
 
 
 
76d4779
 
e6addfc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import type { Conversation } from "./Conversation";

export type SharedConversation = Pick<
	Conversation,
	| "model"
	| "embeddingModel"
	| "title"
	| "rootMessageId"
	| "messages"
	| "preprompt"
	| "assistantId"
	| "createdAt"
	| "updatedAt"
> & {
	_id: string;
	hash: string;
};