machineuser
Sync widgets demo
94753b6
raw
history blame
1.04 kB
<script lang="ts">
import { afterUpdate } from "svelte";
import { isFullyScrolled, scrollToMax } from "../../../../utils/ViewUtils.js";
import WidgetOutputConvoBubble from "../WidgetOuputConvoBubble/WidgetOutputConvoBubble.svelte";
import type { ChatMessage } from "@huggingface/tasks";
export let modelId: string;
export let messages: ChatMessage[];
let wrapperEl: HTMLElement;
afterUpdate(() => {
if (wrapperEl && !isFullyScrolled(wrapperEl)) {
scrollToMax(wrapperEl);
}
});
</script>
<div bind:this={wrapperEl} class="h-64 overflow-y-auto rounded-t-lg border border-b-0 leading-tight">
<div class="p-3 pt-6 text-center text-sm text-gray-400 text-balance">
Input a message to start chatting with
<strong>{modelId}</strong>.
</div>
<div class="flex flex-col items-end space-y-4 p-3">
{#each messages as message}
{@const position = message.role === "user" ? "right" : message.role === "assistant" ? "left" : "center"}
<WidgetOutputConvoBubble {position} text={message.content} />
{/each}
</div>
</div>