File size: 6,067 Bytes
39eb06d
 
 
 
 
 
 
 
 
 
 
ab4e04b
 
 
39eb06d
 
f9de203
39eb06d
 
a8fc54a
39eb06d
 
 
5d3a236
 
39eb06d
a8fc54a
e77d876
a8fc54a
39eb06d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a8fc54a
e77d876
 
 
2b9a956
 
a8fc54a
 
 
82f775d
a8fc54a
ba979f0
 
 
 
5bea933
ad695da
842026e
82f775d
191f5be
 
ca4c286
 
191f5be
 
e77d876
 
a8fc54a
 
e77d876
 
 
a8fc54a
39eb06d
 
 
 
 
 
 
 
a8fc54a
39eb06d
 
 
 
a8fc54a
39eb06d
 
 
 
 
 
 
 
ed2f767
 
 
 
39eb06d
ed2f767
 
 
 
 
 
 
 
 
 
39eb06d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a8fc54a
39eb06d
a8fc54a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39eb06d
 
ed2f767
5d3a236
 
 
 
 
 
39eb06d
 
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
<script lang="ts">
	import { HfInference } from '@huggingface/inference';

	import PlaygroundMessage from '$lib/components/Playground/PlaygroundMessage.svelte';
	import PlaygroundOptions from '$lib/components/Playground/PlaygroundOptions.svelte';

	type Message = {
		role: 'user' | 'assistant' | 'system';
		content: string;
	};

	const startMessages: Message[] = [
		{ role: "user", content: "Complete the equation 1+1= ,just the answer" },
	];
	const compatibleModels: string[] = [
		'meta-llama/Meta-Llama-3-8B-Instruct',
		'mistralai/Mistral-7B-Instruct-v0.2'
	];

	let hfToken: string | null = '';
	let currentModel = compatibleModels[0];
	let systemMessage: Message = { role: 'system', content: '' };
	let messages: Message[] = startMessages;
	let temperature = 0.5;
	let maxTokens = 32000;

	let loading = false;
	let streamingMessage: Message | null = null;

	function addMessage() {
		messages = [
			...messages,
			{ role: messages.at(-1)?.role === 'user' ? 'assistant' : 'user', content: '' }
		];
	}

	function deleteMessage(i: number) {
		messages = messages.filter((_, j) => j !== i);
	}

	function reset() {
		messages = startMessages;
	}

	function onKeydown(event: KeyboardEvent) {
		// check if the user is pressing the enter key + ctrl key or command key
		if ((event.ctrlKey || event.metaKey) && event.key === 'Enter') {
			submit();
		}
	}

	async function submit() {
		if (!hfToken) {
			const token = prompt(
				'Please enter your Hugging Face API token (with `inference` permission):'
			);
			if (!token) return;
			hfToken = token;
		}
		(document.activeElement as HTMLElement).blur();
		loading = true;
		streamingMessage = { role: 'assistant', content: '' };
		messages = [...messages, streamingMessage];

		let out = '';  // Declare the 'out' variable

		try {
			const hf = new HfInference(hfToken);

			for await (const chunk of hf.chatCompletionStream({
				model: currentModel,
				messages: [
					systemMessage,
					...messages.map(({ role, content }) => ({ role, content }))
				],
				temperature: 0.1,
				max_tokens: 500,
				seed: 0,
			})) {
				if (chunk.choices && chunk.choices.length > 0) {
					if (streamingMessage && chunk.choices[0]?.delta?.content) {
						out += chunk.choices[0].delta.content;
						streamingMessage.content = out;
						messages = [...messages];
					}
				}
			}
		} catch (error) {
			alert('error: ' + error.message);
		} finally {
			loading = false;
			streamingMessage = null;
		}
	}

	$: console.log(messages);
</script>

<svelte:window on:keydown={onKeydown} />

<div
	class="grid h-dvh max-h-dvh divide-gray-200 overflow-hidden max-md:grid-cols-1 max-md:divide-y md:grid-cols-[260px,1fr,260px] md:divide-x"
