+page.svelte 20.3 KB
Newer Older
1
2
3
4
5
6
7
8
<script lang="ts">
	import { v4 as uuidv4 } from 'uuid';
	import toast from 'svelte-french-toast';

	import { OLLAMA_API_BASE_URL } from '$lib/constants';
	import { onMount, tick } from 'svelte';
	import { convertMessagesToHistory, splitStream } from '$lib/utils';
	import { goto } from '$app/navigation';
9
	import { config, models, modelfiles, user, settings, db, chats, chatId } from '$lib/stores';
10
11
12
13
14
15
16
17
18
19
20
21
22

	import MessageInput from '$lib/components/chat/MessageInput.svelte';
	import Messages from '$lib/components/chat/Messages.svelte';
	import ModelSelector from '$lib/components/chat/ModelSelector.svelte';
	import Navbar from '$lib/components/layout/Navbar.svelte';
	import { page } from '$app/stores';

	let loaded = false;
	let stopResponseFlag = false;
	let autoScroll = true;

	// let chatId = $page.params.id;
	let selectedModels = [''];
23
24
25
26
27
28
	let selectedModelfile = null;
	$: selectedModelfile =
		selectedModels.length === 1 &&
		$modelfiles.filter((modelfile) => modelfile.tagName === selectedModels[0]).length > 0
			? $modelfiles.filter((modelfile) => modelfile.tagName === selectedModels[0])[0]
			: null;
29

30
31
	let chat = null;

32
33
	let title = '';
	let prompt = '';
Timothy J. Baek's avatar
Timothy J. Baek committed
34
	let files = [];
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51

	let messages = [];
	let history = {
		messages: {},
		currentId: null
	};

	$: if (history.currentId !== null) {
		let _messages = [];

		let currentMessage = history.messages[history.currentId];
		while (currentMessage !== null) {
			_messages.unshift({ ...currentMessage });
			currentMessage =
				currentMessage.parentId !== null ? history.messages[currentMessage.parentId] : null;
		}
		messages = _messages;
Timothy J. Baek's avatar
Timothy J. Baek committed
52
53
	} else {
		messages = [];
54
55
56
57
	}

	$: if ($page.params.id) {
		(async () => {
58
59
			if (await loadChat()) {
				await tick();
60
61
62
63
				loaded = true;
			} else {
				await goto('/');
			}
64
65
66
67
68
69
70
71
72
		})();
	}

	//////////////////////////
	// Web functions
	//////////////////////////

	const loadChat = async () => {
		await chatId.set($page.params.id);
73
		chat = await $db.getChatById($chatId);
74

75
		const chatContent = chat.chat;
76

77
78
79
80
81
82
83
		if (chatContent) {
			console.log(chatContent);

			selectedModels =
				(chatContent?.models ?? undefined) !== undefined
					? chatContent.models
					: [chatContent.model ?? ''];
84
			history =
85
86
87
88
				(chatContent?.history ?? undefined) !== undefined
					? chatContent.history
					: convertMessagesToHistory(chatContent.messages);
			title = chatContent.title;
89

Timothy J. Baek's avatar
Timothy J. Baek committed
90
			let _settings = JSON.parse(localStorage.getItem('settings') ?? '{}');
91
			await settings.set({
Timothy J. Baek's avatar
Timothy J. Baek committed
92
				..._settings,
93
94
				system: chatContent.system ?? _settings.system,
				options: chatContent.options ?? _settings.options
95
96
97
			});
			autoScroll = true;
			await tick();
98

99
100
101
			if (messages.length > 0) {
				history.messages[messages.at(-1).id].done = true;
			}
Timothy J. Baek's avatar
Timothy J. Baek committed
102
103
			await tick();

104
			return true;
105
106
107
108
109
		} else {
			return null;
		}
	};

Timothy J. Baek's avatar
Timothy J. Baek committed
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
	const copyToClipboard = (text) => {
		if (!navigator.clipboard) {
			var textArea = document.createElement('textarea');
			textArea.value = text;

			// Avoid scrolling to bottom
			textArea.style.top = '0';
			textArea.style.left = '0';
			textArea.style.position = 'fixed';

			document.body.appendChild(textArea);
			textArea.focus();
			textArea.select();

			try {
				var successful = document.execCommand('copy');
				var msg = successful ? 'successful' : 'unsuccessful';
				console.log('Fallback: Copying text command was ' + msg);
			} catch (err) {
				console.error('Fallback: Oops, unable to copy', err);
			}

			document.body.removeChild(textArea);
			return;
		}
		navigator.clipboard.writeText(text).then(
			function () {
				console.log('Async: Copying to clipboard was successful!');
			},
			function (err) {
				console.error('Async: Could not copy text: ', err);
			}
		);
	};

145
146
147
148
	//////////////////////////
	// Ollama functions
	//////////////////////////

149
150
	const sendPrompt = async (prompt, parentId) => {
		const _chatId = JSON.parse(JSON.stringify($chatId));
151
152
		await Promise.all(
			selectedModels.map(async (model) => {
153
154
				console.log(model);
				if ($models.filter((m) => m.name === model)[0].external) {
155
					await sendPromptOpenAI(model, prompt, parentId, _chatId);
156
				} else {
157
					await sendPromptOllama(model, prompt, parentId, _chatId);
158
159
160
161
				}
			})
		);

162
		await chats.set(await $db.getChats());
163
164
	};

Timothy J. Baek's avatar
Timothy J. Baek committed
165
166
	const sendPromptOllama = async (model, userPrompt, parentId, _chatId) => {
		console.log('sendPromptOllama');
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
		let responseMessageId = uuidv4();
		let responseMessage = {
			parentId: parentId,
			id: responseMessageId,
			childrenIds: [],
			role: 'assistant',
			content: '',
			model: model
		};

		history.messages[responseMessageId] = responseMessage;
		history.currentId = responseMessageId;
		if (parentId !== null) {
			history.messages[parentId].childrenIds = [
				...history.messages[parentId].childrenIds,
				responseMessageId
			];
		}

Timothy J. Baek's avatar
Timothy J. Baek committed
186
187
		await tick();
		window.scrollTo({ top: document.body.scrollHeight });
188

Timothy J. Baek's avatar
Timothy J. Baek committed
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
		const res = await fetch(`${$settings?.API_BASE_URL ?? OLLAMA_API_BASE_URL}/chat`, {
			method: 'POST',
			headers: {
				'Content-Type': 'text/event-stream',
				...($settings.authHeader && { Authorization: $settings.authHeader }),
				...($user && { Authorization: `Bearer ${localStorage.token}` })
			},
			body: JSON.stringify({
				model: model,
				messages: [
					$settings.system
						? {
								role: 'system',
								content: $settings.system
						  }
						: undefined,
					...messages
				]
					.filter((message) => message)
Timothy J. Baek's avatar
Timothy J. Baek committed
208
209
210
211
212
213
214
215
216
					.map((message) => ({
						role: message.role,
						content: message.content,
						...(message.files && {
							images: message.files
								.filter((file) => file.type === 'image')
								.map((file) => file.url.slice(file.url.indexOf(',') + 1))
						})
					})),
Timothy J. Baek's avatar
Timothy J. Baek committed
217
218
219
220
221
222
223
224
225
226
227
				options: {
					seed: $settings.seed ?? undefined,
					temperature: $settings.temperature ?? undefined,
					repeat_penalty: $settings.repeat_penalty ?? undefined,
					top_k: $settings.top_k ?? undefined,
					top_p: $settings.top_p ?? undefined,
					num_ctx: $settings.num_ctx ?? undefined,
					...($settings.options ?? {})
				},
				format: $settings.requestFormat ?? undefined
			})
228
229
230
		}).catch((err) => {
			console.log(err);
			return null;
Timothy J. Baek's avatar
Timothy J. Baek committed
231
232
		});

233
		if (res && res.ok) {
Rohit Das's avatar
Rohit Das committed
234
235
236
237
238
239
240
241
242
243
244
245
			const reader = res.body
				.pipeThrough(new TextDecoderStream())
				.pipeThrough(splitStream('\n'))
				.getReader();

			while (true) {
				const { value, done } = await reader.read();
				if (done || stopResponseFlag || _chatId !== $chatId) {
					responseMessage.done = true;
					messages = messages;
					break;
				}
246

Rohit Das's avatar
Rohit Das committed
247
248
				try {
					let lines = value.split('\n');
249

Rohit Das's avatar
Rohit Das committed
250
251
252
253
					for (const line of lines) {
						if (line !== '') {
							console.log(line);
							let data = JSON.parse(line);
Timothy J. Baek's avatar
Timothy J. Baek committed
254

Rohit Das's avatar
Rohit Das committed
255
256
257
							if ('detail' in data) {
								throw data;
							}
Timothy J. Baek's avatar
Timothy J. Baek committed
258

Rohit Das's avatar
Rohit Das committed
259
260
261
262
263
264
265
							if (data.done == false) {
								if (responseMessage.content == '' && data.message.content == '\n') {
									continue;
								} else {
									responseMessage.content += data.message.content;
									messages = messages;
								}
266
							} else {
Rohit Das's avatar
Rohit Das committed
267
								responseMessage.done = true;
268
269
270
271
272
273
274

								if (responseMessage.content == '') {
									responseMessage.error = true;
									responseMessage.content =
										'Oops! No text generated from Ollama, Please try again.';
								}

Rohit Das's avatar
Rohit Das committed
275
276
277
								responseMessage.context = data.context ?? null;
								responseMessage.info = {
									total_duration: data.total_duration,
Timothy J. Baek's avatar
Timothy J. Baek committed
278
279
280
									load_duration: data.load_duration,
									sample_count: data.sample_count,
									sample_duration: data.sample_duration,
Rohit Das's avatar
Rohit Das committed
281
282
283
284
285
									prompt_eval_count: data.prompt_eval_count,
									prompt_eval_duration: data.prompt_eval_duration,
									eval_count: data.eval_count,
									eval_duration: data.eval_duration
								};
286
								messages = messages;
Timothy J. Baek's avatar
Timothy J. Baek committed
287

Timothy J. Baek's avatar
Timothy J. Baek committed
288
								if ($settings.notificationEnabled && !document.hasFocus()) {
Timothy J. Baek's avatar
Timothy J. Baek committed
289
290
291
292
293
294
295
296
297
298
299
300
301
									const notification = new Notification(
										selectedModelfile
											? `${
													selectedModelfile.title.charAt(0).toUpperCase() +
													selectedModelfile.title.slice(1)
											  }`
											: `Ollama - ${model}`,
										{
											body: responseMessage.content,
											icon: selectedModelfile?.imageUrl ?? '/favicon.png'
										}
									);
								}
Timothy J. Baek's avatar
Timothy J. Baek committed
302
303
304
305

								if ($settings.responseAutoCopy) {
									copyToClipboard(responseMessage.content);
								}
306
307
308
							}
						}
					}
Rohit Das's avatar
Rohit Das committed
309
310
311
312
313
314
				} catch (error) {
					console.log(error);
					if ('detail' in error) {
						toast.error(error.detail);
					}
					break;
315
				}
Rohit Das's avatar
Rohit Das committed
316
317
318

				if (autoScroll) {
					window.scrollTo({ top: document.body.scrollHeight });
319
				}
320
			}
321

322
323
324
			if ($chatId == _chatId) {
				chat = await $db.updateChatById(_chatId, {
					...chat.chat,
Rohit Das's avatar
Rohit Das committed
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
					title: title === '' ? 'New Chat' : title,
					models: selectedModels,
					system: $settings.system ?? undefined,
					options: {
						seed: $settings.seed ?? undefined,
						temperature: $settings.temperature ?? undefined,
						repeat_penalty: $settings.repeat_penalty ?? undefined,
						top_k: $settings.top_k ?? undefined,
						top_p: $settings.top_p ?? undefined,
						num_ctx: $settings.num_ctx ?? undefined,
						...($settings.options ?? {})
					},
					messages: messages,
					history: history
				});
340
			}
341
342
343
		} else {
			if (res !== null) {
				const error = await res.json();
344
345
346
				console.log(error);
				if ('detail' in error) {
					toast.error(error.detail);
347
					responseMessage.content = error.detail;
348
349
				} else {
					toast.error(error.error);
350
					responseMessage.content = error.error;
351
				}
352
353
			} else {
				toast.error(`Uh-oh! There was an issue connecting to Ollama.`);
354
				responseMessage.content = `Uh-oh! There was an issue connecting to Ollama.`;
355
356
			}

357
358
359
360
			responseMessage.error = true;
			responseMessage.content = `Uh-oh! There was an issue connecting to Ollama.`;
			responseMessage.done = true;
			messages = messages;
361
362
363
364
365
366
367
368
369
		}

		stopResponseFlag = false;
		await tick();
		if (autoScroll) {
			window.scrollTo({ top: document.body.scrollHeight });
		}

		if (messages.length == 2 && messages.at(1).content !== '') {
Timothy J. Baek's avatar
Timothy J. Baek committed
370
371
			window.history.replaceState(history.state, '', `/c/${_chatId}`);
			await generateChatTitle(_chatId, userPrompt);
372
373
374
		}
	};

