|
<script lang="ts"> |
|
import type { Message, MessageFile } from "$lib/types/Message"; |
|
import { createEventDispatcher, onDestroy, tick } from "svelte"; |
|
|
|
import CarbonSendAltFilled from "~icons/carbon/send-alt-filled"; |
|
import CarbonExport from "~icons/carbon/export"; |
|
import CarbonCheckmark from "~icons/carbon/checkmark"; |
|
import CarbonCaretDown from "~icons/carbon/caret-down"; |
|
|
|
import EosIconsLoading from "~icons/eos-icons/loading"; |
|
|
|
import ChatInput from "./ChatInput.svelte"; |
|
import StopGeneratingBtn from "../StopGeneratingBtn.svelte"; |
|
import type { Model } from "$lib/types/Model"; |
|
import LoginModal from "../LoginModal.svelte"; |
|
import { page } from "$app/stores"; |
|
import FileDropzone from "./FileDropzone.svelte"; |
|
import RetryBtn from "../RetryBtn.svelte"; |
|
import file2base64 from "$lib/utils/file2base64"; |
|
import type { Assistant } from "$lib/types/Assistant"; |
|
import { base } from "$app/paths"; |
|
import ContinueBtn from "../ContinueBtn.svelte"; |
|
import AssistantIntroduction from "./AssistantIntroduction.svelte"; |
|
import ChatMessage from "./ChatMessage.svelte"; |
|
import ScrollToBottomBtn from "../ScrollToBottomBtn.svelte"; |
|
import ScrollToPreviousBtn from "../ScrollToPreviousBtn.svelte"; |
|
import { browser } from "$app/environment"; |
|
import { snapScrollToBottom } from "$lib/actions/snapScrollToBottom"; |
|
import SystemPromptModal from "../SystemPromptModal.svelte"; |
|
import ChatIntroduction from "./ChatIntroduction.svelte"; |
|
import { useConvTreeStore } from "$lib/stores/convTree"; |
|
import UploadedFile from "./UploadedFile.svelte"; |
|
import { useSettingsStore } from "$lib/stores/settings"; |
|
import ModelSwitch from "./ModelSwitch.svelte"; |
|
|
|
import { fly } from "svelte/transition"; |
|
import { cubicInOut } from "svelte/easing"; |
|
import type { ToolFront } from "$lib/types/Tool"; |
|
|
|
export let messages: Message[] = []; |
|
export let loading = false; |
|
export let pending = false; |
|
|
|
export let shared = false; |
|
export let currentModel: Model; |
|
export let models: Model[]; |
|
export let assistant: Assistant | undefined = undefined; |
|
export let preprompt: string | undefined = undefined; |
|
export let files: File[] = []; |
|
|
|
$: isReadOnly = !models.some((model) => model.id === currentModel.id); |
|
|
|
let loginModalOpen = false; |
|
let message: string; |
|
let timeout: ReturnType<typeof setTimeout>; |
|
let isSharedRecently = false; |
|
$: pastedLongContent = false; |
|
$: $page.params.id && (isSharedRecently = false); |
|
|
|
const dispatch = createEventDispatcher<{ |
|
message: string; |
|
share: void; |
|
stop: void; |
|
retry: { id: Message["id"]; content?: string }; |
|
continue: { id: Message["id"] }; |
|
}>(); |
|
|
|
const handleSubmit = () => { |
|
if (loading) return; |
|
dispatch("message", message); |
|
message = ""; |
|
}; |
|
|
|
let lastTarget: EventTarget | null = null; |
|
|
|
let onDrag = false; |
|
|
|
const onDragEnter = (e: DragEvent) => { |
|
lastTarget = e.target; |
|
onDrag = true; |
|
}; |
|
const onDragLeave = (e: DragEvent) => { |
|
if (e.target === lastTarget) { |
|
onDrag = false; |
|
} |
|
}; |
|
|
|
const onPaste = (e: ClipboardEvent) => { |
|
const textContent = e.clipboardData?.getData("text"); |
|
|
|
if (!$settings.directPaste && textContent && textContent.length >= 3984) { |
|
e.preventDefault(); |
|
pastedLongContent = true; |
|
setTimeout(() => { |
|
pastedLongContent = false; |
|
}, 1000); |
|
const pastedFile = new File([textContent], "Pasted Content", { |
|
type: "application/vnd.chatui.clipboard", |
|
}); |
|
|
|
files = [...files, pastedFile]; |
|
} |
|
|
|
if (!e.clipboardData) { |
|
return; |
|
} |
|
|
|
|
|
const pastedFiles = Array.from(e.clipboardData.files); |
|
if (pastedFiles.length !== 0) { |
|
e.preventDefault(); |
|
|
|
// filter based on activeMimeTypes, including wildcards |
|
const filteredFiles = pastedFiles.filter((file) => { |
|
return activeMimeTypes.some((mimeType: string) => { |
|
const [type, subtype] = mimeType.split("/"); |
|
const [fileType, fileSubtype] = file.type.split("/"); |
|
return type === fileType && (subtype === "*" || fileSubtype === subtype); |
|
}); |
|
}); |
|
|
|
files = [...files, ...filteredFiles]; |
|
} |
|
}; |
|
|
|
const convTreeStore = useConvTreeStore(); |
|
|
|
const updateCurrentIndex = () => { |
|
const url = new URL($page.url); |
|
let leafId = url.searchParams.get("leafId"); |
|
|
|
// Ensure the function is only run in the browser. |
|
if (!browser) return; |
|
|
|
if (leafId) { |
|
// Remove the 'leafId' from the URL to clean up after retrieving it. |
|
url.searchParams.delete("leafId"); |
|
history.replaceState(null, "", url.toString()); |
|
} else { |
|
// Retrieve the 'leafId' from localStorage if it's not in the URL. |
|
leafId = localStorage.getItem("leafId"); |
|
} |
|
|
|
|
|
if (leafId) { |
|
let leafMessage = messages.find((m) => m.id == leafId); |
|
if (!leafMessage?.ancestors) return; // Exit if the message has no ancestors. |
|
|
|
let ancestors = leafMessage.ancestors; |
|
|
|
// Loop through all ancestors to update the current child index. |
|
for (let i = 0; i < ancestors.length; i++) { |
|
let curMessage = messages.find((m) => m.id == ancestors[i]); |
|
if (curMessage?.children) { |
|
for (let j = 0; j < curMessage.children.length; j++) { |
|
// Check if the current message's child matches the next ancestor |
|
// or the leaf itself, and update the currentChildIndex accordingly. |
|
if (i + 1 < ancestors.length) { |
|
if (curMessage.children[j] == ancestors[i + 1]) { |
|
curMessage.currentChildIndex = j; |
|
break; |
|
} |
|
} else { |
|
if (curMessage.children[j] == leafId) { |
|
curMessage.currentChildIndex = j; |
|
break; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
}; |
|
|
|
updateCurrentIndex(); |
|
|
|
$: lastMessage = browser && (messages.find((m) => m.id == $convTreeStore.leaf) as Message); |
|
$: lastIsError = |
|
lastMessage && |
|
!loading && |
|
(lastMessage.from === "user" || |
|
lastMessage.updates?.findIndex((u) => u.type === "status" && u.status === "error") !== -1); |
|
|
|
$: sources = files?.map<Promise<MessageFile>>((file) => |
|
file2base64(file).then((value) => ({ type: "base64", value, mime: file.type, name: file.name })) |
|
); |
|
|
|
function onShare() { |
|
if (!confirm("Are you sure you want to share this conversation? This cannot be undone.")) { |
|
return; |
|
} |
|
|
|
dispatch("share"); |
|
isSharedRecently = true; |
|
if (timeout) { |
|
clearTimeout(timeout); |
|
} |
|
timeout = setTimeout(() => { |
|
isSharedRecently = false; |
|
}, 2000); |
|
} |
|
|
|
onDestroy(() => { |
|
if (timeout) { |
|
clearTimeout(timeout); |
|
} |
|
}); |
|
|
|
let chatContainer: HTMLElement; |
|
|
|
async function scrollToBottom() { |
|
await tick(); |
|
chatContainer.scrollTop = chatContainer.scrollHeight; |
|
} |
|
|
|
|
|
$: if (lastMessage && lastMessage.from === "user") { |
|
scrollToBottom(); |
|
} |
|
|
|
const settings = useSettingsStore(); |
|
|
|
$: mimeTypesFromActiveTools = $page.data.tools |
|
.filter((tool: ToolFront) => { |
|
if ($page.data?.assistant) { |
|
return $page.data.assistant.tools?.includes(tool._id); |
|
} |
|
if (currentModel.tools) { |
|
return $settings?.tools?.includes(tool._id) ?? tool.isOnByDefault; |
|
} |
|
return false; |
|
}) |
|
.flatMap((tool: ToolFront) => tool.mimeTypes ?? []); |
|
|
|
$: activeMimeTypes = Array.from( |
|
new Set([ |
|
...mimeTypesFromActiveTools, |
|
...(currentModel.tools && !$page.data.assistant ? ["application/pdf"] : []), |
|
...(currentModel.multimodal ? currentModel.multimodalAcceptedMimetypes ?? ["image/*"] : []), |
|
]) |
|
); |
|
$: isFileUploadEnabled = activeMimeTypes.length > 0; |
|
</script> |
|
|
|
<svelte:window |
|
on:dragenter={onDragEnter} |
|
on:dragleave={onDragLeave} |
|
on:dragover|preventDefault |
|
on:drop|preventDefault={() => (onDrag = false)} |
|
/> |
|
|
|
<div class="relative min-h-0 min-w-0"> |
|
{#if loginModalOpen} |
|
<LoginModal |
|
on:close={() => { |
|
loginModalOpen = false; |
|
}} |
|
/> |
|
{/if} |
|
<div |
|
class="scrollbar-custom h-full overflow-y-auto" |
|
use:snapScrollToBottom={messages.length ? [...messages] : false} |
|
bind:this={chatContainer} |
|
> |
|
<div |
|
class="mx-auto flex h-full max-w-3xl flex-col gap-6 px-5 pt-6 sm:gap-8 xl:max-w-4xl xl:pt-10" |
|
> |
|
{#if $page.data?.assistant && !!messages.length} |
|
<a |
|
class="mx-auto flex items-center gap-1.5 rounded-full border border-gray-100 bg-gray-50 py-1 pl-1 pr-3 text-sm text-gray-800 hover:bg-gray-100 dark:border-gray-800 dark:bg-gray-800 dark:text-gray-200 dark:hover:bg-gray-700" |
|
href="{base}/settings/assistants/{$page.data.assistant._id}" |
|
> |
|
{#if $page.data?.assistant.avatar} |
|
<img |
|
src="{base}/settings/assistants/{$page.data?.assistant._id.toString()}/avatar.jpg?hash=${$page |
|
.data.assistant.avatar}" |
|
alt="Avatar" |
|
class="size-5 rounded-full object-cover" |
|
/> |
|
{:else} |
|
<div |
|
class="flex size-6 items-center justify-center rounded-full bg-gray-300 font-bold uppercase text-gray-500" |
|
> |
|
{$page.data?.assistant.name[0]} |
|
</div> |
|
{/if} |
|
|
|
{$page.data.assistant.name} |
|
</a> |
|
{:else if preprompt && preprompt != currentModel.preprompt} |
|
<SystemPromptModal preprompt={preprompt ?? ""} /> |
|
{/if} |
|
|
|
{#if messages.length > 0} |
|
<div class="flex h-max flex-col gap-8 pb-52"> |
|
<ChatMessage |
|
{loading} |
|
{messages} |
|
id={messages[0].id} |
|
isAuthor={!shared} |
|
readOnly={isReadOnly} |
|
model={currentModel} |
|
on:retry |
|
on:vote |
|
on:continue |
|
/> |
|
{#if isReadOnly} |
|
<ModelSwitch {models} {currentModel} /> |
|
{/if} |
|
</div> |
|
{:else if pending} |
|
<ChatMessage |
|
loading={true} |
|
messages={[ |
|
{ |
|
id: "0-0-0-0-0", |
|
content: "", |
|
from: "assistant", |
|
children: [], |
|
}, |
|
]} |
|
id={"0-0-0-0-0"} |
|
isAuthor={!shared} |
|
readOnly={isReadOnly} |
|
model={currentModel} |
|
/> |
|
{:else if !assistant} |
|
<ChatIntroduction |
|
{currentModel} |
|
on:message={(ev) => { |
|
if ($page.data.loginRequired) { |
|
ev.preventDefault(); |
|
loginModalOpen = true; |
|
} else { |
|
dispatch("message", ev.detail); |
|
} |
|
}} |
|
/> |
|
{:else} |
|
<AssistantIntroduction |
|
{models} |
|
{assistant} |
|
on:message={(ev) => { |
|
if ($page.data.loginRequired) { |
|
ev.preventDefault(); |
|
loginModalOpen = true; |
|
} else { |
|
dispatch("message", ev.detail); |
|
} |
|
}} |
|
/> |
|
{/if} |
|
</div> |
|
|
|
<ScrollToPreviousBtn |
|
class="fixed right-4 max-md:bottom-[calc(50%+26px)] md:bottom-48 lg:right-10" |
|
scrollNode={chatContainer} |
|
/> |
|
|
|
<ScrollToBottomBtn |
|
class="fixed right-4 max-md:bottom-[calc(50%-26px)] md:bottom-36 lg:right-10" |
|
scrollNode={chatContainer} |
|
/> |
|
</div> |
|
<div |
|
class="dark:via-gray-80 pointer-events-none absolute inset-x-0 bottom-0 z-0 mx-auto flex w-full max-w-3xl flex-col items-center justify-center bg-gradient-to-t from-white via-white/80 to-white/0 px-3.5 py-4 dark:border-gray-800 dark:from-gray-900 dark:to-gray-900/0 max-md:border-t max-md:bg-white max-md:dark:bg-gray-900 sm:px-5 md:py-8 xl:max-w-4xl [&>*]:pointer-events-auto" |
|
> |
|
{#if sources?.length && !loading} |
|
<div |
|
in:fly|local={sources.length === 1 ? { y: -20, easing: cubicInOut } : undefined} |
|
class="flex flex-row flex-wrap justify-center gap-2.5 rounded-xl max-md:pb-3" |
|
> |
|
{#each sources as source, index} |
|
{#await source then src} |
|
<UploadedFile |
|
file={src} |
|
on:close={() => { |
|
files = files.filter((_, i) => i !== index); |
|
}} |
|
/> |
|
{/await} |
|
{/each} |
|
</div> |
|
{/if} |
|
|
|
<div class="w-full"> |
|
<div class="flex w-full pb-3"> |
|
{#if loading} |
|
<StopGeneratingBtn classNames="ml-auto" on:click={() => dispatch("stop")} /> |
|
{:else if lastIsError} |
|
<RetryBtn |
|
classNames="ml-auto" |
|
on:click={() => { |
|
if (lastMessage && lastMessage.ancestors) { |
|
dispatch("retry", { |
|
id: lastMessage.id, |
|
}); |
|
} |
|
}} |
|
/> |
|
{:else} |
|
<div class="ml-auto gap-2"> |
|
{#if messages && lastMessage && lastMessage.interrupted && !isReadOnly} |
|
<ContinueBtn |
|
on:click={() => { |
|
if (lastMessage && lastMessage.ancestors) { |
|
dispatch("continue", { |
|
id: lastMessage?.id, |
|
}); |
|
} |
|
}} |
|
/> |
|
{/if} |
|
</div> |
|
{/if} |
|
</div> |
|
<form |
|
tabindex="-1" |
|
aria-label={isFileUploadEnabled ? "file dropzone" : undefined} |
|
on:submit|preventDefault={handleSubmit} |
|
class="relative flex w-full max-w-4xl flex-1 items-center rounded-xl border bg-gray-100 focus-within:border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:focus-within:border-gray-500 |
|
{isReadOnly ? 'opacity-30' : ''}" |
|
> |
|
{#if onDrag && isFileUploadEnabled} |
|
<FileDropzone bind:files bind:onDrag mimeTypes={activeMimeTypes} /> |
|
{:else} |
|
<div |
|
class="flex w-full flex-1 rounded-xl border-none bg-transparent" |
|
class:paste-glow={pastedLongContent} |
|
> |
|
{#if lastIsError} |
|
<ChatInput value="Sorry, something went wrong. Please try again." disabled={true} /> |
|
{:else} |
|
<ChatInput |
|
{assistant} |
|
placeholder={isReadOnly ? "This conversation is read-only." : "Ask anything"} |
|
{loading} |
|
bind:value={message} |
|
bind:files |
|
mimeTypes={activeMimeTypes} |
|
on:submit={handleSubmit} |
|
on:beforeinput={(ev) => { |
|
if ($page.data.loginRequired) { |
|
ev.preventDefault(); |
|
loginModalOpen = true; |
|
} |
|
}} |
|
on:paste={onPaste} |
|
disabled={isReadOnly || lastIsError} |
|
modelHasTools={currentModel.tools} |
|
modelIsMultimodal={currentModel.multimodal} |
|
/> |
|
{/if} |
|
|
|
{#if loading} |
|
<button |
|
disabled |
|
class="btn absolute bottom-1 right-0.5 size-10 self-end rounded-lg bg-transparent text-gray-400" |
|
> |
|
<EosIconsLoading /> |
|
</button> |
|
{:else} |
|
<button |
|
class="btn absolute bottom-1 right-0.5 size-10 self-end rounded-lg bg-transparent text-gray-400 enabled:hover:text-gray-700 disabled:opacity-60 enabled:dark:hover:text-gray-100 dark:disabled:opacity-40" |
|
disabled={!message || isReadOnly} |
|
type="submit" |
|
aria-label="Send message" |
|
name="submit" |
|
> |
|
<CarbonSendAltFilled /> |
|
</button> |
|
{/if} |
|
</div> |
|
{/if} |
|
</form> |
|
<div |
|
class="mt-2 flex justify-between self-stretch px-1 text-xs text-gray-400/90 max-md:mb-2 max-sm:gap-2" |
|
> |
|
<p> |
|
Model: |
|
{#if !assistant} |
|
{#if models.find((m) => m.id === currentModel.id)} |
|
<a |
|
href="{base}/settings/{currentModel.id}" |
|
class="inline-flex items-center hover:underline" |
|
>{currentModel.displayName}<CarbonCaretDown class="text-xxs" /></a |
|
> |
|
{:else} |
|
<span class="inline-flex items-center line-through dark:border-gray-700"> |
|
{currentModel.id} |
|
</span> |
|
{/if} |
|
{:else} |
|
{@const model = models.find((m) => m.id === assistant?.modelId)} |
|
{#if model} |
|
<a |
|
href="{base}/settings/assistants/{assistant._id}" |
|
class="inline-flex items-center border-b hover:text-gray-600 dark:border-gray-700 dark:hover:text-gray-300" |
|
>{model?.displayName}<CarbonCaretDown class="text-xxs" /></a |
|
> |
|
{:else} |
|
<span class="inline-flex items-center line-through dark:border-gray-700"> |
|
{currentModel.id} |
|
</span> |
|
{/if} |
|
{/if} |
|
<span class="max-sm:hidden">·</span><br class="sm:hidden" /> Generated content may be inaccurate |
|
or false. |
|
</p> |
|
{#if messages.length} |
|
<button |
|
class="flex flex-none items-center hover:text-gray-400 max-sm:rounded-lg max-sm:bg-gray-50 max-sm:px-2.5 dark:max-sm:bg-gray-800" |
|
type="button" |
|
class:hover:underline={!isSharedRecently} |
|
on:click={onShare} |
|
disabled={isSharedRecently} |
|
> |
|
{#if isSharedRecently} |
|
<CarbonCheckmark class="text-[.6rem] sm:mr-1.5 sm:text-green-600" /> |
|
<div class="text-green-600 max-sm:hidden">Link copied to clipboard</div> |
|
{:else} |
|
<CarbonExport class="sm:text-primary-500 text-[.6rem] sm:mr-1.5" /> |
|
<div class="max-sm:hidden">Share this conversation</div> |
|
{/if} |
|
</button> |
|
{/if} |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<style lang="postcss"> |
|
.paste-glow { |
|
animation: glow 1s cubic-bezier(0.4, 0, 0.2, 1) forwards; |
|
will-change: box-shadow; |
|
} |
|
|
|
@keyframes glow { |
|
0% { |
|
box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.8); |
|
} |
|
50% { |
|
box-shadow: 0 0 20px 4px rgba(59, 130, 246, 0.6); |
|
} |
|
100% { |
|
box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); |
|
} |
|
} |
|
</style> |
|
|