+page.svelte 20.9 KB
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
3
4
<script lang="ts">
	import toast from 'svelte-french-toast';
	import Navbar from '$lib/components/layout/Navbar.svelte';

5
	import { v4 as uuidv4 } from 'uuid';
Timothy J. Baek's avatar
Timothy J. Baek committed
6
	import { marked } from 'marked';
7
8
	import hljs from 'highlight.js';
	import 'highlight.js/styles/dark.min.css';
Timothy J. Baek's avatar
Timothy J. Baek committed
9
10

	import type { PageData } from './$types';
11
	import { onMount, tick } from 'svelte';
Timothy J. Baek's avatar
Timothy J. Baek committed
12

13
14
	import { openDB, deleteDB } from 'idb';

Timothy J. Baek's avatar
Timothy J. Baek committed
15
	export let data: PageData;
16
	$: ({ models, ENDPOINT } = data);
17
	let textareaElement;
18
	let db;
Timothy J. Baek's avatar
Timothy J. Baek committed
19
20

	let selectedModel = '';
21
22
	let systemPrompt = '';
	let temperature = '';
23
24
25
26

	let chats = [];
	let chatId = uuidv4();
	let title = ``;
Timothy J. Baek's avatar
Timothy J. Baek committed
27
	let prompt = '';
28
	let messages = [];
Timothy J. Baek's avatar
Timothy J. Baek committed
29

30
	onMount(async () => {
31
32
33
34
35
36
37
38
39
		let settings = localStorage.getItem('settings');
		if (settings) {
			settings = JSON.parse(settings);
			console.log(settings);

			selectedModel = settings.model ?? '';
			systemPrompt = settings.systemPrompt ?? '';
			temperature = settings.temperature ?? '';
		}
40
41
42
43
44
45
46
47
48
49
50
51
52
53

		db = await openDB('Chats', 1, {
			upgrade(db) {
				const store = db.createObjectStore('chats', {
					keyPath: 'id',
					autoIncrement: true
				});
				store.createIndex('timestamp', 'timestamp');
			}
		});

		chats = await db.getAllFromIndex('chats', 'timestamp');
		console.log(chats);
		console.log(chatId);
54
55
	});

56
57
58
	//////////////////////////
	// Helper functions
	//////////////////////////
Timothy J. Baek's avatar
Timothy J. Baek committed
59

60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
	const splitStream = (splitOn) => {
		let buffer = '';
		return new TransformStream({
			transform(chunk, controller) {
				buffer += chunk;
				const parts = buffer.split(splitOn);
				parts.slice(0, -1).forEach((part) => controller.enqueue(part));
				buffer = parts[parts.length - 1];
			},
			flush(controller) {
				if (buffer) controller.enqueue(buffer);
			}
		});
	};

75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
	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!');
				toast.success('Copying to clipboard was successful!');
			},
			function (err) {
				console.error('Async: Could not copy text: ', err);
			}
		);
	};

111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
	//////////////////////////
	// Web functions
	//////////////////////////

	const saveDefaultModel = () => {
		let settings = localStorage.getItem('settings') ?? '{}';
		if (settings) {
			settings = JSON.parse(settings);
			settings.model = selectedModel;
			localStorage.setItem('settings', JSON.stringify(settings));
		}

		console.log('saved');
		toast.success('Default model updated');
	};

127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
	const createNewChat = () => {
		if (messages.length > 0) {
			messages = [];
			title = '';
			chatId = uuidv4();
		}
	};

	const loadChat = async (id) => {
		const chat = await db.get('chats', id);
		messages = chat.messages;
		title = chat.title;
		chatId = chat.id;
	};

	const deleteChatHistory = async () => {
		const tx = db.transaction('chats', 'readwrite');
		await Promise.all([tx.store.clear(), tx.done]);
		chats = await db.getAllFromIndex('chats', 'timestamp');
	};

148
149
150
151
	//////////////////////////
	// Ollama functions
	//////////////////////////

