forked from open-webui/open-webui
		
	
						commit
						34e0f64fb3
					
				
					 15 changed files with 659 additions and 112 deletions
				
			
		| 
						 | 
				
			
			@ -2,10 +2,11 @@
 | 
			
		|||
	import toast from 'svelte-french-toast';
 | 
			
		||||
	import { onMount, tick } from 'svelte';
 | 
			
		||||
	import { settings } from '$lib/stores';
 | 
			
		||||
	import { findWordIndices } from '$lib/utils';
 | 
			
		||||
	import { calculateSHA256, findWordIndices } from '$lib/utils';
 | 
			
		||||
 | 
			
		||||
	import Prompts from './MessageInput/PromptCommands.svelte';
 | 
			
		||||
	import Suggestions from './MessageInput/Suggestions.svelte';
 | 
			
		||||
	import { uploadDocToVectorDB } from '$lib/apis/rag';
 | 
			
		||||
 | 
			
		||||
	export let submitPrompt: Function;
 | 
			
		||||
	export let stopResponse: Function;
 | 
			
		||||
| 
						 | 
				
			
			@ -98,7 +99,7 @@
 | 
			
		|||
			dragged = true;
 | 
			
		||||
		});
 | 
			
		||||
 | 
			
		||||
		dropZone.addEventListener('drop', (e) => {
 | 
			
		||||
		dropZone.addEventListener('drop', async (e) => {
 | 
			
		||||
			e.preventDefault();
 | 
			
		||||
			console.log(e);
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -115,14 +116,32 @@
 | 
			
		|||
					];
 | 
			
		||||
				};
 | 
			
		||||
 | 
			
		||||
				if (
 | 
			
		||||
					e.dataTransfer?.files &&
 | 
			
		||||
					e.dataTransfer?.files.length > 0 &&
 | 
			
		||||
					['image/gif', 'image/jpeg', 'image/png'].includes(e.dataTransfer?.files[0]['type'])
 | 
			
		||||
				) {
 | 
			
		||||
					reader.readAsDataURL(e.dataTransfer?.files[0]);
 | 
			
		||||
				const inputFiles = e.dataTransfer?.files;
 | 
			
		||||
 | 
			
		||||
				if (inputFiles && inputFiles.length > 0) {
 | 
			
		||||
					const file = inputFiles[0];
 | 
			
		||||
					if (['image/gif', 'image/jpeg', 'image/png'].includes(file['type'])) {
 | 
			
		||||
						reader.readAsDataURL(file);
 | 
			
		||||
					} else if (['application/pdf', 'text/plain'].includes(file['type'])) {
 | 
			
		||||
						console.log(file);
 | 
			
		||||
						const hash = (await calculateSHA256(file)).substring(0, 63);
 | 
			
		||||
						const res = await uploadDocToVectorDB(localStorage.token, hash, file);
 | 
			
		||||
 | 
			
		||||
						if (res) {
 | 
			
		||||
							files = [
 | 
			
		||||
								...files,
 | 
			
		||||
								{
 | 
			
		||||
									type: 'doc',
 | 
			
		||||
									name: file.name,
 | 
			
		||||
									collection_name: res.collection_name
 | 
			
		||||
								}
 | 
			
		||||
							];
 | 
			
		||||
						}
 | 
			
		||||
					} else {
 | 
			
		||||
						toast.error(`Unsupported File Type '${file['type']}'.`);
 | 
			
		||||
					}
 | 
			
		||||
				} else {
 | 
			
		||||
					toast.error(`Unsupported File Type '${e.dataTransfer?.files[0]['type']}'.`);
 | 
			
		||||
					toast.error(`File not found.`);
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -145,11 +164,11 @@
 | 
			
		|||
		<div class="absolute rounded-xl w-full h-full backdrop-blur bg-gray-800/40 flex justify-center">
 | 
			
		||||
			<div class="m-auto pt-64 flex flex-col justify-center">
 | 
			
		||||
				<div class="max-w-md">
 | 
			
		||||
					<div class="  text-center text-6xl mb-3">🏞️</div>
 | 
			
		||||
					<div class="text-center dark:text-white text-2xl font-semibold z-50">Add Images</div>
 | 
			
		||||
					<div class="  text-center text-6xl mb-3">🗂️</div>
 | 
			
		||||
					<div class="text-center dark:text-white text-2xl font-semibold z-50">Add Files</div>
 | 
			
		||||
 | 
			
		||||
					<div class=" mt-2 text-center text-sm dark:text-gray-200 w-full">
 | 
			
		||||
						Drop any images here to add to the conversation
 | 
			
		||||
						Drop any files/images here to add to the conversation
 | 
			
		||||
					</div>
 | 
			
		||||
				</div>
 | 
			
		||||
			</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -204,7 +223,7 @@
 | 
			
		|||
					bind:files={inputFiles}
 | 
			
		||||
					type="file"
 | 
			
		||||
					hidden
 | 
			
		||||
					on:change={() => {
 | 
			
		||||
					on:change={async () => {
 | 
			
		||||
						let reader = new FileReader();
 | 
			
		||||
						reader.onload = (event) => {
 | 
			
		||||
							files = [
 | 
			
		||||
| 
						 | 
				
			
			@ -218,15 +237,32 @@
 | 
			
		|||
							filesInputElement.value = '';
 | 
			
		||||
						};
 | 
			
		||||
 | 
			
		||||
						if (
 | 
			
		||||
							inputFiles &&
 | 
			
		||||
							inputFiles.length > 0 &&
 | 
			
		||||
							['image/gif', 'image/jpeg', 'image/png'].includes(inputFiles[0]['type'])
 | 
			
		||||
						) {
 | 
			
		||||
							reader.readAsDataURL(inputFiles[0]);
 | 
			
		||||
						if (inputFiles && inputFiles.length > 0) {
 | 
			
		||||
							const file = inputFiles[0];
 | 
			
		||||
							if (['image/gif', 'image/jpeg', 'image/png'].includes(file['type'])) {
 | 
			
		||||
								reader.readAsDataURL(file);
 | 
			
		||||
							} else if (['application/pdf', 'text/plain'].includes(file['type'])) {
 | 
			
		||||
								console.log(file);
 | 
			
		||||
								const hash = (await calculateSHA256(file)).substring(0, 63);
 | 
			
		||||
								const res = await uploadDocToVectorDB(localStorage.token, hash, file);
 | 
			
		||||
 | 
			
		||||
								if (res) {
 | 
			
		||||
									files = [
 | 
			
		||||
										...files,
 | 
			
		||||
										{
 | 
			
		||||
											type: 'doc',
 | 
			
		||||
											name: file.name,
 | 
			
		||||
											collection_name: res.collection_name
 | 
			
		||||
										}
 | 
			
		||||
									];
 | 
			
		||||
									filesInputElement.value = '';
 | 
			
		||||
								}
 | 
			
		||||
							} else {
 | 
			
		||||
								toast.error(`Unsupported File Type '${file['type']}'.`);
 | 
			
		||||
								inputFiles = null;
 | 
			
		||||
							}
 | 
			
		||||
						} else {
 | 
			
		||||
							toast.error(`Unsupported File Type '${inputFiles[0]['type']}'.`);
 | 
			
		||||
							inputFiles = null;
 | 
			
		||||
							toast.error(`File not found.`);
 | 
			
		||||
						}
 | 
			
		||||
					}}
 | 
			
		||||
				/>
 | 
			
		||||
| 
						 | 
				
			
			@ -237,10 +273,42 @@
 | 
			
		|||
					}}
 | 
			
		||||
				>
 | 
			
		||||
					{#if files.length > 0}
 | 
			
		||||
						<div class="ml-2 mt-2 mb-1 flex space-x-2">
 | 
			
		||||
						<div class="mx-2 mt-2 mb-1 flex flex-wrap gap-2">
 | 
			
		||||
							{#each files as file, fileIdx}
 | 
			
		||||
								<div class=" relative group">
 | 
			
		||||
									<img src={file.url} alt="input" class=" h-16 w-16 rounded-xl object-cover" />
 | 
			
		||||
									{#if file.type === 'image'}
 | 
			
		||||
										<img src={file.url} alt="input" class=" h-16 w-16 rounded-xl object-cover" />
 | 
			
		||||
									{:else if file.type === 'doc'}
 | 
			
		||||
										<div
 | 
			
		||||
											class="h-16 w-[15rem] flex items-center space-x-3 px-2.5 dark:bg-gray-600 rounded-xl border border-gray-200 dark:border-none"
 | 
			
		||||
										>
 | 
			
		||||
											<div class="p-2.5 bg-red-400 text-white rounded-lg">
 | 
			
		||||
												<svg
 | 
			
		||||
													xmlns="http://www.w3.org/2000/svg"
 | 
			
		||||
													viewBox="0 0 24 24"
 | 
			
		||||
													fill="currentColor"
 | 
			
		||||
													class="w-6 h-6"
 | 
			
		||||
												>
 | 
			
		||||
													<path
 | 
			
		||||
														fill-rule="evenodd"
 | 
			
		||||
														d="M5.625 1.5c-1.036 0-1.875.84-1.875 1.875v17.25c0 1.035.84 1.875 1.875 1.875h12.75c1.035 0 1.875-.84 1.875-1.875V12.75A3.75 3.75 0 0 0 16.5 9h-1.875a1.875 1.875 0 0 1-1.875-1.875V5.25A3.75 3.75 0 0 0 9 1.5H5.625ZM7.5 15a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 7.5 15Zm.75 2.25a.75.75 0 0 0 0 1.5H12a.75.75 0 0 0 0-1.5H8.25Z"
 | 
			
		||||
														clip-rule="evenodd"
 | 
			
		||||
													/>
 | 
			
		||||
													<path
 | 
			
		||||
														d="M12.971 1.816A5.23 5.23 0 0 1 14.25 5.25v1.875c0 .207.168.375.375.375H16.5a5.23 5.23 0 0 1 3.434 1.279 9.768 9.768 0 0 0-6.963-6.963Z"
 | 
			
		||||
													/>
 | 
			
		||||
												</svg>
 | 
			
		||||
											</div>
 | 
			
		||||
 | 
			
		||||
											<div class="flex flex-col justify-center -space-y-0.5">
 | 
			
		||||
												<div class=" dark:text-gray-100 text-sm font-medium line-clamp-1">
 | 
			
		||||
													{file.name}
 | 
			
		||||
												</div>
 | 
			
		||||
 | 
			
		||||
												<div class=" text-gray-500 text-sm">Document</div>
 | 
			
		||||
											</div>
 | 
			
		||||
										</div>
 | 
			
		||||
									{/if}
 | 
			
		||||
 | 
			
		||||
									<div class=" absolute -top-1 -right-1">
 | 
			
		||||
										<button
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -53,11 +53,41 @@
 | 
			
		|||
			class="prose chat-{message.role} w-full max-w-full dark:prose-invert prose-headings:my-0 prose-p:my-0 prose-p:-mb-4 prose-pre:my-0 prose-table:my-0 prose-blockquote:my-0 prose-img:my-0 prose-ul:-my-4 prose-ol:-my-4 prose-li:-my-3 prose-ul:-mb-6 prose-ol:-mb-6 prose-li:-mb-4 whitespace-pre-line"
 | 
			
		||||
		>
 | 
			
		||||
			{#if message.files}
 | 
			
		||||
				<div class="my-3 w-full flex overflow-x-auto space-x-2">
 | 
			
		||||
				<div class="my-2.5 w-full flex overflow-x-auto gap-2 flex-wrap">
 | 
			
		||||
					{#each message.files as file}
 | 
			
		||||
						<div>
 | 
			
		||||
							{#if file.type === 'image'}
 | 
			
		||||
								<img src={file.url} alt="input" class=" max-h-96 rounded-lg" draggable="false" />
 | 
			
		||||
							{:else if file.type === 'doc'}
 | 
			
		||||
								<div
 | 
			
		||||
									class="h-16 w-[15rem] flex items-center space-x-3 px-2.5 dark:bg-gray-600 rounded-xl border border-gray-200 dark:border-none"
 | 
			
		||||
								>
 | 
			
		||||
									<div class="p-2.5 bg-red-400 text-white rounded-lg">
 | 
			
		||||
										<svg
 | 
			
		||||
											xmlns="http://www.w3.org/2000/svg"
 | 
			
		||||
											viewBox="0 0 24 24"
 | 
			
		||||
											fill="currentColor"
 | 
			
		||||
											class="w-6 h-6"
 | 
			
		||||
										>
 | 
			
		||||
											<path
 | 
			
		||||
												fill-rule="evenodd"
 | 
			
		||||
												d="M5.625 1.5c-1.036 0-1.875.84-1.875 1.875v17.25c0 1.035.84 1.875 1.875 1.875h12.75c1.035 0 1.875-.84 1.875-1.875V12.75A3.75 3.75 0 0 0 16.5 9h-1.875a1.875 1.875 0 0 1-1.875-1.875V5.25A3.75 3.75 0 0 0 9 1.5H5.625ZM7.5 15a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 7.5 15Zm.75 2.25a.75.75 0 0 0 0 1.5H12a.75.75 0 0 0 0-1.5H8.25Z"
 | 
			
		||||
												clip-rule="evenodd"
 | 
			
		||||
											/>
 | 
			
		||||
											<path
 | 
			
		||||
												d="M12.971 1.816A5.23 5.23 0 0 1 14.25 5.25v1.875c0 .207.168.375.375.375H16.5a5.23 5.23 0 0 1 3.434 1.279 9.768 9.768 0 0 0-6.963-6.963Z"
 | 
			
		||||
											/>
 | 
			
		||||
										</svg>
 | 
			
		||||
									</div>
 | 
			
		||||
 | 
			
		||||
									<div class="flex flex-col justify-center -space-y-0.5">
 | 
			
		||||
										<div class=" dark:text-gray-100 text-sm font-medium line-clamp-1">
 | 
			
		||||
											{file.name}
 | 
			
		||||
										</div>
 | 
			
		||||
 | 
			
		||||
										<div class=" text-gray-500 text-sm">Document</div>
 | 
			
		||||
									</div>
 | 
			
		||||
								</div>
 | 
			
		||||
							{/if}
 | 
			
		||||
						</div>
 | 
			
		||||
					{/each}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue