123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854 |
- <script lang="ts">
- import DOMPurify from 'dompurify';
- import { marked } from 'marked';
- import heic2any from 'heic2any';
- import { toast } from 'svelte-sonner';
- import { v4 as uuidv4 } from 'uuid';
- import { createPicker, getAuthToken } from '$lib/utils/google-drive-picker';
- import { pickAndDownloadFile } from '$lib/utils/onedrive-file-picker';
- import { onMount, tick, getContext, createEventDispatcher, onDestroy } from 'svelte';
- const dispatch = createEventDispatcher();
- import {
- type Model,
- mobile,
- settings,
- showSidebar,
- models,
- config,
- showCallOverlay,
- tools,
- user as _user,
- showControls,
- TTSWorker
- } from '$lib/stores';
- import {
- blobToFile,
- compressImage,
- createMessagesList,
- extractCurlyBraceWords,
- getCurrentDateTime,
- getFormattedDate,
- getFormattedTime,
- getUserPosition,
- getUserTimezone,
- getWeekday
- } from '$lib/utils';
- import { uploadFile } from '$lib/apis/files';
- import { generateAutoCompletion } from '$lib/apis';
- import { deleteFileById } from '$lib/apis/files';
- import { WEBUI_BASE_URL, WEBUI_API_BASE_URL, PASTED_TEXT_CHARACTER_LIMIT } from '$lib/constants';
- import InputMenu from './MessageInput/InputMenu.svelte';
- import VoiceRecording from './MessageInput/VoiceRecording.svelte';
- import FilesOverlay from './MessageInput/FilesOverlay.svelte';
- import Commands from './MessageInput/Commands.svelte';
- import ToolServersModal from './ToolServersModal.svelte';
- import RichTextInput from '../common/RichTextInput.svelte';
- import Tooltip from '../common/Tooltip.svelte';
- import FileItem from '../common/FileItem.svelte';
- import Image from '../common/Image.svelte';
- import XMark from '../icons/XMark.svelte';
- import Headphone from '../icons/Headphone.svelte';
- import GlobeAlt from '../icons/GlobeAlt.svelte';
- import Photo from '../icons/Photo.svelte';
- import Wrench from '../icons/Wrench.svelte';
- import CommandLine from '../icons/CommandLine.svelte';
- import Sparkles from '../icons/Sparkles.svelte';
- import { KokoroWorker } from '$lib/workers/KokoroWorker';
- const i18n = getContext('i18n');
- export let transparentBackground = false;
- export let onChange: Function = () => {};
- export let createMessagePair: Function;
- export let stopResponse: Function;
- export let autoScroll = false;
- export let atSelectedModel: Model | undefined = undefined;
- export let selectedModels: [''];
- let selectedModelIds = [];
- $: selectedModelIds = atSelectedModel !== undefined ? [atSelectedModel.id] : selectedModels;
- export let history;
- export let taskIds = null;
- export let prompt = '';
- export let files = [];
- export let toolServers = [];
- export let selectedToolIds = [];
- export let selectedFilterIds = [];
- export let imageGenerationEnabled = false;
- export let webSearchEnabled = false;
- export let codeInterpreterEnabled = false;
- $: onChange({
- prompt,
- files: files
- .filter((file) => file.type !== 'image')
- .map((file) => {
- return {
- ...file,
- user: undefined,
- access_control: undefined
- };
- }),
- selectedToolIds,
- selectedFilterIds,
- imageGenerationEnabled,
- webSearchEnabled,
- codeInterpreterEnabled
- });
- export const setText = (text?: string) => {
- const chatInput = document.getElementById('chat-input');
- if (chatInput) {
- if ($settings?.richTextInput ?? true) {
- chatInputElement.setText(text);
- } else {
- // chatInput.value = text;
- prompt = text;
- }
- }
- };
- function getWordAtCursor(text, cursor) {
- if (typeof text !== 'string' || cursor == null) return '';
- const left = text.slice(0, cursor);
- const right = text.slice(cursor);
- const leftWord = left.match(/(?:^|\s)([^\s]*)$/)?.[1] || '';
- const rightWord = right.match(/^([^\s]*)/)?.[1] || '';
- return leftWord + rightWord;
- }
- const getCommand = () => {
- const chatInput = document.getElementById('chat-input');
- let word = '';
- if (chatInput) {
- if ($settings?.richTextInput ?? true) {
- word = chatInputElement?.getWordAtDocPos();
- } else {
- const cursor = chatInput ? chatInput.selectionStart : prompt.length;
- word = getWordAtCursor(prompt, cursor);
- }
- }
- return word;
- };
- function getWordBoundsAtCursor(text, cursor) {
- let start = cursor,
- end = cursor;
- while (start > 0 && !/\s/.test(text[start - 1])) --start;
- while (end < text.length && !/\s/.test(text[end])) ++end;
- return { start, end };
- }
- function replaceCommandWithText(text) {
- const chatInput = document.getElementById('chat-input');
- if (!chatInput) return;
- if ($settings?.richTextInput ?? true) {
- chatInputElement?.replaceCommandWithText(text);
- } else {
- const cursor = chatInput.selectionStart;
- const { start, end } = getWordBoundsAtCursor(prompt, cursor);
- prompt = prompt.slice(0, start) + text + prompt.slice(end);
- chatInput.focus();
- chatInput.setSelectionRange(start + text.length, start + text.length);
- }
- }
- const inputVariableHandler = async (text: string) => {
- return text;
- };
- const textVariableHandler = async (text: string) => {
- if (text.includes('{{CLIPBOARD}}')) {
- const clipboardText = await navigator.clipboard.readText().catch((err) => {
- toast.error($i18n.t('Failed to read clipboard contents'));
- return '{{CLIPBOARD}}';
- });
- const clipboardItems = await navigator.clipboard.read();
- let imageUrl = null;
- for (const item of clipboardItems) {
- // Check for known image types
- for (const type of item.types) {
- if (type.startsWith('image/')) {
- const blob = await item.getType(type);
- imageUrl = URL.createObjectURL(blob);
- }
- }
- }
- if (imageUrl) {
- files = [
- ...files,
- {
- type: 'image',
- url: imageUrl
- }
- ];
- }
- text = text.replaceAll('{{CLIPBOARD}}', clipboardText);
- }
- if (text.includes('{{USER_LOCATION}}')) {
- let location;
- try {
- location = await getUserPosition();
- } catch (error) {
- toast.error($i18n.t('Location access not allowed'));
- location = 'LOCATION_UNKNOWN';
- }
- text = text.replaceAll('{{USER_LOCATION}}', String(location));
- }
- if (text.includes('{{USER_NAME}}')) {
- const name = $_user?.name || 'User';
- text = text.replaceAll('{{USER_NAME}}', name);
- }
- if (text.includes('{{USER_LANGUAGE}}')) {
- const language = localStorage.getItem('locale') || 'en-US';
- text = text.replaceAll('{{USER_LANGUAGE}}', language);
- }
- if (text.includes('{{CURRENT_DATE}}')) {
- const date = getFormattedDate();
- text = text.replaceAll('{{CURRENT_DATE}}', date);
- }
- if (text.includes('{{CURRENT_TIME}}')) {
- const time = getFormattedTime();
- text = text.replaceAll('{{CURRENT_TIME}}', time);
- }
- if (text.includes('{{CURRENT_DATETIME}}')) {
- const dateTime = getCurrentDateTime();
- text = text.replaceAll('{{CURRENT_DATETIME}}', dateTime);
- }
- if (text.includes('{{CURRENT_TIMEZONE}}')) {
- const timezone = getUserTimezone();
- text = text.replaceAll('{{CURRENT_TIMEZONE}}', timezone);
- }
- if (text.includes('{{CURRENT_WEEKDAY}}')) {
- const weekday = getWeekday();
- text = text.replaceAll('{{CURRENT_WEEKDAY}}', weekday);
- }
- text = await inputVariableHandler(text);
- return text;
- };
- const insertTextAtCursor = async (text: string) => {
- const chatInput = document.getElementById('chat-input');
- if (!chatInput) return;
- text = await textVariableHandler(text);
- if (command) {
- replaceCommandWithText(text);
- } else {
- if ($settings?.richTextInput ?? true) {
- const selection = window.getSelection();
- if (selection && selection.rangeCount > 0) {
- const range = selection.getRangeAt(0);
- range.deleteContents();
- range.insertNode(document.createTextNode(text));
- range.collapse(false);
- selection.removeAllRanges();
- selection.addRange(range);
- }
- } else {
- const cursor = chatInput.selectionStart;
- prompt = prompt.slice(0, cursor) + text + prompt.slice(cursor);
- chatInput.focus();
- chatInput.setSelectionRange(cursor + text.length, cursor + text.length);
- }
- }
- await tick();
- const chatInputContainer = document.getElementById('chat-input-container');
- if (chatInputContainer) {
- chatInputContainer.scrollTop = chatInputContainer.scrollHeight;
- }
- await tick();
- if (chatInput) {
- chatInput.focus();
- chatInput.dispatchEvent(new Event('input'));
- const words = extractCurlyBraceWords(prompt);
- if (words.length > 0) {
- const word = words.at(0);
- await tick();
- if (!($settings?.richTextInput ?? true)) {
- // Move scroll to the first word
- chatInput.setSelectionRange(word.startIndex, word.endIndex + 1);
- chatInput.focus();
- const selectionRow =
- (word?.startIndex - (word?.startIndex % chatInput.cols)) / chatInput.cols;
- const lineHeight = chatInput.clientHeight / chatInput.rows;
- chatInput.scrollTop = lineHeight * selectionRow;
- }
- } else {
- chatInput.scrollTop = chatInput.scrollHeight;
- }
- }
- };
- let command = '';
- let showCommands = false;
- $: showCommands = ['/', '#', '@'].includes(command?.charAt(0)) || '\\#' === command?.slice(0, 2);
- let showTools = false;
- let loaded = false;
- let recording = false;
- let isComposing = false;
- let chatInputContainerElement;
- let chatInputElement;
- let filesInputElement;
- let commandsElement;
- let inputFiles;
- let dragged = false;
- let shiftKey = false;
- let user = null;
- export let placeholder = '';
- let visionCapableModels = [];
- $: visionCapableModels = (atSelectedModel?.id ? [atSelectedModel.id] : selectedModels).filter(
- (model) => $models.find((m) => m.id === model)?.info?.meta?.capabilities?.vision ?? true
- );
- let fileUploadCapableModels = [];
- $: fileUploadCapableModels = (atSelectedModel?.id ? [atSelectedModel.id] : selectedModels).filter(
- (model) => $models.find((m) => m.id === model)?.info?.meta?.capabilities?.file_upload ?? true
- );
- let webSearchCapableModels = [];
- $: webSearchCapableModels = (atSelectedModel?.id ? [atSelectedModel.id] : selectedModels).filter(
- (model) => $models.find((m) => m.id === model)?.info?.meta?.capabilities?.web_search ?? true
- );
- let imageGenerationCapableModels = [];
- $: imageGenerationCapableModels = (
- atSelectedModel?.id ? [atSelectedModel.id] : selectedModels
- ).filter(
- (model) =>
- $models.find((m) => m.id === model)?.info?.meta?.capabilities?.image_generation ?? true
- );
- let codeInterpreterCapableModels = [];
- $: codeInterpreterCapableModels = (
- atSelectedModel?.id ? [atSelectedModel.id] : selectedModels
- ).filter(
- (model) =>
- $models.find((m) => m.id === model)?.info?.meta?.capabilities?.code_interpreter ?? true
- );
- let toggleFilters = [];
- $: toggleFilters = (atSelectedModel?.id ? [atSelectedModel.id] : selectedModels)
- .map((id) => ($models.find((model) => model.id === id) || {})?.filters ?? [])
- .reduce((acc, filters) => acc.filter((f1) => filters.some((f2) => f2.id === f1.id)));
- let showToolsButton = false;
- $: showToolsButton = toolServers.length + selectedToolIds.length > 0;
- let showWebSearchButton = false;
- $: showWebSearchButton =
- (atSelectedModel?.id ? [atSelectedModel.id] : selectedModels).length ===
- webSearchCapableModels.length &&
- $config?.features?.enable_web_search &&
- ($_user.role === 'admin' || $_user?.permissions?.features?.web_search);
- let showImageGenerationButton = false;
- $: showImageGenerationButton =
- (atSelectedModel?.id ? [atSelectedModel.id] : selectedModels).length ===
- imageGenerationCapableModels.length &&
- $config?.features?.enable_image_generation &&
- ($_user.role === 'admin' || $_user?.permissions?.features?.image_generation);
- let showCodeInterpreterButton = false;
- $: showCodeInterpreterButton =
- (atSelectedModel?.id ? [atSelectedModel.id] : selectedModels).length ===
- codeInterpreterCapableModels.length &&
- $config?.features?.enable_code_interpreter &&
- ($_user.role === 'admin' || $_user?.permissions?.features?.code_interpreter);
- const scrollToBottom = () => {
- const element = document.getElementById('messages-container');
- element.scrollTo({
- top: element.scrollHeight,
- behavior: 'smooth'
- });
- };
- const screenCaptureHandler = async () => {
- try {
- // Request screen media
- const mediaStream = await navigator.mediaDevices.getDisplayMedia({
- video: { cursor: 'never' },
- audio: false
- });
- // Once the user selects a screen, temporarily create a video element
- const video = document.createElement('video');
- video.srcObject = mediaStream;
- // Ensure the video loads without affecting user experience or tab switching
- await video.play();
- // Set up the canvas to match the video dimensions
- const canvas = document.createElement('canvas');
- canvas.width = video.videoWidth;
- canvas.height = video.videoHeight;
- // Grab a single frame from the video stream using the canvas
- const context = canvas.getContext('2d');
- context.drawImage(video, 0, 0, canvas.width, canvas.height);
- // Stop all video tracks (stop screen sharing) after capturing the image
- mediaStream.getTracks().forEach((track) => track.stop());
- // bring back focus to this current tab, so that the user can see the screen capture
- window.focus();
- // Convert the canvas to a Base64 image URL
- const imageUrl = canvas.toDataURL('image/png');
- // Add the captured image to the files array to render it
- files = [...files, { type: 'image', url: imageUrl }];
- // Clean memory: Clear video srcObject
- video.srcObject = null;
- } catch (error) {
- // Handle any errors (e.g., user cancels screen sharing)
- console.error('Error capturing screen:', error);
- }
- };
- const uploadFileHandler = async (file, fullContext: boolean = false) => {
- if ($_user?.role !== 'admin' && !($_user?.permissions?.chat?.file_upload ?? true)) {
- toast.error($i18n.t('You do not have permission to upload files.'));
- return null;
- }
- const tempItemId = uuidv4();
- const fileItem = {
- type: 'file',
- file: '',
- id: null,
- url: '',
- name: file.name,
- collection_name: '',
- status: 'uploading',
- size: file.size,
- error: '',
- itemId: tempItemId,
- ...(fullContext ? { context: 'full' } : {})
- };
- if (fileItem.size == 0) {
- toast.error($i18n.t('You cannot upload an empty file.'));
- return null;
- }
- files = [...files, fileItem];
- try {
- // If the file is an audio file, provide the language for STT.
- let metadata = null;
- if (
- (file.type.startsWith('audio/') || file.type.startsWith('video/')) &&
- $settings?.audio?.stt?.language
- ) {
- metadata = {
- language: $settings?.audio?.stt?.language
- };
- }
- // During the file upload, file content is automatically extracted.
- const uploadedFile = await uploadFile(localStorage.token, file, metadata);
- if (uploadedFile) {
- console.log('File upload completed:', {
- id: uploadedFile.id,
- name: fileItem.name,
- collection: uploadedFile?.meta?.collection_name
- });
- if (uploadedFile.error) {
- console.warn('File upload warning:', uploadedFile.error);
- toast.warning(uploadedFile.error);
- }
- fileItem.status = 'uploaded';
- fileItem.file = uploadedFile;
- fileItem.id = uploadedFile.id;
- fileItem.collection_name =
- uploadedFile?.meta?.collection_name || uploadedFile?.collection_name;
- fileItem.url = `${WEBUI_API_BASE_URL}/files/${uploadedFile.id}`;
- files = files;
- } else {
- files = files.filter((item) => item?.itemId !== tempItemId);
- }
- } catch (e) {
- toast.error(`${e}`);
- files = files.filter((item) => item?.itemId !== tempItemId);
- }
- };
- const inputFilesHandler = async (inputFiles) => {
- console.log('Input files handler called with:', inputFiles);
- if (
- ($config?.file?.max_count ?? null) !== null &&
- files.length + inputFiles.length > $config?.file?.max_count
- ) {
- toast.error(
- $i18n.t(`You can only chat with a maximum of {{maxCount}} file(s) at a time.`, {
- maxCount: $config?.file?.max_count
- })
- );
- return;
- }
- inputFiles.forEach(async (file) => {
- console.log('Processing file:', {
- name: file.name,
- type: file.type,
- size: file.size,
- extension: file.name.split('.').at(-1)
- });
- if (
- ($config?.file?.max_size ?? null) !== null &&
- file.size > ($config?.file?.max_size ?? 0) * 1024 * 1024
- ) {
- console.log('File exceeds max size limit:', {
- fileSize: file.size,
- maxSize: ($config?.file?.max_size ?? 0) * 1024 * 1024
- });
- toast.error(
- $i18n.t(`File size should not exceed {{maxSize}} MB.`, {
- maxSize: $config?.file?.max_size
- })
- );
- return;
- }
- if (file['type'].startsWith('image/')) {
- if (visionCapableModels.length === 0) {
- toast.error($i18n.t('Selected model(s) do not support image inputs'));
- return;
- }
- const compressImageHandler = async (imageUrl, settings = {}, config = {}) => {
- // Quick shortcut so we don’t do unnecessary work.
- const settingsCompression = settings?.imageCompression ?? false;
- const configWidth = config?.file?.image_compression?.width ?? null;
- const configHeight = config?.file?.image_compression?.height ?? null;
- // If neither settings nor config wants compression, return original URL.
- if (!settingsCompression && !configWidth && !configHeight) {
- return imageUrl;
- }
- // Default to null (no compression unless set)
- let width = null;
- let height = null;
- // If user/settings want compression, pick their preferred size.
- if (settingsCompression) {
- width = settings?.imageCompressionSize?.width ?? null;
- height = settings?.imageCompressionSize?.height ?? null;
- }
- // Apply config limits as an upper bound if any
- if (configWidth && (width === null || width > configWidth)) {
- width = configWidth;
- }
- if (configHeight && (height === null || height > configHeight)) {
- height = configHeight;
- }
- // Do the compression if required
- if (width || height) {
- return await compressImage(imageUrl, width, height);
- }
- return imageUrl;
- };
- let reader = new FileReader();
- reader.onload = async (event) => {
- let imageUrl = event.target.result;
- imageUrl = await compressImageHandler(imageUrl, $settings, $config);
- files = [
- ...files,
- {
- type: 'image',
- url: `${imageUrl}`
- }
- ];
- };
- reader.readAsDataURL(
- file['type'] === 'image/heic'
- ? await heic2any({ blob: file, toType: 'image/jpeg' })
- : file
- );
- } else {
- uploadFileHandler(file);
- }
- });
- };
- const onDragOver = (e) => {
- e.preventDefault();
- // Check if a file is being dragged.
- if (e.dataTransfer?.types?.includes('Files')) {
- dragged = true;
- } else {
- dragged = false;
- }
- };
- const onDragLeave = () => {
- dragged = false;
- };
- const onDrop = async (e) => {
- e.preventDefault();
- console.log(e);
- if (e.dataTransfer?.files) {
- const inputFiles = Array.from(e.dataTransfer?.files);
- if (inputFiles && inputFiles.length > 0) {
- console.log(inputFiles);
- inputFilesHandler(inputFiles);
- }
- }
- dragged = false;
- };
- const onKeyDown = (e) => {
- if (e.key === 'Shift') {
- shiftKey = true;
- }
- if (e.key === 'Escape') {
- console.log('Escape');
- dragged = false;
- }
- };
- const onKeyUp = (e) => {
- if (e.key === 'Shift') {
- shiftKey = false;
- }
- };
- const onFocus = () => {};
- const onBlur = () => {
- shiftKey = false;
- };
- onMount(async () => {
- loaded = true;
- window.setTimeout(() => {
- const chatInput = document.getElementById('chat-input');
- chatInput?.focus();
- }, 0);
- window.addEventListener('keydown', onKeyDown);
- window.addEventListener('keyup', onKeyUp);
- window.addEventListener('focus', onFocus);
- window.addEventListener('blur', onBlur);
- await tick();
- const dropzoneElement = document.getElementById('chat-container');
- dropzoneElement?.addEventListener('dragover', onDragOver);
- dropzoneElement?.addEventListener('drop', onDrop);
- dropzoneElement?.addEventListener('dragleave', onDragLeave);
- });
- onDestroy(() => {
- console.log('destroy');
- window.removeEventListener('keydown', onKeyDown);
- window.removeEventListener('keyup', onKeyUp);
- window.removeEventListener('focus', onFocus);
- window.removeEventListener('blur', onBlur);
- const dropzoneElement = document.getElementById('chat-container');
- if (dropzoneElement) {
- dropzoneElement?.removeEventListener('dragover', onDragOver);
- dropzoneElement?.removeEventListener('drop', onDrop);
- dropzoneElement?.removeEventListener('dragleave', onDragLeave);
- }
- });
- </script>
- <FilesOverlay show={dragged} />
- <ToolServersModal bind:show={showTools} {selectedToolIds} />
- {#if loaded}
- <div class="w-full font-primary">
- <div class=" mx-auto inset-x-0 bg-transparent flex justify-center">
- <div
- class="flex flex-col px-3 {($settings?.widescreenMode ?? null)
- ? 'max-w-full'
- : 'max-w-6xl'} w-full"
- >
- <div class="relative">
- {#if autoScroll === false && history?.currentId}
- <div
- class=" absolute -top-12 left-0 right-0 flex justify-center z-30 pointer-events-none"
- >
- <button
- class=" bg-white border border-gray-100 dark:border-none dark:bg-white/20 p-1.5 rounded-full pointer-events-auto"
- on:click={() => {
- autoScroll = true;
- scrollToBottom();
- }}
- >
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- fill="currentColor"
- class="w-5 h-5"
- >
- <path
- fill-rule="evenodd"
- d="M10 3a.75.75 0 01.75.75v10.638l3.96-4.158a.75.75 0 111.08 1.04l-5.25 5.5a.75.75 0 01-1.08 0l-5.25-5.5a.75.75 0 111.08-1.04l3.96 4.158V3.75A.75.75 0 0110 3z"
- clip-rule="evenodd"
- />
- </svg>
- </button>
- </div>
- {/if}
- </div>
- <div class="w-full relative">
- {#if atSelectedModel !== undefined}
- <div
- class="px-3 pb-0.5 pt-1.5 text-left w-full flex flex-col absolute bottom-0 left-0 right-0 bg-linear-to-t from-white dark:from-gray-900 z-10"
- >
- <div class="flex items-center justify-between w-full">
- <div class="pl-[1px] flex items-center gap-2 text-sm dark:text-gray-500">
- <img
- crossorigin="anonymous"
- alt="model profile"
- class="size-3.5 max-w-[28px] object-cover rounded-full"
- src={$models.find((model) => model.id === atSelectedModel.id)?.info?.meta
- ?.profile_image_url ??
- ($i18n.language === 'dg-DG'
- ? `/doge.png`
- : `${WEBUI_BASE_URL}/static/favicon.png`)}
- />
- <div class="translate-y-[0.5px]">
- Talking to <span class=" font-medium">{atSelectedModel.name}</span>
- </div>
- </div>
- <div>
- <button
- class="flex items-center dark:text-gray-500"
- on:click={() => {
- atSelectedModel = undefined;
- }}
- >
- <XMark />
- </button>
- </div>
- </div>
- </div>
- {/if}
- <Commands
- bind:this={commandsElement}
- bind:files
- show={showCommands}
- {command}
- insertTextHandler={insertTextAtCursor}
- onUpload={(e) => {
- const { type, data } = e;
- if (type === 'file') {
- if (files.find((f) => f.id === data.id)) {
- return;
- }
- files = [
- ...files,
- {
- ...data,
- status: 'processed'
- }
- ];
- } else {
- dispatch('upload', e);
- }
- }}
- onSelect={(e) => {
- const { type, data } = e;
- if (type === 'model') {
- atSelectedModel = data;
- }
- document.getElementById('chat-input')?.focus();
- }}
- />
- </div>
- </div>
- </div>
- <div class="{transparentBackground ? 'bg-transparent' : 'bg-white dark:bg-gray-900'} ">
- <div
- class="{($settings?.widescreenMode ?? null)
- ? 'max-w-full'
- : 'max-w-6xl'} px-2.5 mx-auto inset-x-0"
- >
- <div class="">
- <input
- bind:this={filesInputElement}
- bind:files={inputFiles}
- type="file"
- hidden
- multiple
- on:change={async () => {
- if (inputFiles && inputFiles.length > 0) {
- const _inputFiles = Array.from(inputFiles);
- inputFilesHandler(_inputFiles);
- } else {
- toast.error($i18n.t(`File not found.`));
- }
- filesInputElement.value = '';
- }}
- />
- {#if recording}
- <VoiceRecording
- bind:recording
- onCancel={async () => {
- recording = false;
- await tick();
- document.getElementById('chat-input')?.focus();
- }}
- onConfirm={async (data) => {
- const { text, filename } = data;
- prompt = `${prompt}${text} `;
- recording = false;
- await tick();
- document.getElementById('chat-input')?.focus();
- if ($settings?.speechAutoSend ?? false) {
- dispatch('submit', prompt);
- }
- }}
- />
- {:else}
- <form
- class="w-full flex flex-col gap-1.5"
- on:submit|preventDefault={() => {
- // check if selectedModels support image input
- dispatch('submit', prompt);
- }}
- >
- <div
- class="flex-1 flex flex-col relative w-full shadow-lg rounded-3xl border border-gray-50 dark:border-gray-850 hover:border-gray-100 focus-within:border-gray-100 hover:dark:border-gray-800 focus-within:dark:border-gray-800 transition px-1 bg-white/90 dark:bg-gray-400/5 dark:text-gray-100"
- dir={$settings?.chatDirection ?? 'auto'}
- >
- {#if files.length > 0}
- <div class="mx-2 mt-2.5 -mb-1 flex items-center flex-wrap gap-2">
- {#each files as file, fileIdx}
- {#if file.type === 'image'}
- <div class=" relative group">
- <div class="relative flex items-center">
- <Image
- src={file.url}
- alt=""
- imageClassName=" size-14 rounded-xl object-cover"
- />
- {#if atSelectedModel ? visionCapableModels.length === 0 : selectedModels.length !== visionCapableModels.length}
- <Tooltip
- className=" absolute top-1 left-1"
- content={$i18n.t('{{ models }}', {
- models: [
- ...(atSelectedModel ? [atSelectedModel] : selectedModels)
- ]
- .filter((id) => !visionCapableModels.includes(id))
- .join(', ')
- })}
- >
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 24 24"
- fill="currentColor"
- aria-hidden="true"
- class="size-4 fill-yellow-300"
- >
- <path
- fill-rule="evenodd"
- d="M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003ZM12 8.25a.75.75 0 0 1 .75.75v3.75a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Zm0 8.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z"
- clip-rule="evenodd"
- />
- </svg>
- </Tooltip>
- {/if}
- </div>
- <div class=" absolute -top-1 -right-1">
- <button
- class=" bg-white text-black border border-white rounded-full {($settings?.highContrastMode ??
- false)
- ? ''
- : 'outline-hidden focus:outline-hidden group-hover:visible invisible transition'}"
- type="button"
- aria-label={$i18n.t('Remove file')}
- on:click={() => {
- files.splice(fileIdx, 1);
- files = files;
- }}
- >
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- fill="currentColor"
- aria-hidden="true"
- class="size-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>
- </button>
- </div>
- </div>
- {:else}
- <FileItem
- item={file}
- name={file.name}
- type={file.type}
- size={file?.size}
- loading={file.status === 'uploading'}
- dismissible={true}
- edit={true}
- on:dismiss={async () => {
- try {
- if (file.type !== 'collection' && !file?.collection) {
- if (file.id) {
- // This will handle both file deletion and Chroma cleanup
- await deleteFileById(localStorage.token, file.id);
- }
- }
- } catch (error) {
- console.error('Error deleting file:', error);
- }
- // Remove from UI state
- files.splice(fileIdx, 1);
- files = files;
- }}
- on:click={() => {
- console.log(file);
- }}
- />
- {/if}
- {/each}
- </div>
- {/if}
- <div class="px-2.5">
- {#if $settings?.richTextInput ?? true}
- <div
- class="scrollbar-hidden rtl:text-right ltr:text-left bg-transparent dark:text-gray-100 outline-hidden w-full pt-2.5 pb-[5px] px-1 resize-none h-fit max-h-80 overflow-auto"
- id="chat-input-container"
- >
- <RichTextInput
- bind:this={chatInputElement}
- id="chat-input"
- onChange={(e) => {
- prompt = e.md;
- command = getCommand();
- }}
- json={true}
- messageInput={true}
- shiftEnter={!($settings?.ctrlEnterToSend ?? false) &&
- (!$mobile ||
- !(
- 'ontouchstart' in window ||
- navigator.maxTouchPoints > 0 ||
- navigator.msMaxTouchPoints > 0
- ))}
- placeholder={placeholder ? placeholder : $i18n.t('Send a Message')}
- largeTextAsFile={($settings?.largeTextAsFile ?? false) && !shiftKey}
- autocomplete={$config?.features?.enable_autocomplete_generation &&
- ($settings?.promptAutocomplete ?? false)}
- generateAutoCompletion={async (text) => {
- if (selectedModelIds.length === 0 || !selectedModelIds.at(0)) {
- toast.error($i18n.t('Please select a model first.'));
- }
- const res = await generateAutoCompletion(
- localStorage.token,
- selectedModelIds.at(0),
- text,
- history?.currentId
- ? createMessagesList(history, history.currentId)
- : null
- ).catch((error) => {
- console.log(error);
- return null;
- });
- console.log(res);
- return res;
- }}
- oncompositionstart={() => (isComposing = true)}
- oncompositionend={() => (isComposing = false)}
- on:keydown={async (e) => {
- e = e.detail.event;
- const isCtrlPressed = e.ctrlKey || e.metaKey; // metaKey is for Cmd key on Mac
- const commandsContainerElement =
- document.getElementById('commands-container');
- if (e.key === 'Escape') {
- stopResponse();
- }
- // Command/Ctrl + Shift + Enter to submit a message pair
- if (isCtrlPressed && e.key === 'Enter' && e.shiftKey) {
- e.preventDefault();
- createMessagePair(prompt);
- }
- // Check if Ctrl + R is pressed
- if (prompt === '' && isCtrlPressed && e.key.toLowerCase() === 'r') {
- e.preventDefault();
- console.log('regenerate');
- const regenerateButton = [
- ...document.getElementsByClassName('regenerate-response-button')
- ]?.at(-1);
- regenerateButton?.click();
- }
- if (prompt === '' && e.key == 'ArrowUp') {
- e.preventDefault();
- const userMessageElement = [
- ...document.getElementsByClassName('user-message')
- ]?.at(-1);
- if (userMessageElement) {
- userMessageElement.scrollIntoView({ block: 'center' });
- const editButton = [
- ...document.getElementsByClassName('edit-user-message-button')
- ]?.at(-1);
- editButton?.click();
- }
- }
- if (commandsContainerElement) {
- if (commandsContainerElement && e.key === 'ArrowUp') {
- e.preventDefault();
- commandsElement.selectUp();
- const commandOptionButton = [
- ...document.getElementsByClassName('selected-command-option-button')
- ]?.at(-1);
- commandOptionButton.scrollIntoView({ block: 'center' });
- }
- if (commandsContainerElement && e.key === 'ArrowDown') {
- e.preventDefault();
- commandsElement.selectDown();
- const commandOptionButton = [
- ...document.getElementsByClassName('selected-command-option-button')
- ]?.at(-1);
- commandOptionButton.scrollIntoView({ block: 'center' });
- }
- if (commandsContainerElement && e.key === 'Tab') {
- e.preventDefault();
- const commandOptionButton = [
- ...document.getElementsByClassName('selected-command-option-button')
- ]?.at(-1);
- commandOptionButton?.click();
- }
- if (commandsContainerElement && e.key === 'Enter') {
- e.preventDefault();
- const commandOptionButton = [
- ...document.getElementsByClassName('selected-command-option-button')
- ]?.at(-1);
- if (commandOptionButton) {
- commandOptionButton?.click();
- } else {
- document.getElementById('send-message-button')?.click();
- }
- }
- } else {
- if (
- !$mobile ||
- !(
- 'ontouchstart' in window ||
- navigator.maxTouchPoints > 0 ||
- navigator.msMaxTouchPoints > 0
- )
- ) {
- if (isComposing) {
- return;
- }
- // Uses keyCode '13' for Enter key for chinese/japanese keyboards.
- //
- // Depending on the user's settings, it will send the message
- // either when Enter is pressed or when Ctrl+Enter is pressed.
- const enterPressed =
- ($settings?.ctrlEnterToSend ?? false)
- ? (e.key === 'Enter' || e.keyCode === 13) && isCtrlPressed
- : (e.key === 'Enter' || e.keyCode === 13) && !e.shiftKey;
- if (enterPressed) {
- e.preventDefault();
- if (prompt !== '' || files.length > 0) {
- dispatch('submit', prompt);
- }
- }
- }
- }
- if (e.key === 'Escape') {
- console.log('Escape');
- atSelectedModel = undefined;
- selectedToolIds = [];
- selectedFilterIds = [];
- webSearchEnabled = false;
- imageGenerationEnabled = false;
- codeInterpreterEnabled = false;
- }
- }}
- on:paste={async (e) => {
- e = e.detail.event;
- console.log(e);
- const clipboardData = e.clipboardData || window.clipboardData;
- if (clipboardData && clipboardData.items) {
- for (const item of clipboardData.items) {
- if (item.type.indexOf('image') !== -1) {
- const blob = item.getAsFile();
- const reader = new FileReader();
- reader.onload = function (e) {
- files = [
- ...files,
- {
- type: 'image',
- url: `${e.target.result}`
- }
- ];
- };
- reader.readAsDataURL(blob);
- } else if (item.type === 'text/plain') {
- if (($settings?.largeTextAsFile ?? false) && !shiftKey) {
- const text = clipboardData.getData('text/plain');
- if (text.length > PASTED_TEXT_CHARACTER_LIMIT) {
- e.preventDefault();
- const blob = new Blob([text], { type: 'text/plain' });
- const file = new File([blob], `Pasted_Text_${Date.now()}.txt`, {
- type: 'text/plain'
- });
- await uploadFileHandler(file, true);
- }
- }
- }
- }
- }
- }}
- />
- </div>
- {:else}
- <textarea
- id="chat-input"
- dir={$settings?.chatDirection ?? 'auto'}
- bind:this={chatInputElement}
- class="scrollbar-hidden bg-transparent dark:text-gray-200 outline-hidden w-full pt-3 px-1 resize-none"
- placeholder={placeholder ? placeholder : $i18n.t('Send a Message')}
- bind:value={prompt}
- on:input={() => {
- command = getCommand();
- }}
- on:click={() => {
- command = getCommand();
- }}
- on:compositionstart={() => (isComposing = true)}
- on:compositionend={() => (isComposing = false)}
- on:keydown={async (e) => {
- const isCtrlPressed = e.ctrlKey || e.metaKey; // metaKey is for Cmd key on Mac
- const commandsContainerElement =
- document.getElementById('commands-container');
- if (e.key === 'Escape') {
- stopResponse();
- }
- // Command/Ctrl + Shift + Enter to submit a message pair
- if (isCtrlPressed && e.key === 'Enter' && e.shiftKey) {
- e.preventDefault();
- createMessagePair(prompt);
- }
- // Check if Ctrl + R is pressed
- if (prompt === '' && isCtrlPressed && e.key.toLowerCase() === 'r') {
- e.preventDefault();
- console.log('regenerate');
- const regenerateButton = [
- ...document.getElementsByClassName('regenerate-response-button')
- ]?.at(-1);
- regenerateButton?.click();
- }
- if (prompt === '' && e.key == 'ArrowUp') {
- e.preventDefault();
- const userMessageElement = [
- ...document.getElementsByClassName('user-message')
- ]?.at(-1);
- const editButton = [
- ...document.getElementsByClassName('edit-user-message-button')
- ]?.at(-1);
- console.log(userMessageElement);
- userMessageElement?.scrollIntoView({ block: 'center' });
- editButton?.click();
- }
- if (commandsContainerElement) {
- if (commandsContainerElement && e.key === 'ArrowUp') {
- e.preventDefault();
- commandsElement.selectUp();
- const container = document.getElementById('command-options-container');
- const commandOptionButton = [
- ...document.getElementsByClassName('selected-command-option-button')
- ]?.at(-1);
- if (commandOptionButton && container) {
- const elTop = commandOptionButton.offsetTop;
- const elHeight = commandOptionButton.offsetHeight;
- const containerHeight = container.clientHeight;
- // Center the selected button in the container
- container.scrollTop = elTop - containerHeight / 2 + elHeight / 2;
- }
- }
- if (commandsContainerElement && e.key === 'ArrowDown') {
- e.preventDefault();
- commandsElement.selectDown();
- const container = document.getElementById('command-options-container');
- const commandOptionButton = [
- ...document.getElementsByClassName('selected-command-option-button')
- ]?.at(-1);
- if (commandOptionButton && container) {
- const elTop = commandOptionButton.offsetTop;
- const elHeight = commandOptionButton.offsetHeight;
- const containerHeight = container.clientHeight;
- // Center the selected button in the container
- container.scrollTop = elTop - containerHeight / 2 + elHeight / 2;
- }
- }
- if (commandsContainerElement && e.key === 'Enter') {
- e.preventDefault();
- const commandOptionButton = [
- ...document.getElementsByClassName('selected-command-option-button')
- ]?.at(-1);
- if (e.shiftKey) {
- prompt = `${prompt}\n`;
- } else if (commandOptionButton) {
- commandOptionButton?.click();
- } else {
- document.getElementById('send-message-button')?.click();
- }
- }
- if (commandsContainerElement && e.key === 'Tab') {
- e.preventDefault();
- const commandOptionButton = [
- ...document.getElementsByClassName('selected-command-option-button')
- ]?.at(-1);
- commandOptionButton?.click();
- }
- } else {
- if (
- !$mobile ||
- !(
- 'ontouchstart' in window ||
- navigator.maxTouchPoints > 0 ||
- navigator.msMaxTouchPoints > 0
- )
- ) {
- if (isComposing) {
- return;
- }
- // Prevent Enter key from creating a new line
- const isCtrlPressed = e.ctrlKey || e.metaKey;
- const enterPressed =
- ($settings?.ctrlEnterToSend ?? false)
- ? (e.key === 'Enter' || e.keyCode === 13) && isCtrlPressed
- : (e.key === 'Enter' || e.keyCode === 13) && !e.shiftKey;
- if (enterPressed) {
- e.preventDefault();
- }
- // Submit the prompt when Enter key is pressed
- if ((prompt !== '' || files.length > 0) && enterPressed) {
- dispatch('submit', prompt);
- }
- }
- }
- if (e.key === 'Tab') {
- const words = extractCurlyBraceWords(prompt);
- if (words.length > 0) {
- const word = words.at(0);
- if (word && e.target instanceof HTMLTextAreaElement) {
- // Prevent default tab behavior
- e.preventDefault();
- e.target.setSelectionRange(word?.startIndex, word.endIndex + 1);
- e.target.focus();
- const selectionRow =
- (word?.startIndex - (word?.startIndex % e.target.cols)) /
- e.target.cols;
- const lineHeight = e.target.clientHeight / e.target.rows;
- e.target.scrollTop = lineHeight * selectionRow;
- }
- }
- e.target.style.height = '';
- e.target.style.height = Math.min(e.target.scrollHeight, 320) + 'px';
- }
- if (e.key === 'Escape') {
- console.log('Escape');
- atSelectedModel = undefined;
- selectedToolIds = [];
- selectedFilterIds = [];
- webSearchEnabled = false;
- imageGenerationEnabled = false;
- codeInterpreterEnabled = false;
- }
- }}
- rows="1"
- on:input={async (e) => {
- e.target.style.height = '';
- e.target.style.height = Math.min(e.target.scrollHeight, 320) + 'px';
- }}
- on:focus={async (e) => {
- e.target.style.height = '';
- e.target.style.height = Math.min(e.target.scrollHeight, 320) + 'px';
- }}
- on:paste={async (e) => {
- const clipboardData = e.clipboardData || window.clipboardData;
- if (clipboardData && clipboardData.items) {
- for (const item of clipboardData.items) {
- if (item.type.indexOf('image') !== -1) {
- const blob = item.getAsFile();
- const reader = new FileReader();
- reader.onload = function (e) {
- files = [
- ...files,
- {
- type: 'image',
- url: `${e.target.result}`
- }
- ];
- };
- reader.readAsDataURL(blob);
- } else if (item.type === 'text/plain') {
- if (($settings?.largeTextAsFile ?? false) && !shiftKey) {
- const text = clipboardData.getData('text/plain');
- if (text.length > PASTED_TEXT_CHARACTER_LIMIT) {
- e.preventDefault();
- const blob = new Blob([text], { type: 'text/plain' });
- const file = new File([blob], `Pasted_Text_${Date.now()}.txt`, {
- type: 'text/plain'
- });
- await uploadFileHandler(file, true);
- }
- }
- }
- }
- }
- }}
- />
- {/if}
- </div>
- <div class=" flex justify-between mt-0.5 mb-2.5 mx-0.5 max-w-full" dir="ltr">
- <div class="ml-1 self-end flex items-center flex-1 max-w-[80%]">
- <InputMenu
- bind:selectedToolIds
- selectedModels={atSelectedModel ? [atSelectedModel.id] : selectedModels}
- {fileUploadCapableModels}
- {screenCaptureHandler}
- {inputFilesHandler}
- uploadFilesHandler={() => {
- filesInputElement.click();
- }}
- uploadGoogleDriveHandler={async () => {
- try {
- const fileData = await createPicker();
- if (fileData) {
- const file = new File([fileData.blob], fileData.name, {
- type: fileData.blob.type
- });
- await uploadFileHandler(file);
- } else {
- console.log('No file was selected from Google Drive');
- }
- } catch (error) {
- console.error('Google Drive Error:', error);
- toast.error(
- $i18n.t('Error accessing Google Drive: {{error}}', {
- error: error.message
- })
- );
- }
- }}
- uploadOneDriveHandler={async (authorityType) => {
- try {
- const fileData = await pickAndDownloadFile(authorityType);
- if (fileData) {
- const file = new File([fileData.blob], fileData.name, {
- type: fileData.blob.type || 'application/octet-stream'
- });
- await uploadFileHandler(file);
- } else {
- console.log('No file was selected from OneDrive');
- }
- } catch (error) {
- console.error('OneDrive Error:', error);
- }
- }}
- onClose={async () => {
- await tick();
- const chatInput = document.getElementById('chat-input');
- chatInput?.focus();
- }}
- >
- <button
- class="bg-transparent hover:bg-gray-100 text-gray-800 dark:text-white dark:hover:bg-gray-800 transition rounded-full p-1.5 outline-hidden focus:outline-hidden"
- type="button"
- aria-label={$i18n.t('More Available Tools')}
- >
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- aria-hidden="true"
- fill="currentColor"
- class="size-5"
- >
- <path
- d="M10.75 4.75a.75.75 0 0 0-1.5 0v4.5h-4.5a.75.75 0 0 0 0 1.5h4.5v4.5a.75.75 0 0 0 1.5 0v-4.5h4.5a.75.75 0 0 0 0-1.5h-4.5v-4.5Z"
- />
- </svg>
- </button>
- </InputMenu>
- {#if $_user && (showToolsButton || (toggleFilters && toggleFilters.length > 0) || showWebSearchButton || showImageGenerationButton || showCodeInterpreterButton)}
- <div
- class="flex self-center w-[1px] h-4 mx-1.5 bg-gray-50 dark:bg-gray-800"
- />
- <div class="flex gap-1 items-center overflow-x-auto scrollbar-none flex-1">
- {#if showToolsButton}
- <Tooltip
- content={$i18n.t('{{COUNT}} Available Tools', {
- COUNT: toolServers.length + selectedToolIds.length
- })}
- >
- <button
- class="translate-y-[0.5px] flex gap-1 items-center text-gray-600 dark:text-gray-300 hover:text-gray-700 dark:hover:text-gray-200 rounded-lg p-1 self-center transition"
- aria-label="Available Tools"
- type="button"
- on:click={() => {
- showTools = !showTools;
- }}
- >
- <Wrench className="size-4" strokeWidth="1.75" />
- <span class="text-sm font-medium text-gray-600 dark:text-gray-300">
- {toolServers.length + selectedToolIds.length}
- </span>
- </button>
- </Tooltip>
- {/if}
- {#each toggleFilters as filter, filterIdx (filter.id)}
- <Tooltip content={filter?.description} placement="top">
- <button
- on:click|preventDefault={() => {
- if (selectedFilterIds.includes(filter.id)) {
- selectedFilterIds = selectedFilterIds.filter(
- (id) => id !== filter.id
- );
- } else {
- selectedFilterIds = [...selectedFilterIds, filter.id];
- }
- }}
- type="button"
- class="px-2 @xl:px-2.5 py-2 flex gap-1.5 items-center text-sm rounded-full transition-colors duration-300 focus:outline-hidden max-w-full overflow-hidden hover:bg-gray-50 dark:hover:bg-gray-800 {selectedFilterIds.includes(
- filter.id
- )
- ? 'text-sky-500 dark:text-sky-300 bg-sky-50 dark:bg-sky-200/5'
- : 'bg-transparent text-gray-600 dark:text-gray-300 '} capitalize"
- >
- {#if filter?.icon}
- <div class="size-4 items-center flex justify-center">
- <img
- src={filter.icon}
- class="size-3.5 {filter.icon.includes('svg')
- ? 'dark:invert-[80%]'
- : ''}"
- style="fill: currentColor;"
- alt={filter.name}
- />
- </div>
- {:else}
- <Sparkles className="size-4" strokeWidth="1.75" />
- {/if}
- <span
- class="hidden @xl:block whitespace-nowrap overflow-hidden text-ellipsis leading-none pr-0.5"
- >{filter?.name}</span
- >
- </button>
- </Tooltip>
- {/each}
- {#if showWebSearchButton}
- <Tooltip content={$i18n.t('Search the internet')} placement="top">
- <button
- on:click|preventDefault={() => (webSearchEnabled = !webSearchEnabled)}
- type="button"
- class="px-2 @xl:px-2.5 py-2 flex gap-1.5 items-center text-sm rounded-full transition-colors duration-300 focus:outline-hidden max-w-full overflow-hidden hover:bg-gray-50 dark:hover:bg-gray-800 {webSearchEnabled ||
- ($settings?.webSearch ?? false) === 'always'
- ? ' text-sky-500 dark:text-sky-300 bg-sky-50 dark:bg-sky-200/5'
- : 'bg-transparent text-gray-600 dark:text-gray-300 '}"
- >
- <GlobeAlt className="size-4" strokeWidth="1.75" />
- <span
- class="hidden @xl:block whitespace-nowrap overflow-hidden text-ellipsis leading-none pr-0.5"
- >{$i18n.t('Web Search')}</span
- >
- </button>
- </Tooltip>
- {/if}
- {#if showImageGenerationButton}
- <Tooltip content={$i18n.t('Generate an image')} placement="top">
- <button
- on:click|preventDefault={() =>
- (imageGenerationEnabled = !imageGenerationEnabled)}
- type="button"
- class="px-2 @xl:px-2.5 py-2 flex gap-1.5 items-center text-sm rounded-full transition-colors duration-300 focus:outline-hidden max-w-full overflow-hidden hover:bg-gray-50 dark:hover:bg-gray-800 {imageGenerationEnabled
- ? ' text-sky-500 dark:text-sky-300 bg-sky-50 dark:bg-sky-200/5'
- : 'bg-transparent text-gray-600 dark:text-gray-300 '}"
- >
- <Photo className="size-4" strokeWidth="1.75" />
- <span
- class="hidden @xl:block whitespace-nowrap overflow-hidden text-ellipsis leading-none pr-0.5"
- >{$i18n.t('Image')}</span
- >
- </button>
- </Tooltip>
- {/if}
- {#if showCodeInterpreterButton}
- <Tooltip content={$i18n.t('Execute code for analysis')} placement="top">
- <button
- aria-label={codeInterpreterEnabled
- ? $i18n.t('Disable Code Interpreter')
- : $i18n.t('Enable Code Interpreter')}
- aria-pressed={codeInterpreterEnabled}
- on:click|preventDefault={() =>
- (codeInterpreterEnabled = !codeInterpreterEnabled)}
- type="button"
- class="px-2 @xl:px-2.5 py-2 flex gap-1.5 items-center text-sm rounded-full transition-colors duration-300 focus:outline-hidden max-w-full overflow-hidden hover:bg-gray-50 dark:hover:bg-gray-800 {codeInterpreterEnabled
- ? ' text-sky-500 dark:text-sky-300 bg-sky-50 dark:bg-sky-200/5'
- : 'bg-transparent text-gray-600 dark:text-gray-300 '}"
- >
- <CommandLine className="size-4" strokeWidth="1.75" />
- <span
- class="hidden @xl:block whitespace-nowrap overflow-hidden text-ellipsis leading-none pr-0.5"
- >{$i18n.t('Code Interpreter')}</span
- >
- </button>
- </Tooltip>
- {/if}
- </div>
- {/if}
- </div>
- <div class="self-end flex space-x-1 mr-1 shrink-0">
- {#if (!history?.currentId || history.messages[history.currentId]?.done == true) && ($_user?.role === 'admin' || ($_user?.permissions?.chat?.stt ?? true))}
- <!-- {$i18n.t('Record voice')} -->
- <Tooltip content={$i18n.t('Dictate')}>
- <button
- id="voice-input-button"
- class=" text-gray-600 dark:text-gray-300 hover:text-gray-700 dark:hover:text-gray-200 transition rounded-full p-1.5 mr-0.5 self-center"
- type="button"
- on:click={async () => {
- try {
- let stream = await navigator.mediaDevices
- .getUserMedia({ audio: true })
- .catch(function (err) {
- toast.error(
- $i18n.t(
- `Permission denied when accessing microphone: {{error}}`,
- {
- error: err
- }
- )
- );
- return null;
- });
- if (stream) {
- recording = true;
- const tracks = stream.getTracks();
- tracks.forEach((track) => track.stop());
- }
- stream = null;
- } catch {
- toast.error($i18n.t('Permission denied when accessing microphone'));
- }
- }}
- aria-label="Voice Input"
- >
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 20 20"
- fill="currentColor"
- class="w-5 h-5 translate-y-[0.5px]"
- >
- <path d="M7 4a3 3 0 016 0v6a3 3 0 11-6 0V4z" />
- <path
- d="M5.5 9.643a.75.75 0 00-1.5 0V10c0 3.06 2.29 5.585 5.25 5.954V17.5h-1.5a.75.75 0 000 1.5h4.5a.75.75 0 000-1.5h-1.5v-1.546A6.001 6.001 0 0016 10v-.357a.75.75 0 00-1.5 0V10a4.5 4.5 0 01-9 0v-.357z"
- />
- </svg>
- </button>
- </Tooltip>
- {/if}
- {#if (taskIds && taskIds.length > 0) || (history.currentId && history.messages[history.currentId]?.done != true)}
- <div class=" flex items-center">
- <Tooltip content={$i18n.t('Stop')}>
- <button
- class="bg-white hover:bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-white dark:hover:bg-gray-800 transition rounded-full p-1.5"
- on:click={() => {
- stopResponse();
- }}
- >
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 24 24"
- fill="currentColor"
- class="size-5"
- >
- <path
- fill-rule="evenodd"
- d="M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12zm6-2.438c0-.724.588-1.312 1.313-1.312h4.874c.725 0 1.313.588 1.313 1.313v4.874c0 .725-.588 1.313-1.313 1.313H9.564a1.312 1.312 0 01-1.313-1.313V9.564z"
- clip-rule="evenodd"
- />
- </svg>
- </button>
- </Tooltip>
- </div>
- {:else if prompt === '' && files.length === 0 && ($_user?.role === 'admin' || ($_user?.permissions?.chat?.call ?? true))}
- <div class=" flex items-center">
- <!-- {$i18n.t('Call')} -->
- <Tooltip content={$i18n.t('Voice mode')}>
- <button
- class=" bg-black text-white hover:bg-gray-900 dark:bg-white dark:text-black dark:hover:bg-gray-100 transition rounded-full p-1.5 self-center"
- type="button"
- on:click={async () => {
- if (selectedModels.length > 1) {
- toast.error($i18n.t('Select only one model to call'));
- return;
- }
- if ($config.audio.stt.engine === 'web') {
- toast.error(
- $i18n.t('Call feature is not supported when using Web STT engine')
- );
- return;
- }
- // check if user has access to getUserMedia
- try {
- let stream = await navigator.mediaDevices.getUserMedia({
- audio: true
- });
- // If the user grants the permission, proceed to show the call overlay
- if (stream) {
- const tracks = stream.getTracks();
- tracks.forEach((track) => track.stop());
- }
- stream = null;
- if ($settings.audio?.tts?.engine === 'browser-kokoro') {
- // If the user has not initialized the TTS worker, initialize it
- if (!$TTSWorker) {
- await TTSWorker.set(
- new KokoroWorker({
- dtype: $settings.audio?.tts?.engineConfig?.dtype ?? 'fp32'
- })
- );
- await $TTSWorker.init();
- }
- }
- showCallOverlay.set(true);
- showControls.set(true);
- } catch (err) {
- // If the user denies the permission or an error occurs, show an error message
- toast.error(
- $i18n.t('Permission denied when accessing media devices')
- );
- }
- }}
- aria-label={$i18n.t('Voice mode')}
- >
- <Headphone className="size-5" />
- </button>
- </Tooltip>
- </div>
- {:else}
- <div class=" flex items-center">
- <Tooltip content={$i18n.t('Send message')}>
- <button
- id="send-message-button"
- class="{!(prompt === '' && files.length === 0)
- ? 'bg-black text-white hover:bg-gray-900 dark:bg-white dark:text-black dark:hover:bg-gray-100 '
- : 'text-white bg-gray-200 dark:text-gray-900 dark:bg-gray-700 disabled'} transition rounded-full p-1.5 self-center"
- type="submit"
- disabled={prompt === '' && files.length === 0}
- >
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 16 16"
- fill="currentColor"
- class="size-5"
- >
- <path
- fill-rule="evenodd"
- d="M8 14a.75.75 0 0 1-.75-.75V4.56L4.03 7.78a.75.75 0 0 1-1.06-1.06l4.5-4.5a.75.75 0 0 1 1.06 0l4.5 4.5a.75.75 0 0 1-1.06 1.06L8.75 4.56v8.69A.75.75 0 0 1 8 14Z"
- clip-rule="evenodd"
- />
- </svg>
- </button>
- </Tooltip>
- </div>
- {/if}
- </div>
- </div>
- </div>
- {#if $config?.license_metadata?.input_footer}
- <div class=" text-xs text-gray-500 text-center line-clamp-1 marked">
- {@html DOMPurify.sanitize(marked($config?.license_metadata?.input_footer))}
- </div>
- {:else}
- <div class="mb-1" />
- {/if}
- </form>
- {/if}
- </div>
- </div>
- </div>
- </div>
- {/if}
|