152
	const submitPrompt = async (user_prompt) => {
Timothy J. Baek's avatar
Timothy J. Baek committed
153
		console.log('submitPrompt');
154

Timothy J. Baek's avatar
Timothy J. Baek committed
155
156
		if (selectedModel === '') {
			toast.error('Model not selected');
157
		} else if (messages.length != 0 && messages.at(-1).done != true) {
Timothy J. Baek's avatar
Timothy J. Baek committed
158
159
			console.log('wait');
		} else {
160
161
162
163
164
165
166
167
168
			if (messages.length == 0) {
				await db.put('chats', {
					id: chatId,
					title: 'New Chat',
					timestamp: Date.now(),
					messages: messages
				});
				chats = await db.getAllFromIndex('chats', 'timestamp');
			}
169
170
171
172
173
174
175
			messages = [
				...messages,
				{
					role: 'user',
					content: user_prompt
				}
			];
Timothy J. Baek's avatar
Timothy J. Baek committed
176
177
			prompt = '';

178
			textareaElement.style.height = '';
179
180
181
182
			setTimeout(() => {
				window.scrollTo({ top: document.body.scrollHeight, behavior: 'smooth' });
			}, 50);

183
			let responseMessage = {
Timothy J. Baek's avatar
Timothy J. Baek committed
184
185
186
				role: 'assistant',
				content: ''
			};
187
188

			messages = [...messages, responseMessage];
Timothy J. Baek's avatar
Timothy J. Baek committed
189
190
			window.scrollTo({ top: document.body.scrollHeight });

Timothy J. Baek's avatar
Timothy J. Baek committed
191
192
193
194
195
196
197
198
			const res = await fetch(`${ENDPOINT}/api/generate`, {
				method: 'POST',
				headers: {
					'Content-Type': 'text/event-stream'
				},
				body: JSON.stringify({
					model: selectedModel,
					prompt: user_prompt,
199
200
201
202
					context:
						messages.length > 3 && messages.at(-3).context != undefined
							? messages.at(-3).context
							: undefined
Timothy J. Baek's avatar
Timothy J. Baek committed
203
204
205
				})
			});

206
207
208
209
			const reader = res.body
				.pipeThrough(new TextDecoderStream())
				.pipeThrough(splitStream('\n'))
				.getReader();
210

Timothy J. Baek's avatar
Timothy J. Baek committed
211
212
213
214
215
			while (true) {
				const { value, done } = await reader.read();
				if (done) break;

				try {
216
217
218
219
220
221
222
					let lines = value.split('\n');

					for (const line of lines) {
						if (line !== '') {
							console.log(line);
							let data = JSON.parse(line);
							if (data.done == false) {
223
								if (responseMessage.content == '' && data.response == '\n') {
224
225
									continue;
								} else {
226
227
									responseMessage.content += data.response;
									messages = messages;
228
229
								}
							} else {
230
231
232
								responseMessage.done = true;
								responseMessage.context = data.context;
								messages = messages;
233
								hljs.highlightAll();
234
							}
Timothy J. Baek's avatar
Timothy J. Baek committed
235
236
237
238
239
						}
					}
				} catch (error) {
					console.log(error);
				}
240
				window.scrollTo({ top: document.body.scrollHeight });
Timothy J. Baek's avatar
Timothy J. Baek committed
241
			}
242
243

			window.scrollTo({ top: document.body.scrollHeight });
244
245
246
247
248
249
250
251
252
253
254

			if (messages.length == 2) {
				await generateTitle(user_prompt);
			}
			await db.put('chats', {
				id: chatId,
				title: title,
				timestamp: Date.now(),
				messages: messages
			});
			chats = await db.getAllFromIndex('chats', 'timestamp');
Timothy J. Baek's avatar
Timothy J. Baek committed
255
256
257
		}
	};

