General.svelte 16.7 KB
Newer Older
1
2
<script lang="ts">
	import { getDocs } from '$lib/apis/documents';
3
	import {
4
		getQuerySettings,
5
		scanDocs,
Timothy J. Baek's avatar
Timothy J. Baek committed
6
		updateQuerySettings,
7
		resetVectorDB,
Timothy J. Baek's avatar
Timothy J. Baek committed
8
		getEmbeddingConfig,
Steven Kreitzer's avatar
Steven Kreitzer committed
9
10
11
		updateEmbeddingConfig,
		getRerankingConfig,
		updateRerankingConfig
12
	} from '$lib/apis/rag';
Timothy J. Baek's avatar
Timothy J. Baek committed
13

Timothy J. Baek's avatar
Timothy J. Baek committed
14
	import { documents, models } from '$lib/stores';
15
	import { onMount, getContext } from 'svelte';
Jannik Streidl's avatar
Jannik Streidl committed
16
	import { toast } from 'svelte-sonner';
17

18
19
	const i18n = getContext('i18n');

20
	export let saveHandler: Function;
Timothy J. Baek's avatar
Timothy J. Baek committed
21

Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
22
23
	let scanDirLoading = false;
	let updateEmbeddingModelLoading = false;
Steven Kreitzer's avatar
Steven Kreitzer committed
24
	let updateRerankingModelLoading = false;
Timothy J. Baek's avatar
Timothy J. Baek committed
25

Timothy J. Baek's avatar
Timothy J. Baek committed
26
27
	let showResetConfirm = false;

28
	let embeddingEngine = '';
Timothy J. Baek's avatar
Timothy J. Baek committed
29
	let embeddingModel = '';
Steven Kreitzer's avatar
Steven Kreitzer committed
30
	let rerankingModel = '';
Timothy J. Baek's avatar
Timothy J. Baek committed
31

32
33
	let OpenAIKey = '';
	let OpenAIUrl = '';
34

35
36
	let querySettings = {
		template: '',
37
		r: 0.0,
Steven Kreitzer's avatar
Steven Kreitzer committed
38
39
		k: 4,
		hybrid: false
40
	};
41

42
	const scanHandler = async () => {
Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
43
		scanDirLoading = true;
44
		const res = await scanDocs(localStorage.token);
Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
45
		scanDirLoading = false;
46
47
48

		if (res) {
			await documents.set(await getDocs(localStorage.token));
49
			toast.success($i18n.t('Scan complete!'));
50
51
52
		}
	};

53
	const embeddingModelUpdateHandler = async () => {
54
55
56
57
58
59
60
61
62
		if (embeddingEngine === '' && embeddingModel.split('/').length - 1 > 1) {
			toast.error(
				$i18n.t(
					'Model filesystem path detected. Model shortname is required for update, cannot continue.'
				)
			);
			return;
		}
		if (embeddingEngine === 'ollama' && embeddingModel === '') {
Timothy J. Baek's avatar
Timothy J. Baek committed
63
64
65
66
67
68
69
70
			toast.error(
				$i18n.t(
					'Model filesystem path detected. Model shortname is required for update, cannot continue.'
				)
			);
			return;
		}

71
		if (embeddingEngine === 'openai' && embeddingModel === '') {
Self Denial's avatar
Self Denial committed
72
73
74
75
76
			toast.error(
				$i18n.t(
					'Model filesystem path detected. Model shortname is required for update, cannot continue.'
				)
			);
77
78
79
			return;
		}

80
		if ((embeddingEngine === 'openai' && OpenAIKey === '') || OpenAIUrl === '') {
81
82
83
84
			toast.error($i18n.t('OpenAI URL/Key required.'));
			return;
		}

Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
85
		console.log('Update embedding model attempt:', embeddingModel);
86

Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
87
		updateEmbeddingModelLoading = true;
Timothy J. Baek's avatar
Timothy J. Baek committed
88
89
		const res = await updateEmbeddingConfig(localStorage.token, {
			embedding_engine: embeddingEngine,
90
91
92
93
			embedding_model: embeddingModel,
			...(embeddingEngine === 'openai'
				? {
						openai_config: {
94
95
							key: OpenAIKey,
							url: OpenAIUrl
96
97
98
						}
				  }
				: {})
Timothy J. Baek's avatar
Timothy J. Baek committed
99
		}).catch(async (error) => {
Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
100
			toast.error(error);
101
			await setEmbeddingConfig();
Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
102
103
			return null;
		});
Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
104
		updateEmbeddingModelLoading = false;
105
106
107

		if (res) {
			console.log('embeddingModelUpdateHandler:', res);
108
			if (res.status === true) {
109
				toast.success($i18n.t('Embedding model set to "{{embedding_model}}"', res), {
Self Denial's avatar
Self Denial committed
110
111
					duration: 1000 * 10
				});
112
113
114
115
			}
		}
	};

