File size: 282 Bytes
2a808d7
cdc7c53
2a808d7
 
 
 
 
 
 
 
 
 
 
 
cdc7c53
 
2a808d7
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;
};