258
259
	const regenerateResponse = async () => {
		console.log('regenerateResponse');
Timothy J. Baek's avatar
Timothy J. Baek committed
260

261
262
263
		if (messages.length != 0 && messages.at(-1).done == true) {
			messages.splice(messages.length - 1, 1);
			messages = messages;
Timothy J. Baek's avatar
Timothy J. Baek committed
264

265
			let lastUserMessage = messages.at(-1);
Timothy J. Baek's avatar
Timothy J. Baek committed
266

267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
			let responseMessage = {
				role: 'assistant',
				content: ''
			};

			messages = [...messages, responseMessage];
			window.scrollTo({ top: document.body.scrollHeight });

			const res = await fetch(`${ENDPOINT}/api/generate`, {
				method: 'POST',
				headers: {
					'Content-Type': 'text/event-stream'
				},
				body: JSON.stringify({
					model: selectedModel,
					prompt: lastUserMessage.content,
					context:
						messages.length > 3 && messages.at(-3).context != undefined
							? messages.at(-3).context
							: undefined
				})
			});

			const reader = res.body
				.pipeThrough(new TextDecoderStream())
				.pipeThrough(splitStream('\n'))
				.getReader();

			while (true) {
				const { value, done } = await reader.read();
				if (done) break;

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

					for (const line of lines) {
						if (line !== '') {
							console.log(line);
							let data = JSON.parse(line);
							if (data.done == false) {
								if (responseMessage.content == '' && data.response == '\n') {
									continue;
								} else {
									responseMessage.content += data.response;
									messages = messages;
								}
							} else {
								responseMessage.done = true;
								responseMessage.context = data.context;
								messages = messages;
317
								hljs.highlightAll();
318
319
320
321
322
323
324
							}
						}
					}
				} catch (error) {
					console.log(error);
				}
				window.scrollTo({ top: document.body.scrollHeight });
Timothy J. Baek's avatar
Timothy J. Baek committed
325
326
			}

327
			window.scrollTo({ top: document.body.scrollHeight });
328
329
330
331
332
333
334
			await db.put('chats', {
				id: chatId,
				title: title,
				timestamp: Date.now(),
				messages: messages
			});
			chats = await db.getAllFromIndex('chats', 'timestamp');
Timothy J. Baek's avatar
Timothy J. Baek committed
335
		}
336
337

		console.log(messages);
Timothy J. Baek's avatar
Timothy J. Baek committed
338
	};
339
340
341
342
343
344
345
346
347
348
349

	const generateTitle = async (user_prompt) => {
		console.log('generateTitle');

		const res = await fetch(`${ENDPOINT}/api/generate`, {
			method: 'POST',
			headers: {
				'Content-Type': 'text/event-stream'
			},
			body: JSON.stringify({
				model: selectedModel,
Timothy J. Baek's avatar
Timothy J. Baek committed
350
				prompt: `Generate a brief 3-5 word title for this question, excluding the term 'title.' Then, please reply with only the title: ${user_prompt}`,
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
				stream: false
			})
		})
			.then(async (res) => {
				if (!res.ok) throw await res.json();
				return res.json();
			})
			.catch((error) => {
				console.log(error);
				return null;
			});

		if (res) {
			console.log(res);
			title = res.response;
		}
	};
Timothy J. Baek's avatar
Timothy J. Baek committed
368
369
370
371
</script>

<div class="app text-gray-100">
	<div class=" bg-gray-800 min-h-screen overflow-auto flex flex-row">
372
		<Navbar {chats} {title} {loadChat} {createNewChat} {deleteChatHistory} />
Timothy J. Baek's avatar
Timothy J. Baek committed
373
374
375
376
377
378
379

		<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-2.5 mt-14">
					<div class="p-3 rounded-lg bg-gray-900">
						<div>
							<label for="models" class="block mb-2 text-sm font-medium text-gray-200">Model</label>
380
381
382
383
384
385
386
387
388
389

							<div>
								<select
									id="models"
									class="outline-none border border-gray-600 bg-gray-700 text-gray-200 text-sm rounded-lg block w-full p-2.5 placeholder-gray-400"
									bind:value={selectedModel}
									disabled={messages.length != 0}
								>
									<option value="" selected>Select a model</option>

