index.ts 3.53 KB
Newer Older
1
import { APP_NAME } from '$lib/constants';
2
import { type Writable, writable } from 'svelte/store';
3
import type { GlobalModelConfig, ModelConfig } from '$lib/apis';
Timothy J. Baek's avatar
Timothy J. Baek committed
4
import type { Banner } from '$lib/types';
Timothy J. Baek's avatar
Timothy J. Baek committed
5
import type { Socket } from 'socket.io-client';
6

7
// Backend
8
export const WEBUI_NAME = writable(APP_NAME);
9
10
export const config: Writable<Config | undefined> = writable(undefined);
export const user: Writable<SessionUser | undefined> = writable(undefined);
11
12

// Frontend
13
export const MODEL_DOWNLOAD_POOL = writable({});
Timothy J. Baek's avatar
Timothy J. Baek committed
14

15
16
export const mobile = writable(false);

Timothy J. Baek's avatar
Timothy J. Baek committed
17
export const socket: Writable<null | Socket> = writable(null);
Timothy J. Baek's avatar
Timothy J. Baek committed
18
export const activeUserCount: Writable<null | number> = writable(null);
Timothy J. Baek's avatar
Timothy J. Baek committed
19

20
export const theme = writable('system');
21
export const chatId = writable('');
Timothy J. Baek's avatar
Timothy J. Baek committed
22

23
export const chats = writable([]);
Timothy J. Baek's avatar
Timothy J. Baek committed
24
export const tags = writable([]);
25
export const models: Writable<Model[]> = writable([]);
Timothy J. Baek's avatar
Timothy J. Baek committed
26

27
export const modelfiles = writable([]);
28
export const prompts: Writable<Prompt[]> = writable([]);
Timothy J. Baek's avatar
Timothy J. Baek committed
29
30
31
32
33
34
35
36
37
38
39
40
41
42
export const documents = writable([
	{
		collection_name: 'collection_name',
		filename: 'filename',
		name: 'name',
		title: 'title'
	},
	{
		collection_name: 'collection_name1',
		filename: 'filename1',
		name: 'name1',
		title: 'title1'
	}
]);
Timothy J. Baek's avatar
Timothy J. Baek committed
43

Timothy J. Baek's avatar
Timothy J. Baek committed
44
45
export const banners: Writable<Banner[]> = writable([]);

46
export const settings: Writable<Settings> = writable({});
Timothy J. Baek's avatar
Timothy J. Baek committed
47
48

export const showSidebar = writable(false);
49
export const showSettings = writable(false);
Timothy J. Baek's avatar
Timothy J. Baek committed
50
export const showArchivedChats = writable(false);
51
export const showChangelog = writable(false);
52

53
export type Model = OpenAIModel | OllamaModel;
54

55
type BaseModel = {
56
57
	id: string;
	name: string;
Timothy J. Baek's avatar
Timothy J. Baek committed
58
	info?: ModelConfig;
59
};
60

61
export interface OpenAIModel extends BaseModel {
62
63
64
	external: boolean;
	source?: string;
}
65

66
export interface OllamaModel extends BaseModel {
67
68
69
70
71
72
	details: OllamaModelDetails;
	size: number;
	description: string;
	model: string;
	modified_at: string;
	digest: string;
73
}
74
75

type OllamaModelDetails = {
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
	parent_model: string;
	format: string;
	family: string;
	families: string[] | null;
	parameter_size: string;
	quantization_level: string;
};

type Settings = {
	models?: string[];
	conversationMode?: boolean;
	speechAutoSend?: boolean;
	responseAutoPlayback?: boolean;
	audio?: AudioSettings;
	showUsername?: boolean;
	saveChatHistory?: boolean;
	notificationEnabled?: boolean;
	title?: TitleSettings;
94
	splitLargeDeltas?: boolean;
95
	chatDirection: 'LTR' | 'RTL';
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116

	system?: string;
	requestFormat?: string;
	keepAlive?: string;
	seed?: number;
	temperature?: string;
	repeat_penalty?: string;
	top_k?: string;
	top_p?: string;
	num_ctx?: string;
	options?: ModelOptions;
};

type ModelOptions = {
	stop?: boolean;
};

type AudioSettings = {
	STTEngine?: string;
	TTSEngine?: string;
	speaker?: string;
Yanyutin753's avatar
Yanyutin753 committed
117
	model?: string;
118
	nonLocalVoices?: boolean;
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
};

type TitleSettings = {
	auto?: boolean;
	model?: string;
	modelExternal?: string;
	prompt?: string;
};

type Prompt = {
	command: string;
	user_id: string;
	title: string;
	content: string;
	timestamp: number;
};

type Config = {
137
138
139
140
141
142
	status: boolean;
	name: string;
	version: string;
	default_locale: string;
	default_models: string[];
	default_prompt_suggestions: PromptSuggestion[];
Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
143
	features: {
144
145
		auth: boolean;
		auth_trusted_header: boolean;
Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
146
147
		enable_signup: boolean;
		enable_web_search?: boolean;
148
149
150
		enable_image_generation: boolean;
		enable_admin_export: boolean;
		enable_community_sharing: boolean;
151
	};
152
153
154
155
156
157
158
159
160
161
162
163
164
};

type PromptSuggestion = {
	content: string;
	title: [string, string];
};

type SessionUser = {
	id: string;
	email: string;
	name: string;
	role: string;
	profile_image_url: string;
165
};