more models
Browse files
src/lib/components/Playground/Playground.svelte
CHANGED
@@ -13,11 +13,34 @@
|
|
13 |
};
|
14 |
|
15 |
const compatibleModels: string[] = [
|
|
|
16 |
'google/gemma-2-27b-it',
|
17 |
-
'
|
18 |
'meta-llama/Meta-Llama-3-70B-Instruct',
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
];
|
|
|
21 |
$: console.log($currentModel);
|
22 |
const startMessages: Message[] = [{ role: 'user', content: '' }];
|
23 |
|
@@ -166,7 +189,7 @@
|
|
166 |
id=""
|
167 |
placeholder="Enter a custom prompt"
|
168 |
bind:value={$systemMessageParam}
|
169 |
-
class="absolute inset-x-0 bottom-0 h-full resize-none bg-transparent p-2 pl-5 pr-3 pt-
|
170 |
></textarea>
|
171 |
</div>
|
172 |
<div class="relative divide-y divide-gray-200 dark:divide-gray-800">
|
|
|
13 |
};
|
14 |
|
15 |
const compatibleModels: string[] = [
|
16 |
+
'CohereForAI/c4ai-command-r-plus',
|
17 |
'google/gemma-2-27b-it',
|
18 |
+
'HuggingFaceH4/zephyr-orpo-141b-A35b-v0.1',
|
19 |
'meta-llama/Meta-Llama-3-70B-Instruct',
|
20 |
+
|
21 |
+
'01-ai/Yi-1.5-34B-Chat',
|
22 |
+
'codellama/CodeLlama-34b-Instruct-hf',
|
23 |
+
'google/gemma-1.1-7b-it',
|
24 |
+
'HuggingFaceH4/starchat2-15b-v0.1',
|
25 |
+
'HuggingFaceH4/zephyr-7b-beta',
|
26 |
+
'mistralai/Mistral-7B-Instruct-v0.2',
|
27 |
+
'mistralai/Mistral-7B-Instruct-v0.3',
|
28 |
+
|
29 |
+
'HuggingFaceM4/idefics2-8b-chatty',
|
30 |
+
'HuggingFaceH4/starchat-beta',
|
31 |
+
'HuggingFaceM4/idefics-9b-instruct',
|
32 |
+
'meta-llama/Llama-2-13b-chat-hf',
|
33 |
+
'meta-llama/Llama-2-70b-chat-hf',
|
34 |
+
'meta-llama/Meta-Llama-3-8B-Instruct',
|
35 |
+
'mistralai/Mistral-7B-Instruct-v0.1',
|
36 |
+
'mistralai/Mixtral-8x7B-Instruct-v0.1',
|
37 |
+
|
38 |
+
'google/gemma-1.1-2b-it',
|
39 |
+
'meta-llama/Llama-2-7b-chat-hf',
|
40 |
+
'microsoft/Phi-3-mini-4k-instruct',
|
41 |
+
'tiiuae/falcon-7b-instruct'
|
42 |
];
|
43 |
+
|
44 |
$: console.log($currentModel);
|
45 |
const startMessages: Message[] = [{ role: 'user', content: '' }];
|
46 |
|
|
|
189 |
id=""
|
190 |
placeholder="Enter a custom prompt"
|
191 |
bind:value={$systemMessageParam}
|
192 |
+
class="absolute inset-x-0 bottom-0 h-full resize-none bg-transparent p-2 pl-5 pr-3 pt-16 outline-none"
|
193 |
></textarea>
|
194 |
</div>
|
195 |
<div class="relative divide-y divide-gray-200 dark:divide-gray-800">
|