Spaces:
Build error
Build error
File size: 7,188 Bytes
a3ae6ee 5da61b4 4a6603b 0abf663 b8a746c 8811ee0 5da61b4 4a6603b b8a746c 5b779a6 2606dde ad6275a 0c4cf03 bd8c7a0 0ca99f1 ad6275a 189b280 8e370ca 1eb0e2e a11cd21 cad5ba6 ad6275a b7b2c8c ad6275a 4f1405c a415295 0ca99f1 ad6275a bd8c7a0 da1e5da 5b779a6 b7b2c8c 5b779a6 0c4cf03 3aa8136 5b779a6 4a6603b 3aa8136 da1e5da 8811ee0 4f1405c 8811ee0 5da61b4 cad5ba6 4f1405c 8811ee0 697285c 3aa8136 5da61b4 3aa8136 b8a746c 0c4cf03 6434339 a3ae6ee 5da61b4 5b779a6 a3ae6ee 4a6603b a3ae6ee 0c4cf03 a3ae6ee 6434339 0c4cf03 6434339 0c4cf03 3aa8136 0c4cf03 3aa8136 b2387f6 3aa8136 5da61b4 4f1405c 3aa8136 fa72efa cad5ba6 3aa8136 a3ae6ee 5b779a6 a3ae6ee 5da61b4 4a6603b b2387f6 dbd3d72 7b1d57f a3ae6ee b8a746c b7b2c8c a974db9 b7b2c8c b8a746c 4a6603b a3ae6ee |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
<script lang="ts">
import { marked } from "marked";
import type { Message } from "$lib/types/Message";
import { afterUpdate, createEventDispatcher } from "svelte";
import { deepestChild } from "$lib/utils/deepestChild";
import { page } from "$app/stores";
import CodeBlock from "../CodeBlock.svelte";
import IconLoading from "../icons/IconLoading.svelte";
import CarbonRotate360 from "~icons/carbon/rotate-360";
import CarbonDownload from "~icons/carbon/download";
import CarbonThumbsUp from "~icons/carbon/thumbs-up";
import CarbonThumbsDown from "~icons/carbon/thumbs-down";
import { PUBLIC_SEP_TOKEN } from "$lib/constants/publicSepToken";
import type { Model } from "$lib/types/Model";
import type { WebSearchMessage } from "$lib/types/WebSearch";
import OpenWebSearchResults from "../OpenWebSearchResults.svelte";
function sanitizeMd(md: string) {
let ret = md
.replace(/<\|[a-z]*$/, "")
.replace(/<\|[a-z]+\|$/, "")
.replace(/<$/, "")
.replaceAll(PUBLIC_SEP_TOKEN, " ")
.replaceAll(/<\|[a-z]+\|>/g, " ")
.replaceAll(/<br\s?\/?>/gi, "\n")
.replaceAll("<", "<")
.trim();
for (const stop of [...(model.parameters?.stop ?? []), "<|endoftext|>"]) {
if (ret.endsWith(stop)) {
ret = ret.slice(0, -stop.length).trim();
}
}
return ret;
}
function unsanitizeMd(md: string) {
return md.replaceAll("<", "<");
}
export let model: Model;
export let message: Message;
export let loading = false;
export let isAuthor = true;
export let readOnly = false;
export let isTapped = false;
export let webSearchMessages: WebSearchMessage[] = [];
const dispatch = createEventDispatcher<{
retry: { content: string; id: Message["id"] };
vote: { score: Message["score"]; id: Message["id"] };
}>();
let contentEl: HTMLElement;
let loadingEl: IconLoading;
let pendingTimeout: ReturnType<typeof setTimeout>;
const renderer = new marked.Renderer();
// For code blocks with simple backticks
renderer.codespan = (code) => {
// Unsanitize double-sanitized code
return `<code>${code.replaceAll("&", "&")}`;
};
const options: marked.MarkedOptions = {
...marked.getDefaults(),
gfm: true,
breaks: true,
renderer,
};
$: tokens = marked.lexer(sanitizeMd(message.content));
afterUpdate(() => {
loadingEl?.$destroy();
clearTimeout(pendingTimeout);
// Add loading animation to the last message if update takes more than 600ms
if (loading) {
pendingTimeout = setTimeout(() => {
if (contentEl) {
loadingEl = new IconLoading({
target: deepestChild(contentEl),
props: { classNames: "loading inline ml-2" },
});
}
}, 600);
}
});
$: downloadLink =
message.from === "user" ? `${$page.url.pathname}/message/${message.id}/prompt` : undefined;
let webSearchIsDone = true;
$: webSearchIsDone =
webSearchMessages.length > 0 &&
webSearchMessages[webSearchMessages.length - 1].type === "result";
</script>
{#if message.from === "assistant"}
<div
class="group relative -mb-8 flex items-start justify-start gap-4 pb-8 leading-relaxed"
on:click={() => (isTapped = !isTapped)}
on:keypress={() => (isTapped = !isTapped)}
>
<img
alt=""
src="https://huggingface.co/avatars/2edb18bd0206c16b433841a47f53fa8e.svg"
class="mt-5 h-3 w-3 flex-none select-none rounded-full shadow-lg"
/>
<div
class="relative min-h-[calc(2rem+theme(spacing[3.5])*2)] min-w-[60px] break-words rounded-2xl border border-gray-100 bg-gradient-to-br from-gray-50 px-5 py-3.5 text-gray-600 prose-pre:my-2 dark:border-gray-800 dark:from-gray-800/40 dark:text-gray-300"
>
{#if webSearchMessages && webSearchMessages.length > 0}
<OpenWebSearchResults
classNames={tokens.length ? "mb-3.5" : ""}
{webSearchMessages}
loading={!webSearchIsDone}
/>
{/if}
{#if !message.content && (webSearchIsDone || (webSearchMessages && webSearchMessages.length === 0))}
<IconLoading />
{/if}
<div
class="prose max-w-none dark:prose-invert max-sm:prose-sm prose-headings:font-semibold prose-h1:text-lg prose-h2:text-base prose-h3:text-base prose-pre:bg-gray-800 dark:prose-pre:bg-gray-900"
bind:this={contentEl}
>
{#each tokens as token}
{#if token.type === "code"}
<CodeBlock lang={token.lang} code={unsanitizeMd(token.text)} />
{:else}
<!-- eslint-disable-next-line svelte/no-at-html-tags -->
{@html marked(token.raw, options)}
{/if}
{/each}
</div>
</div>
{#if isAuthor && !loading && message.content}
<div
class="absolute bottom-1 right-0 flex max-md:transition-all md:bottom-0 md:group-hover:visible md:group-hover:opacity-100
{message.score ? 'visible opacity-100' : 'invisible max-md:-translate-y-4 max-md:opacity-0'}
{isTapped ? 'max-md:visible max-md:translate-y-0 max-md:opacity-100' : ''}
"
>
<button
class="btn rounded-sm p-1 text-sm text-gray-400 focus:ring-0 hover:text-gray-500 dark:text-gray-400 dark:hover:text-gray-300
{message.score && message.score > 0
? 'text-green-500 hover:text-green-500 dark:text-green-400 hover:dark:text-green-400'
: ''}"
title={message.score === 1 ? "Remove +1" : "+1"}
type="button"
on:click={() => dispatch("vote", { score: message.score === 1 ? 0 : 1, id: message.id })}
>
<CarbonThumbsUp class="h-[1.14em] w-[1.14em]" />
</button>
<button
class="btn rounded-sm p-1 text-sm text-gray-400 focus:ring-0 hover:text-gray-500 dark:text-gray-400 dark:hover:text-gray-300
{message.score && message.score < 0
? 'text-red-500 hover:text-red-500 dark:text-red-400 hover:dark:text-red-400'
: ''}"
title={message.score === -1 ? "Remove -1" : "-1"}
type="button"
on:click={() =>
dispatch("vote", { score: message.score === -1 ? 0 : -1, id: message.id })}
>
<CarbonThumbsDown class="h-[1.14em] w-[1.14em]" />
</button>
</div>
{/if}
</div>
{/if}
{#if message.from === "user"}
<div class="group relative flex items-start justify-start gap-4 max-sm:text-sm">
<div class="mt-5 h-3 w-3 flex-none rounded-full" />
<div
class="max-w-full whitespace-break-spaces break-words rounded-2xl px-5 py-3.5 text-gray-500 dark:text-gray-400"
>
{message.content.trim()}
{#if !loading}
<div class="absolute right-0 top-3.5 flex gap-2 lg:-right-2">
{#if downloadLink}
<a
class="rounded-lg border border-gray-100 p-1 text-xs text-gray-400 group-hover:block hover:text-gray-500 dark:border-gray-800 dark:text-gray-400 dark:hover:text-gray-300 md:hidden"
title="Download prompt and parameters"
type="button"
target="_blank"
href={downloadLink}
{/if}
{#if !readOnly}
<button
class="cursor-pointer rounded-lg border border-gray-100 p-1 text-xs text-gray-400 group-hover:block hover:text-gray-500 dark:border-gray-800 dark:text-gray-400 dark:hover:text-gray-300 md:hidden lg:-right-2"
title="Retry"
type="button"
on:click={() => dispatch("retry", { content: message.content, id: message.id })}
>
<CarbonRotate360 />
</button>
{/if}
</div>
{/if}
</div>
{/if}
|