Timothy J. Baek's avatar
Timothy J. Baek committed
375
	const sendPromptOpenAI = async (model, userPrompt, parentId, _chatId) => {
Timothy J. Baek's avatar
Timothy J. Baek committed
376
		if ($settings.OPENAI_API_KEY) {
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
			if (models) {
				let responseMessageId = uuidv4();

				let responseMessage = {
					parentId: parentId,
					id: responseMessageId,
					childrenIds: [],
					role: 'assistant',
					content: '',
					model: model
				};

				history.messages[responseMessageId] = responseMessage;
				history.currentId = responseMessageId;
				if (parentId !== null) {
					history.messages[parentId].childrenIds = [
						...history.messages[parentId].childrenIds,
						responseMessageId
					];
				}

				window.scrollTo({ top: document.body.scrollHeight });

400
401
402
403
404
405
				const res = await fetch(
					`${$settings.OPENAI_API_BASE_URL ?? 'https://api.openai.com/v1'}/chat/completions`,
					{
						method: 'POST',
						headers: {
							Authorization: `Bearer ${$settings.OPENAI_API_KEY}`,
Timothy J. Baek's avatar
Timothy J. Baek committed
406
							'Content-Type': 'application/json'
407
408
409
410
411
412
						},
						body: JSON.stringify({
							model: model,
							stream: true,
							messages: [
								$settings.system
413
									? {
414
415
											role: 'system',
											content: $settings.system
416
									  }
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
									: undefined,
								...messages
							]
								.filter((message) => message)
								.map((message) => ({
									role: message.role,
									...(message.files
										? {
												content: [
													{
														type: 'text',
														text: message.content
													},
													...message.files
														.filter((file) => file.type === 'image')
														.map((file) => ({
															type: 'image_url',
															image_url: {
																url: file.url
															}
														}))
												]
										  }
										: { content: message.content })
								})),
							temperature: $settings.temperature ?? undefined,
							top_p: $settings.top_p ?? undefined,
							num_ctx: $settings.num_ctx ?? undefined,
							frequency_penalty: $settings.repeat_penalty ?? undefined
						})
447
					}
448
449
450
451
				).catch((err) => {
					console.log(err);
					return null;
				});
452

453
454
455
456
457
458
459
460
461
462
463
464
465
				if (res && res.ok) {
					const reader = res.body
						.pipeThrough(new TextDecoderStream())
						.pipeThrough(splitStream('\n'))
						.getReader();

					while (true) {
						const { value, done } = await reader.read();
						if (done || stopResponseFlag || _chatId !== $chatId) {
							responseMessage.done = true;
							messages = messages;
							break;
						}
466

467
468
						try {
							let lines = value.split('\n');
469

470
471
472
473
474
							for (const line of lines) {
								if (line !== '') {
									console.log(line);
									if (line === 'data: [DONE]') {
										responseMessage.done = true;
475
										messages = messages;
476
477
478
479
480
481
482
483
484
485
									} else {
										let data = JSON.parse(line.replace(/^data: /, ''));
										console.log(data);

										if (responseMessage.content == '' && data.choices[0].delta.content == '\n') {
											continue;
										} else {
											responseMessage.content += data.choices[0].delta.content ?? '';
											messages = messages;
										}
486
487
488
									}
								}
							}
489
490
						} catch (error) {
							console.log(error);
491
492
						}

493
494
495
496
497
498
						if ($settings.notificationEnabled && !document.hasFocus()) {
							const notification = new Notification(`OpenAI ${model}`, {
								body: responseMessage.content,
								icon: '/favicon.png'
							});
						}
499

500
501
502
						if ($settings.responseAutoCopy) {
							copyToClipboard(responseMessage.content);
						}
503

504
505
506
						if (autoScroll) {
							window.scrollTo({ top: document.body.scrollHeight });
						}
507
					}
508

509
510
511
					if ($chatId == _chatId) {
						chat = await $db.updateChatById(_chatId, {
							...chat.chat,
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
							title: title === '' ? 'New Chat' : title,
							models: selectedModels,
							system: $settings.system ?? undefined,
							options: {
								seed: $settings.seed ?? undefined,
								temperature: $settings.temperature ?? undefined,
								repeat_penalty: $settings.repeat_penalty ?? undefined,
								top_k: $settings.top_k ?? undefined,
								top_p: $settings.top_p ?? undefined,
								num_ctx: $settings.num_ctx ?? undefined,
								...($settings.options ?? {})
							},
							messages: messages,
							history: history
						});
					}
				} else {
					if (res !== null) {
						const error = await res.json();
						console.log(error);
						if ('detail' in error) {
							toast.error(error.detail);
							responseMessage.content = error.detail;
						} else {
							if ('message' in error.error) {
								toast.error(error.error.message);
								responseMessage.content = error.error.message;
							} else {
								toast.error(error.error);
								responseMessage.content = error.error;
							}
						}
					} else {
						toast.error(`Uh-oh! There was an issue connecting to ${model}.`);
						responseMessage.content = `Uh-oh! There was an issue connecting to ${model}.`;
					}
Timothy J. Baek's avatar
Timothy J. Baek committed
548

549
550
551
552
					responseMessage.error = true;
					responseMessage.content = `Uh-oh! There was an issue connecting to ${model}.`;
					responseMessage.done = true;
					messages = messages;
Timothy J. Baek's avatar
Timothy J. Baek committed
553
554
				}

555
556
				stopResponseFlag = false;
				await tick();
Timothy J. Baek's avatar
Timothy J. Baek committed
557

558
559
560
561
562
				if (autoScroll) {
					window.scrollTo({ top: document.body.scrollHeight });
				}

				if (messages.length == 2) {
Timothy J. Baek's avatar
Timothy J. Baek committed
563
564
					window.history.replaceState(history.state, '', `/c/${_chatId}`);
					await setChatTitle(_chatId, userPrompt);
565
566
567
568
569
570
				}
			}
		}
	};

	const submitPrompt = async (userPrompt) => {
571
		console.log('submitPrompt', $chatId);
572
573
574
575
576
577
578
579
580
581
582
583
584
585

		if (selectedModels.includes('')) {
			toast.error('Model not selected');
		} else if (messages.length != 0 && messages.at(-1).done != true) {
			console.log('wait');
		} else {
			document.getElementById('chat-textarea').style.height = '';

			let userMessageId = uuidv4();
			let userMessage = {
				id: userMessageId,
				parentId: messages.length !== 0 ? messages.at(-1).id : null,
				childrenIds: [],
				role: 'user',
Timothy J. Baek's avatar
Timothy J. Baek committed
586
587
				content: userPrompt,
				files: files.length > 0 ? files : undefined
588
589
590
591
592
593
594
595
596
			};

			if (messages.length !== 0) {
				history.messages[messages.at(-1).id].childrenIds.push(userMessageId);
			}

			history.messages[userMessageId] = userMessage;
			history.currentId = userMessageId;

Timothy J. Baek's avatar
Timothy J. Baek committed
597
			await tick();
598

Timothy J. Baek's avatar
Timothy J. Baek committed
599
			if (messages.length == 1) {
600
601
				chat = await $db.createNewChat({
					id: $chatId,
602
603
604
605
606
607
608
609
					title: 'New Chat',
					models: selectedModels,
					system: $settings.system ?? undefined,
					options: {
						seed: $settings.seed ?? undefined,
						temperature: $settings.temperature ?? undefined,
						repeat_penalty: $settings.repeat_penalty ?? undefined,
						top_k: $settings.top_k ?? undefined,
Anthony Cucci's avatar
Anthony Cucci committed
610
						top_p: $settings.top_p ?? undefined,
611
612
						num_ctx: $settings.num_ctx ?? undefined,
						...($settings.options ?? {})
613
614
					},
					messages: messages,
615
					history: history
616
				});
617
618
619
620
621

				console.log(chat);

				await chatId.set(chat.id);
				await tick();
622
623
			}

Timothy J. Baek's avatar
Timothy J. Baek committed
624
625
626
			prompt = '';
			files = [];

627
628
629
630
			setTimeout(() => {
				window.scrollTo({ top: document.body.scrollHeight, behavior: 'smooth' });
			}, 50);

631
			await sendPrompt(userPrompt, userMessageId);
632
633
634
635
636
637
638
639
640
		}
	};

	const stopResponse = () => {
		stopResponseFlag = true;
		console.log('stopResponse');
	};

	const regenerateResponse = async () => {
Timothy J. Baek's avatar
Timothy J. Baek committed
641
642
643
		const _chatId = JSON.parse(JSON.stringify($chatId));
		console.log('regenerateResponse', _chatId);

644
645
646
647
648
649
650
		if (messages.length != 0 && messages.at(-1).done == true) {
			messages.splice(messages.length - 1, 1);
			messages = messages;

			let userMessage = messages.at(-1);
			let userPrompt = userMessage.content;

Timothy J. Baek's avatar
Timothy J. Baek committed
651
			await sendPrompt(userPrompt, userMessage.id, _chatId);
652
653
654
655
		}
	};

	const generateChatTitle = async (_chatId, userPrompt) => {
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
		if ($settings.titleAutoGenerate ?? true) {
			console.log('generateChatTitle');

			const res = await fetch(`${$settings?.API_BASE_URL ?? OLLAMA_API_BASE_URL}/generate`, {
				method: 'POST',
				headers: {
					'Content-Type': 'text/event-stream',
					...($settings.authHeader && { Authorization: $settings.authHeader }),
					...($user && { Authorization: `Bearer ${localStorage.token}` })
				},
				body: JSON.stringify({
					model: selectedModels[0],
					prompt: `Generate a brief 3-5 word title for this question, excluding the term 'title.' Then, please reply with only the title: ${userPrompt}`,
					stream: false
				})
671
			})
672
673
674
675
676
677
678
679
680
681
682
				.then(async (res) => {
					if (!res.ok) throw await res.json();
					return res.json();
				})
				.catch((error) => {
					if ('detail' in error) {
						toast.error(error.detail);
					}
					console.log(error);
					return null;
				});
683

684
685
686
687
688
			if (res) {
				await setChatTitle(_chatId, res.response === '' ? 'New Chat' : res.response);
			}
		} else {
			await setChatTitle(_chatId, `${userPrompt}`);
689
690
691
692
		}
	};

	const setChatTitle = async (_chatId, _title) => {
693
694
695
696
		chat = await $db.updateChatById(_chatId, {
			...chat.chat,
			title: _title
		});
697
		if (_chatId === $chatId) {
698
699
700
701
702
703
704
705
706
707
708
			title = _title;
		}
	};