>
	<div class="relative flex flex-col overflow-y-auto p-5 pb-24">
		<div class="pb-2 text-sm font-semibold">SYSTEM</div>
		<textarea
			disabled
			name=""
			id=""
			placeholder="Enter a custom prompt"
			bind:value={systemMessage.content}
			class="absolute inset-x-0 bottom-0 h-full resize-none bg-transparent p-2 pl-5 pr-3 pt-12 outline-none"
		></textarea>
	</div>
	<div class="relative divide-y divide-gray-200">
		<div class="flex max-h-[calc(100dvh-5rem)] flex-col divide-y divide-gray-200 overflow-y-auto">
			{#each messages as message, i}
				<PlaygroundMessage {message} on:delete={() => deleteMessage(i)} />
			{/each}

			<button
				class="grid w-full grid-cols-[130px,1fr] items-center py-6 hover:bg-gray-50"
				on:click={addMessage}
			>
				<div class="button !p-0 text-sm font-semibold">Add message</div>
			</button>
		</div>

		<div
			class="inset-x-0 bottom-0 flex h-20 items-center gap-2 overflow-hidden whitespace-nowrap px-5 md:absolute"
		>
			<button
				type="button"
				class="rounded-lg border border-gray-200 bg-white px-5 py-2.5 text-sm font-medium text-gray-900 hover:bg-gray-100 hover:text-blue-700 focus:z-10 focus:outline-none focus:ring-4 focus:ring-gray-100 dark:border-gray-600 dark:bg-gray-800 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white dark:focus:ring-gray-700"
				>Share</button
			>

			<button
				type="button"
				on:click={reset}
				class="rounded-lg border border-gray-200 bg-white px-5 py-2.5 text-sm font-medium text-gray-900 hover:bg-gray-100 hover:text-blue-700 focus:z-10 focus:outline-none focus:ring-4 focus:ring-gray-100 dark:border-gray-600 dark:bg-gray-800 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white dark:focus:ring-gray-700"
				>Reset</button
			>
			<div class="flex-1 items-center justify-center text-center text-sm text-gray-500">
				23 tokens · Latency 750ms
			</div>
			<button
				type="button"
				class="rounded-lg border border-gray-200 bg-white px-5 py-2.5 text-sm font-medium text-gray-900 hover:bg-gray-100 hover:text-blue-700 focus:z-10 focus:outline-none focus:ring-4 focus:ring-gray-100 dark:border-gray-600 dark:bg-gray-800 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white dark:focus:ring-gray-700"
				>View Code</button
			>
			<button
				on:click={submit}
				type="button"
				class="flex h-[42px] w-24 items-center justify-center rounded-lg bg-black px-5 py-2.5 text-sm font-medium text-white hover:bg-gray-900 focus:outline-none focus:ring-4 focus:ring-gray-300 dark:border-gray-700 dark:bg-gray-800 dark:hover:bg-gray-700 dark:focus:ring-gray-700"
			>
				{#if loading}
					<div class="flex flex-none items-center gap-[3px]">
						<div
							class="h-1 w-1 flex-none animate-bounce rounded-full bg-gray-500 dark:bg-gray-400"
							style="animation-delay: 0.25s;"
						/>
						<div
							class="h-1 w-1 flex-none animate-bounce rounded-full bg-gray-500 dark:bg-gray-400"
							style="animation-delay: 0.5s;"
						/>
						<div
							class="h-1 w-1 flex-none animate-bounce rounded-full bg-gray-500 dark:bg-gray-400"
							style="animation-delay: 0.75s;"
						/>
					</div>
				{:else}
					Submit
				{/if}
			</button>
		</div>
	</div>
	<div class="flex flex-col gap-6 overflow-hidden p-5">
		<PlaygroundOptions
			{compatibleModels}
			bind:currentModel
			bind:temperature
			bind:maxTokens
		/>
	</div>
</div>