Spaces:
Running
Running
File size: 12,230 Bytes
39eb06d e1cf22b 39eb06d f144646 411fba2 0a37ac6 bdc9315 afbd503 d516464 afbd503 d516464 4d03e1f afbd503 d516464 afbd503 4d03e1f afbd503 d516464 afbd503 d516464 afbd503 d516464 afbd503 bdc9315 afbd503 fb2b35f ca30ab1 0a37ac6 5640214 39eb06d e1cf22b f144646 a8fc54a e77d876 2634b02 e1cf22b a8fc54a 39eb06d 5640214 39eb06d 5640214 39eb06d 5640214 39eb06d f144646 39eb06d a8fc54a 2634b02 229803c a8fc54a bddbba8 0a37ac6 a367e47 5640214 a367e47 5640214 a367e47 5640214 a367e47 5640214 3d1ee75 a367e47 191f5be e77d876 a367e47 5640214 a367e47 5640214 a367e47 229803c a367e47 0a37ac6 5640214 3d1ee75 a367e47 e77d876 a8fc54a e77d876 2634b02 e77d876 3d1ee75 a8fc54a 39eb06d 0a37ac6 3d1ee75 39eb06d f144646 967ff1b f144646 39eb06d 411fba2 39eb06d 9041b84 39eb06d 5640214 33e8922 39eb06d 9c0f4e3 19027cc b813be2 19027cc e1cf22b 4451458 e1cf22b 5640214 e1cf22b ed2f767 39eb06d 0a37ac6 39eb06d 0a37ac6 c077f8a 39eb06d 9885691 39eb06d e1cf22b 0a37ac6 bdc9315 39eb06d 967ff1b 39eb06d 0a37ac6 39eb06d a8fc54a 5640214 a8fc54a 39eb06d 411fba2 1d3bdab 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 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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 |
<script lang="ts">
import { HfInference } from '@huggingface/inference';
import PlaygroundCode from './PlaygroundCode.svelte';
import PlaygroundMessage from '$lib/components/Playground/PlaygroundMessage.svelte';
import PlaygroundOptions from '$lib/components/Playground/PlaygroundOptions.svelte';
import PlaygroundTokenModal from './PlaygroundTokenModal.svelte';
import PlaygroundModelSelector from './PlaygroundModelSelector.svelte';
const compatibleModels: string[] = [
'01-ai/Yi-1.5-34B-Chat',
'codellama/CodeLlama-34b-Instruct-hf',
'CohereForAI/c4ai-command-r-plus',
'google/gemma-1.1-2b-it',
'google/gemma-1.1-7b-it',
'google/gemma-2-27b-it',
'HuggingFaceH4/zephyr-7b-beta',
'HuggingFaceH4/zephyr-orpo-141b-A35b-v0.1',
'HuggingFaceM4/idefics-9b-instruct',
'meta-llama/Llama-2-13b-chat-hf',
'meta-llama/Llama-2-70b-chat-hf',
'meta-llama/Llama-2-7b-chat-hf',
'meta-llama/Meta-Llama-3-70B-Instruct',
'meta-llama/Meta-Llama-3-8B-Instruct',
'microsoft/Phi-3-mini-4k-instruct',
'mistralai/Mistral-7B-Instruct-v0.1',
'mistralai/Mistral-7B-Instruct-v0.2',
'mistralai/Mistral-7B-Instruct-v0.3',
'mistralai/Mixtral-8x7B-Instruct-v0.1',
'tiiuae/falcon-7b-instruct'
];
const startMessages: Message[] = [{ role: 'user', content: '' }];
let systemMessage: Message = { role: 'system', content: '' };
let messages = startMessages;
let currentModel = compatibleModels[0];
let temperature = 0.5;
let maxTokens = 2048;
let streaming = true;
let jsonMode = false;
let hfToken: string | null = '';
let viewCode = false;
let showTokenModal = false;
let loading = false;
let streamingMessage: Message | null = null;
let latency = 0;
let messageContainer: HTMLDivElement | 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];
systemMessage.content = '';
}
async function submit() {
if (!hfToken) {
showTokenModal = true;
return;
}
(document.activeElement as HTMLElement).blur();
loading = true;
const startTime = performance.now();
try {
const hf = new HfInference(hfToken);
const requestMessages: Message[] = [
...(systemMessage.content.length ? [systemMessage] : []),
...messages
];
if (streaming) {
streamingMessage = { role: 'assistant', content: '' };
messages = [...messages, streamingMessage];
let out = '';
for await (const chunk of hf.chatCompletionStream({
model: currentModel,
messages: requestMessages,
temperature: temperature,
max_tokens: maxTokens,
json_mode: jsonMode
})) {
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];
scrollToBottom();
}
}
}
} else {
const response = await hf.chatCompletion({
model: currentModel,
messages: requestMessages,
temperature: temperature,
max_tokens: maxTokens,
json_mode: jsonMode
});
if (response.choices && response.choices.length > 0) {
console.log(response.choice);
const newMessage: Message = response.choices[0].message;
messages = [...messages, newMessage];
scrollToBottom();
}
}
} catch (error) {
alert('error: ' + error.message);
} finally {
const endTime = performance.now();
latency = Math.round(endTime - startTime);
loading = false;
streamingMessage = null;
scrollToBottom();
}
}
function onKeydown(event: KeyboardEvent) {
if ((event.ctrlKey || event.metaKey) && event.key === 'Enter') {
submit();
}
}
function scrollToBottom() {
if (messageContainer) {
messageContainer.scrollTop = messageContainer.scrollHeight;
}
}
</script>
<svelte:window on:keydown={onKeydown} />
{#if showTokenModal}
<PlaygroundTokenModal
on:close={() => (showTokenModal = false)}
on:submit={(e) => {
const formData = new FormData(e.target);
hfToken = formData.get('hf-token');
submit();
showTokenModal = false;
}}
/>
{/if}
<div
class="w-dvh maxdivide-gray-200 grid overflow-hidden max-md:grid-cols-1 max-md:divide-y md:h-dvh md:grid-cols-[260px,minmax(0,1fr),270px] md:divide-x dark:divide-gray-800 dark:bg-gray-900 dark:text-gray-300"
>
<div class="relative flex flex-col overflow-y-auto px-5 pb-24 pt-7">
<div class="pb-2 text-sm font-semibold">SYSTEM</div>
<textarea
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 px-5 pr-4 pt-14 text-sm outline-none"
></textarea>
</div>
<div class="relative divide-y divide-gray-200 dark:divide-gray-800">
<div
class="@container flex max-h-[calc(100dvh-5rem)] flex-col divide-y divide-gray-200 overflow-y-auto overflow-x-hidden dark:divide-gray-800"
bind:this={messageContainer}
>
{#if !viewCode}
{#each messages as message, i}
<PlaygroundMessage {message} on:delete={() => deleteMessage(i)} />
{/each}
<button
class="flex px-6 py-6 hover:bg-gray-50 dark:hover:bg-gray-800/50"
on:click={addMessage}
>
<div class="flex items-center gap-2 !p-0 text-sm font-semibold">
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 32 32"
class="text-lg"
><path
fill="currentColor"
d="M16 2A14.172 14.172 0 0 0 2 16a14.172 14.172 0 0 0 14 14a14.172 14.172 0 0 0 14-14A14.172 14.172 0 0 0 16 2Zm8 15h-7v7h-2v-7H8v-2h7V8h2v7h7Z"
/><path fill="none" d="M24 17h-7v7h-2v-7H8v-2h7V8h2v7h7v2z" /></svg
>Add message
</div>
</button>
{:else}
<PlaygroundCode model={currentModel} {streaming} {temperature} {maxTokens} />
{/if}
</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="flex h-[39px] flex-none gap-2 rounded-lg border border-gray-200 bg-white px-3 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"
>
<div
class="flex size-5 items-center justify-center rounded border border-black/5 bg-black/5 text-xs"
>
<svg
width="1em"
height="1em"
viewBox="0 0 24 25"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M5.41 9.41L4 8L12 0L20 8L18.59 9.41L13 3.83L13 17.5H11L11 3.83L5.41 9.41ZM22 17.5V23H2V17.5H0V23C0 23.5304 0.210714 24.0391 0.585786 24.4142C0.960859 24.7893 1.46957 25 2 25H22C22.5304 25 23.0391 24.7893 23.4142 24.4142C23.7893 24.0391 24 23.5304 24 23V17.5H22Z"
fill="currentColor"
/>
</svg>
</div>
Share</button
>
<button
type="button"
on:click={reset}
class="flex size-[39px] flex-none items-center justify-center rounded-lg border border-gray-200 bg-white 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"
><svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"
><path fill="currentColor" d="M12 12h2v12h-2zm6 0h2v12h-2z" /><path
fill="currentColor"
d="M4 6v2h2v20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8h2V6zm4 22V8h16v20zm4-26h8v2h-8z"
/></svg
></button
>
<div class="flex-1 items-center justify-center text-center text-sm text-gray-500">
<span class="max-xl:hidden">0 tokens · Latency {latency}ms</span>
</div>
<button
type="button"
on:click={() => (viewCode = !viewCode)}
class="flex h-[39px] items-center gap-2 rounded-lg border border-gray-200 bg-white px-3 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"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
class="text-base"
viewBox="0 0 32 32"
><path
fill="currentColor"
d="m31 16l-7 7l-1.41-1.41L28.17 16l-5.58-5.59L24 9l7 7zM1 16l7-7l1.41 1.41L3.83 16l5.58 5.59L8 23l-7-7zm11.42 9.484L17.64 6l1.932.517L14.352 26z"
/></svg
>
{!viewCode ? 'View Code' : 'Hide Code'}</button
>
<button
on:click={() => {
viewCode = false;
submit();
}}
type="button"
class="flex h-[39px] w-24 items-center justify-center gap-2 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 disabled:opacity-50 dark:border-gray-700 dark:bg-blue-600 dark:hover:bg-blue-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}
Run <span
class="inline-flex gap-0.5 rounded border border-white/20 bg-white/10 px-0.5 text-xs text-white/70"
>⌘<span class="translate-y-px">↵</span></span
>
{/if}
</button>
</div>
</div>
<div class="flex flex-col gap-6 overflow-y-hidden p-5">
<PlaygroundModelSelector {compatibleModels} bind:currentModel />
<PlaygroundOptions bind:temperature bind:maxTokens bind:jsonMode bind:streaming />
<div
class="mt-auto flex max-w-xs flex-col items-start gap-2.5 rounded-lg border bg-white p-4 text-gray-500 shadow dark:border-gray-800 dark:bg-gray-800/50 dark:text-gray-400"
role="alert"
>
<span class="text-sm font-semibold text-gray-900 dark:text-white">Get more usage</span>
<div class="text-sm font-normal">Larger models, x10 quota, and advanced features.</div>
<a
href="#"
class="inline-flex rounded-lg bg-black px-2.5 py-1.5 text-center text-xs font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-4 focus:ring-blue-300 dark:hover:bg-black dark:focus:ring-blue-800"
>Get PRO ($9/month)</a
>
</div>
<!-- <div
class="flex max-w-xs flex-col items-start gap-2.5 rounded-lg border bg-white p-4 text-gray-500 shadow dark:bg-gray-800 dark:text-gray-400"
role="alert"
>
<span class="text-sm font-semibold text-gray-900 dark:text-white">Deploy dedicated</span>
<div class="text-sm font-normal">Deploy your own production ready endpoint</div>
<a
href="#"
class="inline-flex rounded-lg bg-black px-2.5 py-1.5 text-center text-xs font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-4 focus:ring-blue-300 dark:hover:bg-black dark:focus:ring-blue-800"
>Deploy dedicated</a
>
</div> -->
<div>
<div class="mb-3 flex items-center justify-between gap-2">
<label for="default-range" class="block text-sm font-medium text-gray-900 dark:text-white"
>API Quota</label
>
<span
class="rounded bg-gray-100 px-1.5 py-0.5 text-xs font-medium text-gray-800 dark:bg-gray-700 dark:text-gray-300"
>Free</span
>
<div class="ml-auto w-12 text-right text-sm">76%</div>
</div>
<div class="h-2 w-full rounded-full bg-gray-200 dark:bg-gray-700">
<div class="h-2 rounded-full bg-black dark:bg-gray-400" style="width: 75%"></div>
</div>
</div>
</div>
</div>
|