nit
Browse files
src/lib/components/Playground/Playground.svelte
CHANGED
@@ -19,12 +19,11 @@
|
|
19 |
'google/gemma-1.1-2b-it',
|
20 |
'google/gemma-1.1-7b-it',
|
21 |
'google/gemma-2-27b-it',
|
22 |
-
|
23 |
-
'HuggingFaceH4/starchat2-15b-v0.1',
|
24 |
'HuggingFaceH4/zephyr-7b-beta',
|
25 |
'HuggingFaceH4/zephyr-orpo-141b-A35b-v0.1',
|
26 |
'HuggingFaceM4/idefics-9b-instruct',
|
27 |
-
|
28 |
'meta-llama/Llama-2-13b-chat-hf',
|
29 |
'meta-llama/Llama-2-70b-chat-hf',
|
30 |
'meta-llama/Llama-2-7b-chat-hf',
|
@@ -38,7 +37,6 @@
|
|
38 |
'tiiuae/falcon-7b-instruct'
|
39 |
];
|
40 |
|
41 |
-
$: console.log($currentModel);
|
42 |
const startMessages: Message[] = [{ role: 'user', content: '' }];
|
43 |
|
44 |
const messagesParam = queryParam('messages', {
|
@@ -186,7 +184,7 @@
|
|
186 |
id=""
|
187 |
placeholder="Enter a custom prompt"
|
188 |
bind:value={$systemMessageParam}
|
189 |
-
class="absolute inset-x-0 bottom-0 h-full resize-none bg-transparent p-2 pl-5 pr-3 pt-16 outline-none"
|
190 |
></textarea>
|
191 |
</div>
|
192 |
<div class="relative divide-y divide-gray-200 dark:divide-gray-800">
|
|
|
19 |
'google/gemma-1.1-2b-it',
|
20 |
'google/gemma-1.1-7b-it',
|
21 |
'google/gemma-2-27b-it',
|
22 |
+
|
|
|
23 |
'HuggingFaceH4/zephyr-7b-beta',
|
24 |
'HuggingFaceH4/zephyr-orpo-141b-A35b-v0.1',
|
25 |
'HuggingFaceM4/idefics-9b-instruct',
|
26 |
+
|
27 |
'meta-llama/Llama-2-13b-chat-hf',
|
28 |
'meta-llama/Llama-2-70b-chat-hf',
|
29 |
'meta-llama/Llama-2-7b-chat-hf',
|
|
|
37 |
'tiiuae/falcon-7b-instruct'
|
38 |
];
|
39 |
|
|
|
40 |
const startMessages: Message[] = [{ role: 'user', content: '' }];
|
41 |
|
42 |
const messagesParam = queryParam('messages', {
|
|
|
184 |
id=""
|
185 |
placeholder="Enter a custom prompt"
|
186 |
bind:value={$systemMessageParam}
|
187 |
+
class="absolute inset-x-0 bottom-0 h-full resize-none bg-transparent p-2 pl-5 pr-3 pt-16 text-sm outline-none"
|
188 |
></textarea>
|
189 |
</div>
|
190 |
<div class="relative divide-y divide-gray-200 dark:divide-gray-800">
|