Steven Kreitzer's avatar
Steven Kreitzer committed
116
117
118
119
120
	const rerankingModelUpdateHandler = async () => {
		console.log('Update reranking model attempt:', rerankingModel);

		updateRerankingModelLoading = true;
		const res = await updateRerankingConfig(localStorage.token, {
121
			reranking_model: rerankingModel
Steven Kreitzer's avatar
Steven Kreitzer committed
122
123
124
125
126
127
128
129
130
131
		}).catch(async (error) => {
			toast.error(error);
			await setRerankingConfig();
			return null;
		});
		updateRerankingModelLoading = false;

		if (res) {
			console.log('rerankingModelUpdateHandler:', res);
			if (res.status === true) {
Steven Kreitzer's avatar
Steven Kreitzer committed
132
133
134
135
136
137
138
139
140
				if (rerankingModel === '') {
					toast.success($i18n.t('Reranking model disabled', res), {
						duration: 1000 * 10
					});
				} else {
					toast.success($i18n.t('Reranking model set to "{{reranking_model}}"', res), {
						duration: 1000 * 10
					});
				}
Steven Kreitzer's avatar
Steven Kreitzer committed
141
142
143
144
			}
		}
	};

Timothy J. Baek's avatar
Timothy J. Baek committed
145
	const submitHandler = async () => {
Timothy J. Baek's avatar
Timothy J. Baek committed
146
147
148
149
150
		embeddingModelUpdateHandler();

		if (querySettings.hybrid) {
			rerankingModelUpdateHandler();
		}
Timothy J. Baek's avatar
Timothy J. Baek committed
151
152
	};

153
154
155
156
157
158
159
	const setEmbeddingConfig = async () => {
		const embeddingConfig = await getEmbeddingConfig(localStorage.token);

		if (embeddingConfig) {
			embeddingEngine = embeddingConfig.embedding_engine;
			embeddingModel = embeddingConfig.embedding_model;

160
161
			OpenAIKey = embeddingConfig.openai_config.key;
			OpenAIUrl = embeddingConfig.openai_config.url;
162
163
164
		}
	};

Steven Kreitzer's avatar
Steven Kreitzer committed
165
166
167
168
169
170
171
172
	const setRerankingConfig = async () => {
		const rerankingConfig = await getRerankingConfig(localStorage.token);

		if (rerankingConfig) {
			rerankingModel = rerankingConfig.reranking_model;
		}
	};

Steven Kreitzer's avatar
Steven Kreitzer committed
173
174
175
176
177
	const toggleHybridSearch = async () => {
		querySettings.hybrid = !querySettings.hybrid;
		querySettings = await updateQuerySettings(localStorage.token, querySettings);
	};

Timothy J. Baek's avatar
Timothy J. Baek committed
178
	onMount(async () => {
179
		await setEmbeddingConfig();
Steven Kreitzer's avatar
Steven Kreitzer committed
180
		await setRerankingConfig();
181

182
		querySettings = await getQuerySettings(localStorage.token);
Timothy J. Baek's avatar
Timothy J. Baek committed
183
	});
184
185
186
187
188
</script>

<form
	class="flex flex-col h-full justify-between space-y-3 text-sm"
	on:submit|preventDefault={() => {
Timothy J. Baek's avatar
Timothy J. Baek committed
189
		submitHandler();
190
191
192
		saveHandler();
	}}
>
Timothy J. Baek's avatar
Timothy J. Baek committed
193
	<div class=" space-y-2.5 pr-1.5 overflow-y-scroll max-h-[28rem]">
Timothy J. Baek's avatar
Timothy J. Baek committed
194
195
		<div class="flex flex-col gap-0.5">
			<div class=" mb-0.5 text-sm font-medium">{$i18n.t('General Settings')}</div>
196

