File size: 467 Bytes
82fcab7
2e28042
82fcab7
 
2e28042
 
82fcab7
 
 
 
 
 
 
 
2606dde
82fcab7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import type { Timestamps } from "./Timestamps";
import type { User } from "./User";

export interface Settings extends Timestamps {
	userId?: User["_id"];
	sessionId?: string;

	/**
	 * Note: Only conversations with this settings explictly set to true should be shared.
	 *
	 * This setting is explicitly set to true when users accept the ethics modal.
	 * */
	shareConversationsWithModelAuthors: boolean;
	ethicsModalAcceptedAt: Date | null;
	activeModel: string;
}