</script>

<svelte:window
	on:scroll={(e) => {
		autoScroll = window.innerHeight + window.scrollY >= document.body.offsetHeight - 40;
	}}
/>

Timothy J. Baek's avatar
Timothy J. Baek committed
709
{#if loaded}
710
711
712
713
714
715
716
	<Navbar
		{title}
		shareEnabled={messages.length > 0}
		initNewChat={() => {
			goto('/');
		}}
	/>
Timothy J. Baek's avatar
Timothy J. Baek committed
717
718
719
720
721
722
723
	<div class="min-h-screen w-full flex justify-center">
		<div class=" py-2.5 flex flex-col justify-between w-full">
			<div class="max-w-2xl mx-auto w-full px-3 md:px-0 mt-10">
				<ModelSelector bind:selectedModels disabled={messages.length > 0} />
			</div>

			<div class=" h-full mt-10 mb-32 w-full flex flex-col">
724
				<Messages
725
					chatId={$chatId}
726
727
728
729
730
					{selectedModels}
					{selectedModelfile}
					bind:history
					bind:messages
					bind:autoScroll
Timothy J. Baek's avatar
Timothy J. Baek committed
731
					bottomPadding={files.length > 0}
732
733
734
					{sendPrompt}
					{regenerateResponse}
				/>
Timothy J. Baek's avatar
Timothy J. Baek committed
735
			</div>
736
737
		</div>

738
		<MessageInput
Timothy J. Baek's avatar
Timothy J. Baek committed
739
			bind:files
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
			bind:prompt
			bind:autoScroll
			suggestionPrompts={selectedModelfile?.suggestionPrompts ?? [
				{
					title: ['Help me study', 'vocabulary for a college entrance exam'],
					content: `Help me study vocabulary: write a sentence for me to fill in the blank, and I'll try to pick the correct option.`
				},
				{
					title: ['Give me ideas', `for what to do with my kids' art`],
					content: `What are 5 creative things I could do with my kids' art? I don't want to throw them away, but it's also so much clutter.`
				},
				{
					title: ['Tell me a fun fact', 'about the Roman Empire'],
					content: 'Tell me a random fun fact about the Roman Empire'
				},
				{
					title: ['Show me a code snippet', `of a website's sticky header`],
					content: `Show me a code snippet of a website's sticky header in CSS and JavaScript.`
				}
			]}
			{messages}
			{submitPrompt}
			{stopResponse}
		/>
764
	</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
765
{/if}