Timothy J. Baek's avatar
Timothy J. Baek committed
197
198
			<div class="  flex w-full justify-between">
				<div class=" self-center text-xs font-medium">
Timothy J. Baek's avatar
Timothy J. Baek committed
199
					{$i18n.t('Scan for documents from {{path}}', { path: 'DOCS_DIR (/data/docs)' })}
Timothy J. Baek's avatar
Timothy J. Baek committed
200
				</div>
Steven Kreitzer's avatar
Steven Kreitzer committed
201
202

				<button
Timothy J. Baek's avatar
Timothy J. Baek committed
203
204
205
					class=" self-center text-xs p-1 px-3 bg-gray-100 dark:bg-gray-800 dark:hover:bg-gray-700 rounded-lg flex flex-row space-x-1 items-center {scanDirLoading
						? ' cursor-not-allowed'
						: ''}"
Steven Kreitzer's avatar
Steven Kreitzer committed
206
					on:click={() => {
Timothy J. Baek's avatar
Timothy J. Baek committed
207
208
						scanHandler();
						console.log('check');
Steven Kreitzer's avatar
Steven Kreitzer committed
209
210
					}}
					type="button"
Timothy J. Baek's avatar
Timothy J. Baek committed
211
					disabled={scanDirLoading}
Steven Kreitzer's avatar
Steven Kreitzer committed
212
				>