Timothy J. Baek's avatar
Timothy J. Baek committed
390
									{#each models as model}
391
392
393
394
395
396
397
										<option value={model.name}>{model.name}</option>
									{/each}
								</select>
								<div class="text-right mt-1.5 text-xs text-gray-500">
									<button on:click={saveDefaultModel}> Set as default</button>
								</div>
							</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
398
399
400
401
						</div>
					</div>
				</div>

402
				<div class=" h-full mb-48 w-full flex flex-col">
403
					{#if messages.length == 0}
404
						<div class="m-auto text-center max-w-md pb-16">
Timothy J. Baek's avatar
Timothy J. Baek committed
405
							<div class="flex justify-center mt-8">
Timothy J. Baek's avatar
Timothy J. Baek committed
406
407
408
409
410
411
								<img src="/ollama.png" class="w-16 invert-[80%]" />
							</div>
							<div class="mt-6 text-3xl text-gray-500 font-semibold">
								Get up and running with large language models, locally.
							</div>

Timothy J. Baek's avatar
Timothy J. Baek committed
412
							<div class=" my-4 text-gray-600">
Timothy J. Baek's avatar
Timothy J. Baek committed
413
414
415
								Run Llama 2, Code Llama, and other models. <br /> Customize and create your own.
							</div>
						</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
416
					{:else}
417
418
						{#each messages as message, messageIdx}
							<div class=" w-full {message.role == 'user' ? '' : ' bg-gray-700'}">
Timothy J. Baek's avatar
Timothy J. Baek committed
419
								<div class="flex justify-between p-5 py-10 max-w-3xl mx-auto rounded-lg">
Timothy J. Baek's avatar
Timothy J. Baek committed
420
									<div class="space-x-7 flex w-full">
Timothy J. Baek's avatar
Timothy J. Baek committed
421
422
										<div class="">
											<img
423
												src="/{message.role == 'user' ? 'user' : 'favicon'}.png"
Timothy J. Baek's avatar
Timothy J. Baek committed
424
425
426
427
												class=" max-w-[32px] object-cover rounded"
											/>
										</div>

428
										{#if message.role != 'user' && message.content == ''}
Timothy J. Baek's avatar
Timothy J. Baek committed
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
											<div class="w-full pr-28">
												<div class="animate-pulse flex w-full">
													<div class="space-y-2 w-full">
														<div class="h-2 bg-gray-600 rounded mr-14" />

														<div class="grid grid-cols-3 gap-4">
															<div class="h-2 bg-gray-600 rounded col-span-2" />
															<div class="h-2 bg-gray-600 rounded col-span-1" />
														</div>
														<div class="grid grid-cols-4 gap-4">
															<div class="h-2 bg-gray-600 rounded col-span-1" />
															<div class="h-2 bg-gray-600 rounded col-span-2" />
															<div class="h-2 bg-gray-600 rounded col-span-1 mr-4" />
														</div>

														<div class="h-2 bg-gray-600 rounded" />
													</div>
												</div>
											</div>
										{:else}
Timothy J. Baek's avatar
Timothy J. Baek committed
449
											<div class="markdown-body whitespace-pre-line">
450
												{@html marked.parse(message.content)}
Timothy J. Baek's avatar
Timothy J. Baek committed
451
452
453
											</div>
										{/if}
										<!-- {} -->
Timothy J. Baek's avatar
Timothy J. Baek committed
454
455
456
									</div>

									<div>
457
										{#if message.role != 'user' && message.done}
Timothy J. Baek's avatar
Timothy J. Baek committed
458
459
460
											<button
												class="p-1 rounded hover:bg-gray-700 transition"
												on:click={() => {
461
													copyToClipboard(message.content);
Timothy J. Baek's avatar
Timothy J. Baek committed
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
												}}
											>
												<svg
													xmlns="http://www.w3.org/2000/svg"
													fill="none"
													viewBox="0 0 24 24"
													stroke-width="1.5"
													stroke="currentColor"
													class="w-4 h-4"
												>
													<path
														stroke-linecap="round"
														stroke-linejoin="round"
														d="M15.666 3.888A2.25 2.25 0 0013.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0c.055.194.084.4.084.612v0a.75.75 0 01-.75.75H9a.75.75 0 01-.75-.75v0c0-.212.03-.418.084-.612m7.332 0c.646.049 1.288.11 1.927.184 1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 01-2.25 2.25H6.75A2.25 2.25 0 014.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48.208 48.208 0 011.927-.184"
													/>
												</svg>
											</button>
										{/if}
									</div>
								</div>
							</div>
						{/each}
					{/if}
				</div>
			</div>

			<div class="fixed bottom-0 w-full">
				<!-- <hr class=" mb-3 border-gray-600" /> -->

				<div class=" bg-gradient-to-t from-gray-900 pt-5">
					<div class="max-w-3xl p-2.5 -mb-0.5 mx-auto inset-x-0">
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
						{#if messages.length == 0}
							<div class=" grid sm:grid-cols-2 gap-2.5 mb-4 md:p-2 text-left">
								<button
									class=" flex justify-between w-full px-4 py-2.5 bg-gray-800 hover:bg-gray-700 outline outline-1 outline-gray-600 rounded-lg transition group"
									on:click={() => {
										submitPrompt(`Tell me a random fun fact about the Roman Empire`);
									}}
								>
									<div class="flex flex-col text-left">
										<div class="text-sm font-medium text-gray-300">Tell me a fun fact</div>
										<div class="text-sm text-gray-500">about the Roman Empire</div>
									</div>

									<div class="self-center group-hover:text-gray-300 text-gray-800 transition">
										<svg
											xmlns="http://www.w3.org/2000/svg"
											viewBox="0 0 16 16"
											fill="none"
											class="w-4 h-4"
											><path
												d="M.5 1.163A1 1 0 0 1 1.97.28l12.868 6.837a1 1 0 0 1 0 1.766L1.969 15.72A1 1 0 0 1 .5 14.836V10.33a1 1 0 0 1 .816-.983L8.5 8 1.316 6.653A1 1 0 0 1 .5 5.67V1.163Z"
												fill="currentColor"
											/></svg
										>
									</div>
								</button>

								<button
									class="flex justify-between w-full px-4 py-2.5 bg-gray-800 hover:bg-gray-700 outline outline-1 outline-gray-600 rounded-lg transition group"
									on:click={() => {
										submitPrompt(
											`Show me a code snippet of a website's sticky header in CSS and JavaScript.`
										);
									}}
								>
									<div class="flex flex-col text-left">
										<div class="text-sm font-medium text-gray-300">Show me a code snippet</div>
										<div class="text-sm text-gray-500">of a website's sticky header</div>
									</div>
									<div class="self-center group-hover:text-gray-300 text-gray-800 transition">
										<svg
											xmlns="http://www.w3.org/2000/svg"
											viewBox="0 0 16 16"
											fill="none"
											class="w-4 h-4"
											><path
												d="M.5 1.163A1 1 0 0 1 1.97.28l12.868 6.837a1 1 0 0 1 0 1.766L1.969 15.72A1 1 0 0 1 .5 14.836V10.33a1 1 0 0 1 .816-.983L8.5 8 1.316 6.653A1 1 0 0 1 .5 5.67V1.163Z"
												fill="currentColor"
											/></svg
										>
									</div>
								</button>

								<button
									class=" hidden sm:flex justify-between w-full px-4 py-2.5 bg-gray-800 hover:bg-gray-700 outline outline-1 outline-gray-600 rounded-lg transition group"
									on:click={() => {
										submitPrompt(
											`Help me study vocabulary: write a sentence for me to fill in the blank, and I'll try to pick the correct option.`
										);
									}}
								>
									<div class="flex flex-col text-left">
										<div class="text-sm font-medium text-gray-300">Help me study</div>
										<div class="text-sm text-gray-500">vocabulary for a college entrance exam</div>
									</div>
									<div class="self-center group-hover:text-gray-300 text-gray-800 transition">
										<svg
											xmlns="http://www.w3.org/2000/svg"
											viewBox="0 0 16 16"
											fill="none"
											class="w-4 h-4"
											><path
												d="M.5 1.163A1 1 0 0 1 1.97.28l12.868 6.837a1 1 0 0 1 0 1.766L1.969 15.72A1 1 0 0 1 .5 14.836V10.33a1 1 0 0 1 .816-.983L8.5 8 1.316 6.653A1 1 0 0 1 .5 5.67V1.163Z"
												fill="currentColor"
											/></svg
										>
									</div>
								</button>

								<button
									class="  hidden sm:flex justify-between w-full px-4 py-2.5 bg-gray-800 hover:bg-gray-700 outline outline-1 outline-gray-600 rounded-lg transition group"
									on:click={() => {
										submitPrompt(
											`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.`
										);
									}}
								>
									<div class="flex flex-col text-left">
										<div class="text-sm font-medium text-gray-300">Give me ideas</div>
										<div class="text-sm text-gray-500">for what to do with my kids' art</div>
									</div>
									<div class="self-center group-hover:text-gray-300 text-gray-800 transition">
										<svg
											xmlns="http://www.w3.org/2000/svg"
											viewBox="0 0 16 16"
											fill="none"
											class="w-4 h-4"
											><path
												d="M.5 1.163A1 1 0 0 1 1.97.28l12.868 6.837a1 1 0 0 1 0 1.766L1.969 15.72A1 1 0 0 1 .5 14.836V10.33a1 1 0 0 1 .816-.983L8.5 8 1.316 6.653A1 1 0 0 1 .5 5.67V1.163Z"
												fill="currentColor"
											/></svg
										>
									</div>
								</button>
							</div>
						{/if}

600
601
602
						{#if messages.length != 0 && messages.at(-1).role == 'assistant' && messages.at(-1).done == true}
							<div class=" flex justify-end mb-2.5">
								<button
603
									class=" flex px-4 py-2.5 bg-gray-800 hover:bg-gray-700 outline outline-1 outline-gray-600 rounded-lg"
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
									on:click={regenerateResponse}
								>
									<div class=" self-center mr-1">
										<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="M15.312 11.424a5.5 5.5 0 01-9.201 2.466l-.312-.311h2.433a.75.75 0 000-1.5H3.989a.75.75 0 00-.75.75v4.242a.75.75 0 001.5 0v-2.43l.31.31a7 7 0 0011.712-3.138.75.75 0 00-1.449-.39zm1.23-3.723a.75.75 0 00.219-.53V2.929a.75.75 0 00-1.5 0V5.36l-.31-.31A7 7 0 003.239 8.188a.75.75 0 101.448.389A5.5 5.5 0 0113.89 6.11l.311.31h-2.432a.75.75 0 000 1.5h4.243a.75.75 0 00.53-.219z"
												clip-rule="evenodd"
											/>
										</svg>
									</div>
									<div class=" self-center text-sm">Regenerate</div>
								</button>
							</div>
						{/if}
624
625
626
627
628
629
						<form
							class=" flex shadow-sm relative w-full"
							on:submit|preventDefault={() => {
								submitPrompt(prompt);
							}}
						>
Timothy J. Baek's avatar
Timothy J. Baek committed
630
631
632
633
634
635
636
637
638
639
							<textarea
								class="rounded-xl bg-gray-700 outline-none w-full py-3 px-5 pr-12 resize-none"
								placeholder="Send a message"
								bind:this={textareaElement}
								bind:value={prompt}
								on:keypress={(e) => {
									if (e.keyCode == 13 && !e.shiftKey) {
										e.preventDefault();
									}
									if (prompt !== '' && e.keyCode == 13 && !e.shiftKey) {
640
										submitPrompt(prompt);
Timothy J. Baek's avatar
Timothy J. Baek committed
641
642
643
644
645
646
647
648
649
650
									}
								}}
								rows="1"
								on:input={() => {
									textareaElement.style.height = '';
									textareaElement.style.height = Math.min(textareaElement.scrollHeight, 200) + 'px';
								}}
							/>
							<div class=" absolute right-0 bottom-0">
								<div class="pr-3 pb-2">
651
									{#if messages.length == 0 || messages.at(-1).done == true}
Timothy J. Baek's avatar
Timothy J. Baek committed
652
653
654
655
656
										<button
											class="{prompt !== ''
												? 'bg-emerald-600 text-gray-100 hover:bg-emerald-700 '
												: 'text-gray-600 disabled'} transition rounded p-2"
											type="submit"
Timothy J. Baek's avatar
Timothy J. Baek committed
657
										>
Timothy J. Baek's avatar
Timothy J. Baek committed
658
659
660
661
662
663
664
665
666
667
668
669
670
671
											<svg
												xmlns="http://www.w3.org/2000/svg"
												viewBox="0 0 16 16"
												fill="none"
												class="w-4 h-4"
												><path
													d="M.5 1.163A1 1 0 0 1 1.97.28l12.868 6.837a1 1 0 0 1 0 1.766L1.969 15.72A1 1 0 0 1 .5 14.836V10.33a1 1 0 0 1 .816-.983L8.5 8 1.316 6.653A1 1 0 0 1 .5 5.67V1.163Z"
													fill="currentColor"
												/></svg
											>
										</button>
									{:else}
										<div class="loading mb-1.5 mr-1 font-semibold text-lg">...</div>
									{/if}
Timothy J. Baek's avatar
Timothy J. Baek committed
672
673
674
675
676
								</div>
							</div>
						</form>

						<div class="mt-2.5 text-xs text-gray-500 text-center">
Timothy J. Baek's avatar
Timothy J. Baek committed
677
							LLMs may produce inaccurate information about people, places, or facts.
Timothy J. Baek's avatar
Timothy J. Baek committed
678
679
680
681
682
683
684
685
686
687
688
						</div>
					</div>
				</div>
			</div>
		</div>

		<!-- <main class="w-full flex justify-center">
			<div class="max-w-lg w-screen p-5" />
		</main> -->
	</div>
</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703

<style>
	.loading {
		display: inline-block;
		clip-path: inset(0 1ch 0 0);
		animation: l 1s steps(3) infinite;
		letter-spacing: -0.5px;
	}

	@keyframes l {
		to {
			clip-path: inset(0 -1ch 0 0);
		}
	}
</style>