Spaces:
Build error
Build error
<script lang="ts"> | |
import ChatWindow from '$lib/components/chat/ChatWindow.svelte'; | |
import { pendingMessage } from '$lib/stores/pendingMessage'; | |
import { onMount } from 'svelte'; | |
import type { PageData } from './$types'; | |
import { page } from '$app/stores'; | |
import { HfInference } from '@huggingface/inference'; | |
import { invalidate } from '$app/navigation'; | |
export let data: PageData; | |
$: messages = data.messages; | |
const hf = new HfInference(); | |
let loading = false; | |
async function getTextGenerationStream(inputs: string) { | |
const response = hf.endpoint($page.url.href).textGenerationStream( | |
{ | |
inputs, | |
parameters: { | |
// Taken from https://huggingface.co/spaces/huggingface/open-assistant-private-testing/blob/main/app.py#L54 | |
temperature: 0.9, | |
top_p: 0.95, | |
repetition_penalty: 1.2, | |
top_k: 50, | |
// @ts-ignore | |
truncate: 1024, | |
watermark: false, | |
max_new_tokens: 1024, | |
stop: ['<|endoftext|>'], | |
return_full_text: false | |
} | |
}, | |
{ | |
use_cache: false | |
} | |
); | |
for await (const data of response) { | |
if (!data) break; | |
if (!data.token.special) { | |
const lastMessage = messages.at(-1); | |
if (lastMessage?.from !== 'assistant') { | |
// First token has a space at the beginning, trim it | |
messages = [...messages, { from: 'assistant', content: data.token.text.trimStart() }]; | |
} else { | |
lastMessage.content += data.token.text; | |
messages = [...messages]; | |
} | |
} | |
} | |
} | |
async function writeMessage(message: string) { | |
if (!message.trim()) return; | |
try { | |
loading = true; | |
messages = [...messages, { from: 'user', content: message }]; | |
await getTextGenerationStream(message); | |
// Reload conversation order - doesn't seem to work | |
// await invalidate('/'); | |
} finally { | |
loading = false; | |
} | |
} | |
onMount(async () => { | |
if ($pendingMessage) { | |
const val = $pendingMessage; | |
$pendingMessage = ''; | |
if (messages.length === 0) { | |
writeMessage(val); | |
} | |
} | |
}); | |
</script> | |
<ChatWindow disabled={loading} {messages} on:message={(message) => writeMessage(message.detail)} /> | |