Timothy J. Baek's avatar
Timothy J. Baek committed
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
					<div class="self-center font-medium">{$i18n.t('Scan')}</div>

					{#if scanDirLoading}
						<div class="ml-3 self-center">
							<svg
								class=" w-3 h-3"
								viewBox="0 0 24 24"
								fill="currentColor"
								xmlns="http://www.w3.org/2000/svg"
								><style>
									.spinner_ajPY {
										transform-origin: center;
										animation: spinner_AtaB 0.75s infinite linear;
									}
									@keyframes spinner_AtaB {
										100% {
											transform: rotate(360deg);
										}
									}
								</style><path
									d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z"
									opacity=".25"
								/><path
									d="M10.14,1.16a11,11,0,0,0-9,8.92A1.59,1.59,0,0,0,2.46,12,1.52,1.52,0,0,0,4.11,10.7a8,8,0,0,1,6.66-6.61A1.42,1.42,0,0,0,12,2.69h0A1.57,1.57,0,0,0,10.14,1.16Z"
									class="spinner_ajPY"
								/></svg
							>
						</div>
Steven Kreitzer's avatar
Steven Kreitzer committed
241
242
243
244
					{/if}
				</button>
			</div>

245
			<div class=" flex w-full justify-between">
Timothy J. Baek's avatar
Timothy J. Baek committed
246
				<div class=" self-center text-xs font-medium">{$i18n.t('Embedding Model Engine')}</div>
247
248
249
250
				<div class="flex items-center relative">
					<select
						class="dark:bg-gray-900 w-fit pr-8 rounded px-2 p-1 text-xs bg-transparent outline-none text-right"
						bind:value={embeddingEngine}
Timothy J. Baek's avatar
Timothy J. Baek committed
251
						placeholder="Select an embedding model engine"
252
253
254
255
256
						on:change={(e) => {
							if (e.target.value === 'ollama') {
								embeddingModel = '';
							} else if (e.target.value === 'openai') {
								embeddingModel = 'text-embedding-3-small';
Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
257
258
							} else if (e.target.value === '') {
								embeddingModel = 'sentence-transformers/all-MiniLM-L6-v2';
259
							}
Timothy J. Baek's avatar
Timothy J. Baek committed
260
						}}
261
					>
262
						<option value="">{$i18n.t('Default (SentenceTransformers)')}</option>
263
						<option value="ollama">{$i18n.t('Ollama')}</option>
264
						<option value="openai">{$i18n.t('OpenAI')}</option>
265
					</select>
266
				</div>
267
			</div>
268
269

			{#if embeddingEngine === 'openai'}
Timothy J. Baek's avatar
Timothy J. Baek committed
270
				<div class="my-0.5 flex gap-2">
271
272
273
					<input
						class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
						placeholder={$i18n.t('API Base URL')}
274
						bind:value={OpenAIUrl}
275
276
277
278
279
280
						required
					/>

					<input
						class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
						placeholder={$i18n.t('API Key')}
281
						bind:value={OpenAIKey}
282
283
284
285
						required
					/>
				</div>
			{/if}
Timothy J. Baek's avatar
Timothy J. Baek committed
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303

			<div class=" flex w-full justify-between">
				<div class=" self-center text-xs font-medium">{$i18n.t('Hybrid Search')}</div>

				<button
					class="p-1 px-3 text-xs flex rounded transition"
					on:click={() => {
						toggleHybridSearch();
					}}
					type="button"
				>
					{#if querySettings.hybrid === true}
						<span class="ml-2 self-center">{$i18n.t('On')}</span>
					{:else}
						<span class="ml-2 self-center">{$i18n.t('Off')}</span>
					{/if}
				</button>
			</div>
304
		</div>
305

Timothy J. Baek's avatar
Timothy J. Baek committed
306
		<hr class=" dark:border-gray-700 my-1" />
Timothy J. Baek's avatar
Timothy J. Baek committed
307

Timothy J. Baek's avatar
Timothy J. Baek committed
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
		<div class="space-y-2" />
		<div>
			<div class=" mb-2 text-sm font-medium">{$i18n.t('Embedding Model')}</div>

			{#if embeddingEngine === 'ollama'}
				<div class="flex w-full">
					<div class="flex-1 mr-2">
						<select
							class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
							bind:value={embeddingModel}
							placeholder={$i18n.t('Select a model')}
							required
						>
							{#if !embeddingModel}
								<option value="" disabled selected>{$i18n.t('Select a model')}</option>
							{/if}
							{#each $models.filter((m) => m.id && !m.external) as model}
								<option value={model.name} class="bg-gray-100 dark:bg-gray-700"
									>{model.name + ' (' + (model.size / 1024 ** 3).toFixed(1) + ' GB)'}</option
								>
							{/each}
						</select>
					</div>
				</div>
			{:else}
				<div class="flex w-full">
					<div class="flex-1 mr-2">
						<input
							class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
							placeholder={$i18n.t('Set embedding model (e.g. {{model}})', {
								model: embeddingModel.slice(-40)
							})}
							bind:value={embeddingModel}
						/>
					</div>

					{#if embeddingEngine === ''}
Timothy J. Baek's avatar
Timothy J. Baek committed
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
						<button
							class="px-2.5 bg-gray-100 hover:bg-gray-200 text-gray-800 dark:bg-gray-850 dark:hover:bg-gray-800 dark:text-gray-100 rounded-lg transition"
							on:click={() => {
								embeddingModelUpdateHandler();
							}}
							disabled={updateEmbeddingModelLoading}
						>
							{#if updateEmbeddingModelLoading}
								<div class="self-center">
									<svg
										class=" w-4 h-4"
										viewBox="0 0 24 24"
										fill="currentColor"
										xmlns="http://www.w3.org/2000/svg"
										><style>
											.spinner_ajPY {
												transform-origin: center;
												animation: spinner_AtaB 0.75s infinite linear;
											}
											@keyframes spinner_AtaB {
												100% {
													transform: rotate(360deg);
												}
											}
										</style><path
											d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z"
											opacity=".25"
										/><path
											d="M10.14,1.16a11,11,0,0,0-9,8.92A1.59,1.59,0,0,0,2.46,12,1.52,1.52,0,0,0,4.11,10.7a8,8,0,0,1,6.66-6.61A1.42,1.42,0,0,0,12,2.69h0A1.57,1.57,0,0,0,10.14,1.16Z"
											class="spinner_ajPY"
										/></svg
									>
								</div>
							{:else}
								<svg
									xmlns="http://www.w3.org/2000/svg"
									viewBox="0 0 16 16"
									fill="currentColor"
									class="w-4 h-4"
								>
									<path
Timothy J. Baek's avatar
Timothy J. Baek committed
386
387
388
389
										d="M8.75 2.75a.75.75 0 0 0-1.5 0v5.69L5.03 6.22a.75.75 0 0 0-1.06 1.06l3.5 3.5a.75.75 0 0 0 1.06 0l3.5-3.5a.75.75 0 0 0-1.06-1.06L8.75 8.44V2.75Z"
									/>
									<path
										d="M3.5 9.75a.75.75 0 0 0-1.5 0v1.5A2.75 2.75 0 0 0 4.75 14h6.5A2.75 2.75 0 0 0 14 11.25v-1.5a.75.75 0 0 0-1.5 0v1.5c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25v-1.5Z"
Timothy J. Baek's avatar
Timothy J. Baek committed
390
391
392
393
									/>
								</svg>
							{/if}
						</button>
Timothy J. Baek's avatar
Timothy J. Baek committed
394
395
396
397
398
399
400
401
402
403
404
405
406
407
					{/if}
				</div>
			{/if}

			<div class="mt-2 mb-1 text-xs text-gray-400 dark:text-gray-500">
				{$i18n.t(
					'Warning: If you update or change your embedding model, you will need to re-import all documents.'
				)}
			</div>

			{#if querySettings.hybrid === true}
				<div class=" ">
					<div class=" mb-2 text-sm font-medium">{$i18n.t('Reranking Model')}</div>

408
409
410
411
					<div class="flex w-full">
						<div class="flex-1 mr-2">
							<input
								class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
Timothy J. Baek's avatar
Timothy J. Baek committed
412
413
								placeholder={$i18n.t('Set reranking model (e.g. {{model}})', {
									model: 'BAAI/bge-reranker-v2-m3'
414
								})}
Timothy J. Baek's avatar
Timothy J. Baek committed
415
								bind:value={rerankingModel}
416
417
418
419
420
							/>
						</div>
						<button
							class="px-2.5 bg-gray-100 hover:bg-gray-200 text-gray-800 dark:bg-gray-850 dark:hover:bg-gray-800 dark:text-gray-100 rounded-lg transition"
							on:click={() => {
Timothy J. Baek's avatar
Timothy J. Baek committed
421
								rerankingModelUpdateHandler();
422
							}}
Timothy J. Baek's avatar
Timothy J. Baek committed
423
							disabled={updateRerankingModelLoading}
424
						>
Timothy J. Baek's avatar
Timothy J. Baek committed
425
							{#if updateRerankingModelLoading}
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
								<div class="self-center">
									<svg
										class=" w-4 h-4"
										viewBox="0 0 24 24"
										fill="currentColor"
										xmlns="http://www.w3.org/2000/svg"
										><style>
											.spinner_ajPY {
												transform-origin: center;
												animation: spinner_AtaB 0.75s infinite linear;
											}
											@keyframes spinner_AtaB {
												100% {
													transform: rotate(360deg);
												}
											}
										</style><path
											d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z"
											opacity=".25"
										/><path
											d="M10.14,1.16a11,11,0,0,0-9,8.92A1.59,1.59,0,0,0,2.46,12,1.52,1.52,0,0,0,4.11,10.7a8,8,0,0,1,6.66-6.61A1.42,1.42,0,0,0,12,2.69h0A1.57,1.57,0,0,0,10.14,1.16Z"
											class="spinner_ajPY"
										/></svg
									>
								</div>
							{:else}
								<svg
									xmlns="http://www.w3.org/2000/svg"
									viewBox="0 0 16 16"
									fill="currentColor"
									class="w-4 h-4"
								>
									<path
										d="M8.75 2.75a.75.75 0 0 0-1.5 0v5.69L5.03 6.22a.75.75 0 0 0-1.06 1.06l3.5 3.5a.75.75 0 0 0 1.06 0l3.5-3.5a.75.75 0 0 0-1.06-1.06L8.75 8.44V2.75Z"
									/>
									<path
										d="M3.5 9.75a.75.75 0 0 0-1.5 0v1.5A2.75 2.75 0 0 0 4.75 14h6.5A2.75 2.75 0 0 0 14 11.25v-1.5a.75.75 0 0 0-1.5 0v1.5c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25v-1.5Z"
									/>
								</svg>
							{/if}
						</button>
467
					</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
468
				</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
469
470
			{/if}
		</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
471

Timothy J. Baek's avatar
Timothy J. Baek committed
472
		<hr class=" dark:border-gray-700" />
473

Timothy J. Baek's avatar
Timothy J. Baek committed
474
475
476
477
478
479
480
481
		{#if showResetConfirm}
			<div class="flex justify-between rounded-md items-center py-2 px-3.5 w-full transition">
				<div class="flex items-center space-x-3">
					<svg
						xmlns="http://www.w3.org/2000/svg"
						viewBox="0 0 16 16"
						fill="currentColor"
						class="w-4 h-4"
482
					>
Timothy J. Baek's avatar
Timothy J. Baek committed
483
484
485
486
487
						<path d="M2 3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3Z" />
						<path
							fill-rule="evenodd"
							d="M13 6H3v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V6ZM5.72 7.47a.75.75 0 0 1 1.06 0L8 8.69l1.22-1.22a.75.75 0 1 1 1.06 1.06L9.06 9.75l1.22 1.22a.75.75 0 1 1-1.06 1.06L8 10.81l-1.22 1.22a.75.75 0 0 1-1.06-1.06l1.22-1.22-1.22-1.22a.75.75 0 0 1 0-1.06Z"
							clip-rule="evenodd"
Timothy J. Baek's avatar
Timothy J. Baek committed
488
						/>
Timothy J. Baek's avatar
Timothy J. Baek committed
489
490
					</svg>
					<span>{$i18n.t('Are you sure?')}</span>
Timothy J. Baek's avatar
Timothy J. Baek committed
491
492
				</div>

Timothy J. Baek's avatar
Timothy J. Baek committed
493
494
495
496
497
498
499
500
				<div class="flex space-x-1.5 items-center">
					<button
						class="hover:text-white transition"
						on:click={() => {
							const res = resetVectorDB(localStorage.token).catch((error) => {
								toast.error(error);
								return null;
							});
Timothy J. Baek's avatar
Timothy J. Baek committed
501

Timothy J. Baek's avatar
Timothy J. Baek committed
502
503
504
							if (res) {
								toast.success($i18n.t('Success'));
							}
Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
505

Timothy J. Baek's avatar
Timothy J. Baek committed
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
							showResetConfirm = false;
						}}
					>
						<svg
							xmlns="http://www.w3.org/2000/svg"
							viewBox="0 0 20 20"
							fill="currentColor"
							class="w-4 h-4"
						>
							<path
								fill-rule="evenodd"
								d="M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z"
								clip-rule="evenodd"
							/>
						</svg>
					</button>
Timothy J. Baek's avatar
Timothy J. Baek committed
522
					<button
Timothy J. Baek's avatar
Timothy J. Baek committed
523
						class="hover:text-white transition"
Timothy J. Baek's avatar
Timothy J. Baek committed
524
						on:click={() => {
Timothy J. Baek's avatar
Timothy J. Baek committed
525
							showResetConfirm = false;
Timothy J. Baek's avatar
Timothy J. Baek committed
526
527
						}}
					>
Timothy J. Baek's avatar
Timothy J. Baek committed
528
529
530
531
532
533
534
535
536
537
						<svg
							xmlns="http://www.w3.org/2000/svg"
							viewBox="0 0 20 20"
							fill="currentColor"
							class="w-4 h-4"
						>
							<path
								d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"
							/>
						</svg>
Timothy J. Baek's avatar
Timothy J. Baek committed
538
					</button>
Timothy J. Baek's avatar
Timothy J. Baek committed
539
				</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
540
			</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
		{:else}
			<button
				class=" flex rounded-md py-2 px-3.5 w-full hover:bg-gray-200 dark:hover:bg-gray-800 transition"
				on:click={() => {
					showResetConfirm = true;
				}}
			>
				<div class=" self-center mr-3">
					<svg
						xmlns="http://www.w3.org/2000/svg"
						viewBox="0 0 16 16"
						fill="currentColor"
						class="w-4 h-4"
					>
						<path
							fill-rule="evenodd"
							d="M3.5 2A1.5 1.5 0 0 0 2 3.5v9A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 12.5 4H9.621a1.5 1.5 0 0 1-1.06-.44L7.439 2.44A1.5 1.5 0 0 0 6.38 2H3.5Zm6.75 7.75a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0 0 1.5h4.5Z"
							clip-rule="evenodd"
						/>
					</svg>
				</div>
				<div class=" self-center text-sm font-medium">{$i18n.t('Reset Vector Storage')}</div>
			</button>
		{/if}
Timothy J. Baek's avatar
Timothy J. Baek committed
565
	</div>
Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
566
567
	<div class="flex justify-end pt-3 text-sm font-medium">
		<button
Timothy J. Baek's avatar
Timothy J. Baek committed
568
			class=" px-4 py-2 bg-emerald-700 hover:bg-emerald-800 text-gray-100 transition rounded-lg"
Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
569
570
571
572
573
			type="submit"
		>
			{$i18n.t('Save')}
		</button>
	</div>
574
</form>